@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@300;400&display=swap');

* {
  font-family: 'Libre Baskerville', serif;
  font-weight: 300;
}

/* Global Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Georgia', serif;
  background-color: #fffbf5;
  color: #333;
  line-height: 1.5;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 15px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-size: 25px;
  font-weight: 600;
  color: #9F2B3F;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #9F2B3F;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav ul li {
  margin-left: 10px;
}

nav ul li a {
  text-decoration: none;
  color: #9F2B3F;
  font-weight: 500;
  font-size: 13px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #7a0033;
}

/* .create-invitation-text {
  color: navy;   
  font-size: 14px;  
  vertical-align: middle;
} */

.create-invitation-text {
  color: navy;
  margin-left: 0;   /* remove the gap */
  margin-right: 8px;  /* optional smaller spacing */
}

.sign-in-btn {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #9F2B3F;
  border-radius: 4px;
  /* color: #9F2B3F; */
  color: #fff;
  background: #9F2B3F;
  font-size: 15px; 
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  vertical-align: middle;
  line-height: normal;
  margin-top: 2.1px;
}

.sign-in-btn:hover {
  background-color: #f9e6ea;
  color: #7d1f30;
}

.sign-in-btn:active {
  background-color: #eed1d7;
  transform: scale(0.98);
}

/* Hero Banner */
.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(3rem, 7vw, 5rem);
  color: #9c243c;
  font-size: 5rem;
  margin-bottom: 300px;
}

.subtext {
  font-size: 1.1rem;
  margin-top: 6px;
  margin-bottom: 40px;
  color: #9F2B3F;
  font-family: 'Georgia', serif;
}

/* Slides */
.slide-2,
.slide-3,
.slide-4,
.slide-5,
.slide-6 {
  background-color: transparent;
  font-size: 18px;
  color: #9F2B3F;
  font-family: 'Georgia', serif;
}

.info-slider-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-image: url('IMG_0373.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  padding-top: 20px;
}

.info-slider-wrapper {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100vw;
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.info-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.info-slide {
  min-width: 100vw;
  height: 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  text-align: center;
}

.info-slide h1 {
  font-size: 16px;
  line-height: 1.6;
  max-width: 900px;
  margin: 40px auto 0 auto;
  color: #687d1e;
}

/* Nudge animation */
@keyframes nudge {
  0% { transform: translateX(0); }
  25% { transform: translateX(-15px); }
  50% { transform: translateX(15px); }
  75% { transform: translateX(-8px); }
  100% { transform: translateX(0); }
}

.slide-2.nudging {
  animation: nudge 1.6s ease-in-out;
}

/* Dots */
.dots-container {
  position: absolute;
  bottom: 170px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #dfb9bb;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.dot.active {
  background-color: #9F2B3F;
}

/* Video Section */
.video-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fffbf5;
}

.video-section h2 {
  font-size: 2.5rem;
  color: #9F2B3F;
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
}

