@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Kannada:wght@400;500;600;700&display=swap');

:root {
  --cream: #F7F2EA;
  --sage: #EAF1EE;
  --teal: #1F5A55;
  --teal-dark: #174944;
  --gold: #C49A5A;
  --charcoal: #2B2B2B;
  --white: #FFFDF9;
  --muted: #666666;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans Kannada", sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

/* HERO */

#hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 70px 0;
  background: var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--teal);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.18;
  font-weight: 700;
  max-width: 760px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 30px;
  color: #454545;
}

.primary-button {
  display: inline-block;
  background: var(--teal);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 26px;
  border-radius: 12px;
  transition: 0.2s ease;
  box-shadow: 0 8px 22px rgba(31, 90, 85, 0.16);
}

.primary-button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.registration-note {
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal);
}

.date-note {
  margin-top: 7px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* HERO IMAGE */

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  background: var(--sage);
  border: 1px solid rgba(31, 90, 85, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--teal);
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

/* MOBILE */

@media (max-width: 820px) {

  #hero {
    min-height: auto;
    padding: 48px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1.04rem;
  }

  .primary-button {
    width: 100%;
    text-align: center;
  }

  .hero-image {
    order: 2;
  }

  .image-placeholder {
    max-width: 360px;
  }
}
/* TRUST STRIP */

#trust-strip {
  background: var(--sage);
  padding: 28px 0;
  border-top: 1px solid rgba(31, 90, 85, 0.08);
  border-bottom: 1px solid rgba(31, 90, 85, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  text-align: center;
  padding: 8px 22px;
  border-right: 1px solid rgba(31, 90, 85, 0.14);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item strong {
  display: block;
  color: var(--teal);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.trust-item span {
  display: block;
  color: #555;
  font-size: 0.82rem;
  line-height: 1.5;
}

/* TRUST STRIP - MOBILE */

@media (max-width: 820px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  .trust-item {
    border-right: none;
    padding: 6px 14px;
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid rgba(31, 90, 85, 0.14);
  }
}
/* PROBLEM AWARENESS SECTION */

#problem-section {
  background: var(--white);
  padding: 90px 0;
}

.problem-wrap {
  max-width: 1000px;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-kicker {
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.3;
  font-weight: 700;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.problem-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(31, 90, 85, 0.08);
}

.check-mark {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.problem-item p {
  font-size: 0.98rem;
  line-height: 1.75;
}

.problem-closing {
  margin-top: 32px;
  background: var(--sage);
  border-left: 4px solid var(--teal);
  padding: 22px 24px;
  border-radius: 12px;
}

.problem-closing p {
  font-size: 0.98rem;
  line-height: 1.8;
}

/* MOBILE */

@media (max-width: 820px) {
  #problem-section {
    padding: 65px 0;
  }

  .section-heading {
    text-align: left;
    margin-bottom: 34px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }
    .problem-item {
    padding: 18px;
  }
}
/* WELCOME VIDEO SECTION */

#welcome-video {
  background: var(--sage);
  padding: 90px 0;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.video-placeholder {
  min-height: 360px;
  border-radius: 22px;
  background: var(--teal);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(31, 90, 85, 0.16);
}

.play-button {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  padding-left: 4px;
}

.video-placeholder p {
  font-size: 0.95rem;
  font-weight: 600;
}

.video-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.35;
  margin-bottom: 24px;
}

.video-copy > p:not(.section-kicker) {
  font-size: 1rem;
  line-height: 1.85;
  color: #454545;
  margin-bottom: 18px;
}

/* MOBILE */

@media (max-width: 820px) {
  #welcome-video {
    padding: 65px 0;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .video-placeholder {
    min-height: 240px;
  }
}

@media (max-width: 820px) {
  .video-copy h2 {
    font-size: 1.85rem;
    line-height: 1.4;
  }
}
