* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  background: #f9f7f4;
  color: #222;
}

section {
  padding: 80px 20px;
}

h2 {
  font-family: "Playfair Display";
  font-size: 42px;
  color: #a51c30;
  text-align: center;
  margin-bottom: 12px;
}

p.center {
  text-align: center;
  max-width: 800px;
  margin: auto;
  color: #555;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #a51c30;
  color: #fff;
  padding: 14px 30px;
  display: flex;
  justify-content: space-between;
  z-index: 100;
}

.nav a {
  color: #fff;
  margin-left: 16px;
  text-decoration: none;
  font-weight: 500;
}

/* TAGLINE */
.tagline {
  margin-top: 60px;
  background: #8e1627;
  color: #fff;
  text-align: center;
  padding: 16px;
  font-family: "Playfair Display";
  letter-spacing: 2px;
}

.hero {
  background: url("img/bg.jpg") no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.primary {
  background: #a51c30;
  color: white;
  border: 2px solid #a51c30;
}

.outline {
  background: #f5e6d3;  
  color: #a51c30;
}

/* -- CARD */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1300px;
  margin: 50px auto 0;
}



.card {
  background: #f3f0ec;
  border-radius: 18px;
  padding: 45px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: 0.3s ease;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.card:hover {
  background: #ecdad8;
  transform: translateY(-8px);
}

.card:hover h3,
.card:hover p {
  color: black;
}

.card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: black;
}

.card p {
  font-size: 16px;
  line-height: 1.7;
  color: black;
}

.card-btn {
  margin-top: 20px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  background: #a51c30;
  color: white;
  display: inline-block;
  transition: 0.3s ease;
}

.card:hover .card-btn {
  background: #a51c30;
  color: white;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .grid {
    grid-template-columns: 1fr;
  }
}


/* ===== FOUNDER SECTION ===== */

.founder {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

/* Founder Image */
.founder img {
  width: 100%;
  max-width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: auto;

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.founder img:hover {
  transform: scale(1.05);
}

.founder h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.founder p {
  line-height: 1.6;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .founder {
    text-align: center;
  }
}


/* spotlight */

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 40px auto;
}

.spotlight-card {
  height: 360px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
}

.spotlight-content {
  position: relative;
  color: white;
  padding: 18px;
  text-align: center;
}

.spotlight-label {
  font-size: 10px;
  color: red;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.spotlight-content h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.spotlight-content h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.spotlight-desc {
  font-size: 12px;
  line-height: 1.4;
}

.card1 { background-image: url("img/member1.jpg"); }
.card2 { background-image: url("img/member2.jpg"); }
.card3 { background-image: url("img/member3.jpg"); }
.card4 { background-image: url("img/member4.jpg"); }
.card5 { background-image: url("img/member5.jpg"); }

@media (max-width: 1100px) {
  .spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
}




/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
  text-align: center;
}

.stat {
  font-size: 36px;
  font-weight: 700;
  color: #a51c30;
}

/* FOOTER */
footer {
  background: #e8e0d6;
  padding: 40px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}
