@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --bg: #f4f7fb;
  --navy: #1e2d3a;
  --wine: #7a1f2b;
  --muted: #6b7c8a;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--navy);
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 8%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.logo img {
  height: 34px;
  width: auto;
  display: block;
  transform: scale(1.75);
  transform-origin: center;
}

.navbar nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.navbar nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  transition: 0.3s ease;
}

.navbar nav a:not(.nav-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: var(--wine);
  transition: 0.3s ease;
}

.navbar nav a:not(.nav-btn):hover::after {
  width: 100%;
}

.nav-btn {
  padding: 9px 20px;
  border-radius: 30px;
  background: var(--wine);
  color: white !important;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.hero {
  padding: 120px 8% 80px;
  text-align: center;
  background: linear-gradient(rgba(20,30,45,0.6), rgba(20,30,45,0.6)), url("../images/hero_pic.jpg");
  background-size: cover;
  background-position: bottom;
  color: white;
}

.tag {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
  opacity: 0.8;
}

.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  margin-bottom: 10px;
}

.sub-title {
  font-size: 1rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.subtitle {
  max-width: 540px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
}

.counter-box {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 60px 8%;
  background: #f7fafc;
}

.counter-card {
  background: #ffffff;
  padding: 24px 40px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #7a1f2b;
}

.counter-label {
  margin-top: 6px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7c8a;
}

.about-content {
  padding: 60px 0;
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

.light-section {
  background-color: #f4f5f7;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 25px;
  color: #1f2933;
}

.about-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #4a5568;
  margin-bottom: 20px;
  max-width: 750px;
}

.why-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 35px 30px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #7b1e26;
}

.card p {
  font-size: 15.5px;
  color: #555;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.team-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 35px;
}

.team-card {
  background: white;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #1f2933;
}

.team-card p {
  font-size: 14px;
  color: #7b1e26;
  font-weight: 500;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.founders-wrapper {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.founder {
  display: flex;
  align-items: center;
  gap: 40px;
}

.founder.reverse {
  flex-direction: row-reverse;
}

.founder-img img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.founder-info {
  max-width: 320px;
}

.founder-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 8px;
  color: #1f2933;
}

.founder-info .role {
  color: #7b1e26;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.founder-info p {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5568;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.sessions-section {
  padding: 60px 0;
}

.sessions-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 25px;
  color: #1f2933;
}

.sessions-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.session-feature {
  background: white;
  padding: 35px 30px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.session-feature h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--wine);
}

.session-feature p {
  font-size: 15.5px;
  color: #555;
}

.session-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.sessions-wrapper {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.session {
  display: flex;
  align-items: center;
  gap: 50px;
}

.session.reverse {
  flex-direction: row-reverse;
}

.session-img img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.session-info {
  max-width: 520px;
}

.session-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin-bottom: 10px;
  color: #1f2933;
}

.session-info .session-meta {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 10px;
}

.session-info p {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5568;
}

.cta {
  font-family: 'Playfair Display', serif;
  text-align: center;
  padding: 80px 20px;
  color: black;
}

.cta-btn {
  padding: 10px 20px;
  border-radius: 30px;
  background: var(--wine);
  color: white !important;
  font-weight: 500;
  transition: 0.3s ease;
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
}

.contact-card h3 {
  margin-bottom: 8px;
  color: var(--wine);
}

.contact-form-card {
  margin-top: 40px;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--wine);
}

.contact-form button {
  width: fit-content;
  padding: 12px 26px;
  border: none;
  border-radius: 30px;
  background: var(--wine);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.updates {
  padding: 70px 8%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: linear-gradient(to bottom, #f4f7fb, #ffffff);
}

.updates-heading {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 20px;
  color: var(--navy);
  position: relative;
}

.update-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 30px;
  border-radius: 18px;
  background: white;
  border-left: 6px solid var(--wine);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.update-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.update-card.highlight {
  background: linear-gradient(135deg, #7a1f2b, #a8323e);
  color: white;
  border-left: none;
}

.update-card.highlight .update-text {
  color: white;
}

.update-content {
  flex: 1;
}

.update-text {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: #1e2d3a;
}

.update-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .update-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .update-img {
    width: 100%;
    height: 200px;
  }
}
@media (max-width: 900px) {
  .main-title {
    font-size: 3rem;
  }

  .counter-box {
    flex-direction: column;
    gap: 40px;
  }

  .counter-card:first-child {
    border-right: none;
    padding-right: 0;
  }

  .founder,
  .founder.reverse {
    flex-direction: column;
    text-align: center;
  }

  .founder-img img {
    width: 250px;
    height: 300px;
  }
}