/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #ffffff;
  color: #333;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout Helpers */
.section {
  padding: 60px 20px;
}

.section.light {
  background-color: #f9f9f9;
}

.section.dark {
  background-color: #f0f0f0;
}

.section-content {
  max-width: 1100px;
  margin: 0 auto;
}

.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Hero */
.hero {
  background: url("images/Website-v2-backgrounds.jpg") center/cover no-repeat;
  height: 100vh;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero {
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 12px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 16px;
}

.hero-message {
  border-top: 6px solid #087f5b;
  background-color: #ffffff;
  padding: 10px 20px 30px; /* top reduced from 40px to 10px */
  margin-top: 0;
}

.hero-subheading {
  font-size: 1.2rem;
  font-weight: 500;
  color: #f2f2f2;
  margin-bottom: 12px;
}

.launch-date {
  font-size: 24px;
  font-weight: 600;
}

/* Navigation */
/* .main-nav {
  background: #ffffff;
  border-top: 3px solid #087f5b;
  border-bottom: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 10;
} */

.main-nav {
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 16px 0;
  margin: 0;
}

.main-nav a {
  text-decoration: none;
  color: #087f5b;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #044d3a;
  text-decoration: underline;
}

/* Typography */
h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #444;
}

p {
  margin-bottom: 16px;
}

ul li {
  margin-bottom: 8px;
}

/* Buttons */
.cta-button {
  background-color: #087f5b;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
}

.cta-button:hover {
  background-color: #066649;
}

/* Countdown */
.countdown-timer {
  font-family: monospace;
  font-size: 20px;
  margin-top: 10px;
  color: #ffe082;
}

/* Social Icons */
.icon-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.icon-row img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 0.2s ease-in-out;
}

.icon-row img:hover {
  transform: scale(1.3);
}

.common-handle {
  text-align: center;
  margin-top: 16px;
  font-weight: 500;
}

/* Footer */
.site-footer {
  background-color: #fafafa;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  color: #888;
  border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-2-cols {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p,
  .launch-date {
    font-size: 18px;
  }

  .cta-button {
    width: 100%;
    padding: 12px;
  }
}

.countdown-timer {
  transition: opacity 0.3s ease;
  opacity: 1;
}

.countdown-timer.fade-out {
  opacity: 0;
}

.unsplash-image img {
  width: 100%;
  max-width: 960px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* .hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #ffffff 100%);
  pointer-events: none;
  z-index: 1;
} */

.tagline {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0b4909;
  margin-bottom: 12px;
  text-align: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  max-width: 800px;
}

.feature-list li {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #2b2b2b;
  padding: 4px 0;
}

.feature-list .emoji {
  font-size: 1.4rem;
}

/* .feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  list-style: none;
}

.feature-list li {
  font-size: 17px;
  font-weight: 500;
  color: #2e2e2e;
  background: #f3f3f3;
  border-radius: 20px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.emoji {
  font-size: 18px;
} */
/* .feature-list li:hover {
  transform: translateY(-2px);
  background-color: #eafff6;
  color: #087f5b;
} */

.text {
  font-size: 16px;
  font-weight: 500;
}

.video-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 24px;
  justify-items: center;
}

.video-grid-2col a {
  display: block;
  transition: transform 0.2s ease;
}

.video-grid-2col img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.video-grid-2col a:hover {
  transform: translateY(-4px);
}

/* Responsive fallback for mobile */
@media (max-width: 768px) {
  .video-grid-2col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .logo-col,
  .text-col,
  .legal-col {
    align-items: center;
  }

  .legal-col {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .grid-2-cols {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .feature-list {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .hero {
    padding: 20px;
    text-align: center;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .cta-button {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .countdown-timer {
    font-size: 1.2rem;
  }

  .hero-subheading {
    font-size: 1.1rem;
  }
}

.youtube-logo {
  height: 28px;
  vertical-align: text-bottom;
  margin-left: 10px;
}

#waitlist {
  background: linear-gradient(to right, #e7f5f2, #ffffff);
  padding: 60px 20px;
}

#waitlist .section-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

#waitlist h2 {
  font-size: 32px;
  color: #064f3c;
  margin-bottom: 16px;
}

.cta-button {
  background-color: #087f5b;
  color: white;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.cta-button:hover {
  background-color: #066649;
  transform: translateY(-2px);
}

.waitlist-note {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
  font-style: italic;
}

.footer {
  background: linear-gradient(
    to right,
    #0d0b1f,
    #221b86
  ); /* dark indigo/blue */
  color: #ffffff;
  padding: 30px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 1200px;
  align-items: center;
  gap: 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.logo-col {
  justify-content: center;
  align-items: flex-start;
}

.footer-logo {
  height: 150px;
  width: auto;
}

.text-col {
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
}

.legal-col {
  text-align: right;
  font-size: 13px;
  line-height: 1.5;
}

/* Optional: Mobile responsiveness */