.videos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.video-wrapper {
  width: 100%;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.video-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Drive Video Section */
.drive-video-section {
  padding: 60px 20px;
  background-color: #fffbf5;
  text-align: center;
}

.drive-heading {
  font-size: 2.5rem;
  color: #9F2B3F;
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
}

.drive-box {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.drive-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.drive-wrapper::-webkit-scrollbar {
  display: none;
}

.drive-slide {
  min-width: 100%;
  display: flex;
  gap: 20px;
  padding: 20px;
  scroll-snap-align: start;
  justify-content: center;
  flex-wrap: wrap;
}

.video-card {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.video-title {
  padding: 15px;
  font-size: 1.1rem;
  color: #9F2B3F;
  margin: 0;
  text-align: center;
  font-family: 'Georgia', serif;
}

.drive-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.drive-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(159, 43, 63, 0.3);
  cursor: pointer;
  transition: background-color 0.3s;
}

.drive-dot.active {
  background-color: #9F2B3F;
}

/* Features Section */
.features-section {
  padding: 60px 20px;
  background-color: #fffbf5;
  text-align: center;
}

.features-section h2 {
  font-size: 2.5rem;
  color: #9F2B3F;
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
}

.features-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.1rem;
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  font-family: 'Georgia', serif;
}

.features-list li:nth-child(1) { animation-delay: 0.4s; }
.features-list li:nth-child(2) { animation-delay: 0.6s; }
.features-list li:nth-child(3) { animation-delay: 0.8s; }
.features-list li:nth-child(4) { animation-delay: 1s; }
.features-list li:nth-child(5) { animation-delay: 1.2s; }
.features-list li:nth-child(6) { animation-delay: 1.4s; }
.features-list li:nth-child(7) { animation-delay: 1.6s; }
.features-list li:nth-child(8) { animation-delay: 1.8s; }
.features-list li:nth-child(9) { animation-delay: 2.0s; }
.features-list li:nth-child(10) { animation-delay: 2.2s; }
.features-list li:nth-child(11) { animation-delay: 2.4s; }
.features-list li:nth-child(12) { animation-delay: 2.6s; }
.features-list li:nth-child(13) { animation-delay: 2.8s; }
.features-list li:nth-child(14) { animation-delay: 3.0s; }
.features-list li:nth-child(15) { animation-delay: 3.2s; }

.features-list li::before {
  content: "★";
  color: #9F2B3F;
  font-weight: bold;
  margin-right: 10px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Final CTA */
.final-cta {
  padding: 60px 20px;
  text-align: center;
  background-color: #9F2B3F;
  color: white;
}

/* FAQ Section */
.faq-section {
  background-color: #fffbf5;
  padding: 30px 15px;
  font-family: 'Georgia', serif;
  color: #9F2B3F;
  margin-top: -35px;
}

.faq-section h2 {
  font-size: 35px;
  color: #9F2B3F;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;

  /* Fade-in animation */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(179, 0, 59, 0.2);
  padding: 15px 0;
  transition: all 0.3s ease;

  /* Fade-in animation */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

/* Animate each item with increasing delay */
.faq-item:nth-child(1) { animation-delay: 0.3s; }
.faq-item:nth-child(2) { animation-delay: 0.5s; }
.faq-item:nth-child(3) { animation-delay: 0.7s; }
.faq-item:nth-child(4) { animation-delay: 0.9s; }
.faq-item:nth-child(5) { animation-delay: 1.1s; }
.faq-item:nth-child(6) { animation-delay: 1.3s; }
.faq-item:nth-child(7) { animation-delay: 1.5s; }
.faq-item:nth-child(8) { animation-delay: 1.7s; }
.faq-item:nth-child(9) { animation-delay: 1.9s; }
.faq-item:nth-child(10) { animation-delay: 2.1s; }
.faq-item:nth-child(11) { animation-delay: 2.3s; }
.faq-item:nth-child(12) { animation-delay: 2.5s; }
.faq-item:nth-child(13) { animation-delay: 2.7s; }
.faq-item:nth-child(14) { animation-delay: 2.9s; }
.faq-item:nth-child(15) { animation-delay: 3.1s; }
.faq-item:nth-child(16) { animation-delay: 3.3s; }
.faq-item:nth-child(17) { animation-delay: 3.5s; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 19px;
  padding: 0;
  text-align: left;
  color: #000000;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-icon {
  font-size: 24px;
  font-weight: bold;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding-top: 10px;
  color: #000000;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Styles */
.custom-footer {
  position: relative;
  overflow: hidden;
  background-color: #fdf9f3;
  color: #B35464;
  padding: 40px 20px 30px;
  font-family: "Libre Baskerville", serif;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.footer-columns-tight {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
}

.footer-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-column a,
.footer-column strong {
  font-size: 14px;
  color: #B35464;
  text-decoration: none;
  line-height: 1.4;
}

.footer-column a:hover {
  text-decoration: underline;
}

.social-icon {
  width: 24px;
  height: 24px;
}

.footer-download {
  margin-top: 0; /* remove unnecessary top margin */
  text-align: center;
  margin-bottom: 20px; /* give space below it instead */
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 0; /* optional */
}

.download-title {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.download-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.store-badge {
  height: 100px;
  width: auto;
  margin: 0 6px;
}

.footer-copy {
  font-size: 12px;
  margin-top: 15px;
  text-align: center;
}

.bottom-img {
  position: relative;
  width: 60px;
}

.img-0328 {
  float: left;
}

.img-0338 {
  display: block;
  margin: 10px auto;
}

.img-0335 {
  float: right;
}


/* Facebook and X - scale down slightly */
.social-icon[alt="Facebook"],
.social-icon[alt="X (Twitter)"] {
  width: 30px;
  height: 30px;
}

/* Instagram and YouTube - scale up slightly */
.social-icon[alt="Instagram"]{
  width: 40px;
  height: 40px;
}

.social-icon[alt="YouTube"] {
  width: 50px;
  height: 50px;
}

.social-icon[alt="Threads"] {
  width: 35px;
  height: 35px;
}

.icon-wrapper {
  display: flex;
  align-items: center;     /* vertically center the icon */
  justify-content: center; /* horizontally center the icon (optional) */
  height: 50px;            /* set to match the tallest icon */
}

.social-icon:hover {
  transform: scale(1.1);
}


.container {
  max-width: 900px;
  margin: 60px auto; 
  padding: 0 20px; 
  font-size: 16px;
  line-height: 1.7;
}



.hero-fixed-text {
  position: absolute;
  top: 21%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  color: white;
  font-family: 'Georgia', serif;
  padding: 10px 20px;
}

.hero-fixed-text .hero-title {
  font-size: 4.2rem;
  margin: 0; 
}

.hero-fixed-text .tagline {
  font-size: 1.1rem;
  margin: 4px 0 0 0;
  color: #748128;
  font-family: 'Georgia', serif;
}

.policy-page .container {
  font-size: 16px;
  padding: 0 20px;
  line-height: 1.6;
}

.desktop-right-img,
.desktop-left-img {
  position: absolute;
  height: auto;
  z-index: 30;
  display: none;
  pointer-events: none;
}

/* Desktop only */
@media (min-width: 769px) {
  .desktop-right-img {
    display: block;
    right: -10px;
    top: 115%; /* 👈 adjust as needed */
    transform: translateY(-50%);
    width: 250px;
  }

  .desktop-left-img {
    display: block;
    left: 0;
    top: 65%; /* 👈 staggered lower than the right one */
    transform: translateY(-50%);
    width: 600px;
  }
}


/* ===== MOBILE RESPONSIVENESS ===== */

@media (max-width: 480px) {
  .footer-columns-tight {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .footer-column {
    width: 100%;
    gap: 4px;
    margin-bottom: 0;
  }

  .footer-middle {
  margin-bottom: 15px;
}

  .footer-column a,
  .footer-column strong {
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
    padding: 2px 0;
  }

}


/* Mobile Styles */
@media (max-width: 768px) {
  /* Header Mobile */
  .mobile-menu-toggle {
    display: none !important;
  }

  .logo-text {
    font-size: 20px;
  }
  .logo-img {
    height: 30px;
    margin-right: 6px;
  }

  .mobile-lotus {
    position: absolute;
    width: 50px;
    height: 50px;
    background-image: url('IMG_0408.PNG'); /* lotus flower */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    pointer-events: none;
  }

  .lotus-1 {
    top: 80px;
    left: 10px;
  }

  .lotus-2 {
    top: 200px;
    right: 20px;
  }

  .lotus-3 {
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
  }
  nav {
    /* position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    min-height: 100vh;
    z-index: 1000;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease; */
  position: static;            /* no absolute */
  width: auto;                 /* shrink to fit */
  background: none;            /* transparent */
  box-shadow: none;            /* remove shadow */
  min-height: auto;            /* remove fullscreen height */
  opacity: 1;                  /* always visible */
  visibility: visible;         /* always visible */
  transform: none;             /* no slide effect */
  }
  
  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  nav ul {
    display: flex;               /* inline layout */
  justify-content: flex-end;   /* move to right */
  align-items: center;
  flex-direction: row;         /* horizontal instead of column */
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
    /* flex-direction: column;
    padding: 20px; */
  }
  
  nav ul li {
    margin: 0;
    /* margin: 10px 0; */
  }
  
  nav ul li a,.create-invitation-text {
    /* font-size: 16px;
    padding: 10px 0;
    display: block; */
  font-size: 14px;
  padding: 6px 10px;
  display: none;
  }
  
  .sign-in-btn {
  font-size: 14px;
  padding: 6px 12px;
  border: 1px solid #9F2B3F;
  border-radius: 4px;
  color: #fff;
  background: #9F2B3F;
  text-decoration: none;
  margin-left: 10px;
    /* font-size: 16px;
    padding: 8px 14px;
    border: 1px solid #9F2B3F;
    border-radius: 4px;
    color: #9F2B3F;
    text-decoration: none;
    background: none;
    display: inline-block;
    margin: 10px 0 0 0px;
    text-align: left; */
  }

  
  /* Hero Section Mobile */
  .hero-fixed-text {
    top: 15%;
    padding: 10px;
  }
  
  .hero-fixed-text .hero-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .hero-fixed-text .tagline {
    font-size: 0.9rem;
  }
  
  .hero-fixed-text .subtext {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
  
  /* Info Slider Mobile */
  .info-slide {
    padding: 1rem;
  }
  
  .info-slide h1 {
    font-size: 12px;
    max-width: 100%;
    margin: 20px auto 0 auto;
  }
  
  .dots-container {
    bottom: 50px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  }
  
  /* Video Section Mobile */
  .video-section {
    padding: 40px 15px;
  }
  
  .video-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .video-wrapper iframe {
    height: 250px;
  }
  
  /* Drive Video Section Mobile */
  .drive-video-section {
    padding: 40px 15px;
  }
  
  .drive-heading {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .drive-slide {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
  
  .video-card {
    min-width: 100%;
    max-width: 100%;
  }
  
  .video-card iframe {
    height: 180px;
  }
  
  .video-title {
    font-size: 1rem;
    padding: 12px;
  }
}

/* Small Mobile Styles */


/* NEWLY MOVED HERE: Footer for max-width 425px */


.top-left-img {
  position: absolute;
  top: -35px;
  left:-35px;
  width: 500px; /* Adjust as needed */
  height: auto;
  z-index: 50;
  display: none;
  pointer-events: none
}

@media (max-width: 768px) {
  .top-left-img {
    display: block;
  }
}

.top-right-img {
  position: absolute;
  top: 150px;
  right: -10px;
  width: 100px; /* Adjust as needed */
  height: auto;
  z-index: 50;
  display: none;
  pointer-events: none
}

@media (max-width: 768px) {
  .top-right-img {
    display: block;
  }
}

.bottom-right-img {
  position: absolute;
  bottom: -95px;
  right: -40px;
  width: 500px; /* Adjust size */
  height: auto;
  transform: scaleX(-1) scaleY(-1); /* Flip horizontally + upside down */
  z-index: 50;
  display: none;
  pointer-events: none;
}

@media (max-width: 768px) {
  .bottom-right-img {
    display: block;
  }
}

.left-side-img {
  position: absolute;
  top: 550px;
  left: 0;
  transform: translateY(-50%);
  width: 350px; /* Adjust size as needed */
  height: auto;
  z-index: 50;
  display: none;
  pointer-events: none;
}

@media (max-width: 768px) {
  .left-side-img {
    display: block;
  }
}

.bottom-img {
  position: absolute;
  bottom: 0;
  width: 150px;
  height: auto;
  z-index: 40;
  display: block;
  pointer-events: none;
}

@media (min-width: 769px) {
  .bottom-img {
    display: none;
  }
}

/* Mobile only */
@media (max-width: 768px) {

  .img-0328 {
    left: -25px;
    bottom: -80px;
  }

  .img-0338 {
    left: 350px;
    transform: translateX(-50%);
    bottom: -10px;
  }

  .img-0335 {
    right: -45px;
  }
}

.stagger-left-img,
.stagger-right-img {
  position: absolute;
  height: auto;
  z-index: 30;
  display: none;
  pointer-events: none;
}

/* Desktop only */
@media (min-width: 769px) {
  .custom-footer {
    background-image: url('footer.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
  }

  .bottom-img {
    display: none !important; /* Hide decoration images on desktop */
  }
}

@media (min-width: 769px) {
  .stagger-left-img {
    display: block;
    left: -50px;
    top: 55%;
    transform: translateY(-50%);
    width: 400px;
  }

  .stagger-right-img {
    display: block;
    right: -62px;
    top: 100%;
    transform: translateY(-50%);
    width: 350px;
  }
}
