body {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  background: #0b0f17;
  color: #ffffff;
}

/* HEADER */
.about-header {
  height: 320px;
  background: url('../images/Fribourg_by_night,_a_Timeless_Story.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.header-content {
  position: relative;
  text-align: center;
}

.header-content h1 {
  font-size: 42px;
  margin: 0;
}

.header-content p {
  opacity: 0.8;
  margin-top: 10px;
}

/* CONTAINER */
.about-container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* CARDS */
.card {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 14px;
  margin-bottom: 25px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.card h2 {
  margin-top: 0;
  color: #ffffff;
}

.card p {
  opacity: 0.85;
  line-height: 1.6;
}

.card-red {
  background: rgb(220, 38, 38);
  padding: 30px;
  border-radius: 14px;
  margin-bottom: 25px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.card-red h2 {
  margin-top: 0;
  color: #ffffff;
}

.card-red p {
  opacity: 0.85;
  line-height: 1.6;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.info-box {
  background: rgba(255,255,255,0.04);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.3s;
}

.info-box:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}

.info-box h3 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.info-box p {
  font-size: 14.5px;
  opacity: 0.8;
}

/* TEAM PILL */
.pill-row {
  margin-top: 20px;
}

.pill-row span {
  display: inline-block;
  margin: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  font-size: 13px;
}

/* CTA */
.contact-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 50px 30px;
    border-radius: 18px;
    text-align: center;
    margin-top: 60px;
    color: #fff;
}

.contact-intro {
    margin-bottom: 25px;
    font-size: 15.5px;
    opacity: 0.8;
}

/* INFO BLOCK */
.contact-info {
    max-width: 400px;
    margin: 0 auto 25px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    background: rgba(0, 0, 0, 0.25);
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item span {
    display: block;
    font-size: 12px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

/* BUTTONS */
.contact-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-btn.secondary {
    background: #dc2626;
    color: white;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s;
}

.cta-btn.secondary:hover {
    opacity: 0.85;
}

/* smoother typography */
p {
  font-size: 15.5px;
}

/* stronger card hover feel */
.card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
}

/* FOUNDER SECTION */
.founder-section {
  margin-bottom: 50px;
}

.founder-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* PHOTO */
.founder-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.1);
}

/* INFO */
.founder-info {
  flex: 1;
  min-width: 260px;
}

/* HEADER (logo + name) */
.founder-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.founder-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  padding: 10px;
  background: #dc2626;
  border-radius: 50px;
}

.founder-header h2 {
  margin: 0;
}

/* ROLE */
.founder-role {
  opacity: 0.7;
  margin-bottom: 10px;
}