/* ============================================
   Valentine's Getaway — Styles
   ============================================ */

/* --- Custom Properties --- */
:root {
  --primary: #814256;
  --primary-light: #EDE4E5;
  --bg-cream: #FFFEF6;
  --bg-light: #FAF9F5;
  --schedule-card: #9C8088;
  --text-dark: #05111F;
  --text-body: #141413;
  --text-secondary: #476480;
  --testimonial-overlay: rgba(129, 66, 86, 0.77);
  --sold-out: #F64D43;
  --faq-accordion: #D9E9F5;
  --white: #FFFFFF;
  --font-heading: 'Josefin Slab', serif;
  --font-button: 'Josefin Sans', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --radius: 10px;
  --max-width: 1100px;
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.3;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-family: var(--font-button);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: #6d3748;
  text-decoration: none;
  transform: translateY(-1px);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(129, 66, 86, 0.95);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.nav-logo:hover {
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--primary) url('../images/hero-bg.webp') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(129, 66, 86, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
}

.hero-logo {
  max-width: 500px;
  margin: 0 auto 32px;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-date {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 12px;
}

.hero-subtext {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.hero .btn {
  font-size: 18px;
  padding: 14px 40px;
}

.scroll-indicator {
  margin-top: 48px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   INTRO
   ============================================ */
.intro {
  background: var(--primary-light);
  padding: 80px 0;
  text-align: center;
}

.intro-decorative {
  margin-bottom: 24px;
  text-align: center;
}

.experience-img {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.intro-date {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 34px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.intro-divider {
  border: none;
  border-top: 1px solid #c4b4b7;
  max-width: 600px;
  margin: 0 auto 24px;
}

.intro-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ============================================
   YOUR WEEKEND INCLUDES
   ============================================ */
.weekend-includes {
  background: var(--primary);
  padding: 80px 0;
  text-align: center;
}

.weekend-includes .section-heading {
  color: var(--white);
  margin-bottom: 48px;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.includes-card {
  background: var(--primary-light);
  border-radius: 12px;
  padding: 32px 20px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.includes-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
}

.includes-card h4 {
  font-family: var(--font-button);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.45;
  color: var(--primary);
}

/* ============================================
   PHOTO SECTIONS
   ============================================ */
.full-photo {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px;
  overflow: hidden;
}

.full-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 20px;
}

.contained-photo {
  background: var(--bg-light);
  padding: 48px 0;
}

.contained-photo img {
  width: 100%;
  border-radius: var(--radius);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  position: relative;
  padding: 100px 0 60px;
  overflow: hidden;
  background:
    url('../images/session-photo.webp') center/cover no-repeat,
    linear-gradient(135deg, #6b3344 0%, #814256 40%, #9a5a6e 70%, #6b3344 100%);
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(80, 60, 60, 0.4);
}

.testimonials-bg {
  display: none;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonial-slider {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
}

.testimonial-slider .testimonial-card,
.testimonial-slider .testimonial-nav {
  grid-column: 1;
}

.testimonial-card {
  grid-row: 1;
  align-self: center;
  background: rgba(129, 66, 86, 0.75);
  border-radius: 16px;
  padding: 48px 56px 56px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}

.testimonial-card.active {
  visibility: visible;
  opacity: 1;
}

.quote-mark {
  width: 60px;
  height: auto;
  margin: 0 auto 16px;
}

.testimonial-card blockquote {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.7;
  font-style: normal;
  font-weight: 400;
}

.testimonial-nav {
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-arrow {
  background: none;
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.slider-arrow:hover {
  opacity: 1;
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active {
  background: var(--white);
}

/* ============================================
   SCHEDULE
   ============================================ */
.schedule {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 12px;
}

.section-heading--light {
  color: var(--white);
}

.section-subtext {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.schedule-card {
  background: var(--schedule-card);
  border-radius: 20px;
  padding: 32px 32px 40px;
  text-align: left;
}

.schedule-card h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 30px;
  margin-bottom: 24px;
  text-align: center;
}

.schedule-card ul {
  list-style: none;
}

.schedule-card li {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 15px;
}

.schedule-card li:last-child {
  margin-bottom: 0;
}

.schedule-card .event {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
}

.schedule-card .time {
  font-weight: 400;
  font-size: 15px;
}

/* ============================================
   REGISTER CTA
   ============================================ */
.register-cta {
  background: var(--bg-cream);
  padding: 80px 0;
  text-align: center;
}

.register-cta .section-heading {
  margin-bottom: 32px;
}

.event-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  text-align: left;
}

.event-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.badge-earlybird {
  background: var(--primary-light);
  color: var(--primary);
}

.badge-soldout {
  background: var(--sold-out);
  color: var(--white);
}

.event-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.event-card-details {
  margin-bottom: 20px;
}

.event-card-details p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.event-card .btn {
  width: 100%;
  text-align: center;
}


/* ============================================
   LOCATION
   ============================================ */
.location {
  background: var(--primary-light);
  padding: 80px 0;
}

.location .section-heading {
  text-align: center;
  margin-bottom: 48px;
  color: var(--primary);
}

.location-block {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  margin-bottom: 48px;
  border-radius: var(--radius);
  overflow: hidden;
}

.location-block:last-of-type {
  margin-bottom: 0;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.location-info {
  padding: 32px 36px;
  color: rgba(255,255,255,0.95);
  background: rgba(140, 120, 125, 0.65);
}

.location-info h4 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 14px;
}

.location-info p {
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 15px;
}

.location-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.location-buttons .btn {
  font-size: 14px;
  padding: 10px 28px;
  border-radius: 30px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.location-buttons .btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================
   HISTORY
   ============================================ */
.history {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.history-badge {
  margin-bottom: 16px;
}

.since-badge {
  max-width: 200px;
  margin: 0 auto;
}

.history .section-heading {
  margin-bottom: 16px;
}

.history-intro {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.history-quote {
  text-align: left;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-body);
}

.history-quote p {
  margin-bottom: 14px;
}

/* --- Expandable / Read More --- */
.expandable .expandable-content {
  max-height: 120px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
}

.expandable .expandable-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--white));
}

.expandable.expanded .expandable-content {
  max-height: 2000px;
}

.expandable.expanded .expandable-content::after {
  display: none;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  padding: 4px 0;
}

.read-more-btn:hover {
  text-decoration: underline;
}

/* ============================================
   ABOUT L2L
   ============================================ */
.about {
  background: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}

.about-logo-small {
  margin-bottom: 16px;
}

.l2l-badge {
  max-width: 200px;
  margin: 0 auto;
}

.about .section-heading {
  margin-bottom: 24px;
}

.about .expandable-content {
  text-align: left;
  max-width: 740px;
  margin: 0 auto;
}

.about .expandable-content p {
  margin-bottom: 14px;
}

.about .expandable .expandable-content::after {
  background: linear-gradient(transparent, var(--bg-light));
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--primary);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-lead {
  font-family: var(--font-heading);
  font-size: 30px;
  margin-bottom: 16px;
}

.cta-body {
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.92;
  text-wrap: pretty;
}

.cta-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.cta-photos img {
  border-radius: var(--radius);
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ============================================
   FAQs & DETAILS
   ============================================ */
.faqs {
  background: var(--primary-light);
  padding: 80px 0;
}

.faqs .section-heading {
  text-align: center;
  margin-bottom: 32px;
  color: var(--primary);
}

/* Tabs */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.faq-tab {
  padding: 10px 24px;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.2s;
}

.faq-tab:hover {
  border-bottom-color: rgba(129, 66, 86, 0.4);
}

.faq-tab.active {
  background: transparent;
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Panels */
.faq-panel {
  display: none;
}

.faq-panel.active {
  display: block;
}

/* Accordion */
.accordion-item {
  background: var(--faq-accordion);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid rgba(129, 66, 86, 0.15);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
}

.accordion-header::after {
  content: '\2304';
  font-size: 20px;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
}

.accordion-item.open .accordion-header::after {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.accordion-item.open .accordion-body {
  max-height: 1000px;
  padding: 0 24px 20px;
}

.accordion-body p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
}

.accordion-body h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  margin: 14px 0 8px;
  color: var(--text-dark);
}

.accordion-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.accordion-body li {
  font-size: 15px;
  margin-bottom: 6px;
  line-height: 1.5;
}

/* ============================================
   FINAL BANNER
   ============================================ */
.final-banner {
  background: var(--primary);
  padding: 60px 0;
  text-align: center;
}

.final-logo {
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--white);
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.footer-logo:hover {
  text-decoration: none;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--text-body);
}

.footer-contact a {
  color: var(--primary);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 16px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
}

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

  .schedule-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .location-block {
    grid-template-columns: 1fr;
  }

  .location-image img {
    min-height: 240px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav {
    text-align: center;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-photos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(129, 66, 86, 0.97);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-heading {
    font-size: 30px;
  }

  .hero-logo {
    max-width: 300px;
  }

  .intro-date {
    font-size: 26px;
  }

  .section-heading {
    font-size: 28px;
  }

  .includes-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 480px;
    margin: 0 auto;
  }


  .faq-tabs {
    gap: 6px;
  }

  .faq-tab {
    font-size: 13px;
    padding: 8px 16px;
  }

  .schedule-card .time {
    font-size: 14px;
  }

  .schedule-card .event {
    font-size: 15px;
  }

  .testimonial-card {
    padding: 36px 28px 40px;
  }

  .testimonial-card blockquote {
    font-size: 17px;
  }

  .cta-lead {
    font-size: 24px;
  }
}
