/*
==================================================
1. BASE & VARIABLES
==================================================
*/

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

html {
  scroll-behavior: smooth;
}

:root {
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;

  /* Updated Travel Studio Palette */
  --accent-surface: #1A1A1A; /* Darker surface for cards */
  --bg-main: #0D0D0D;        /* Deepest black for main background */
  --studio-dark: #1A1A1A;    
  --studio-deep: #050505;    /* Pitch black for depth */
  --gold: #C6A25E;           
  --text-main: #F2F2F2;      /* Light gray/off-white for high legibility */
  --cream-bg: #F8F4EE;       /* Keep as a light accent color for specific elements */

  /* ===== Utility Shades ===== */
  --color-shadow: rgba(27, 58, 54, 0.15); /* soft green shadow for depth */
  --transition-speed: 0.3s;
}

.section-accent {
  background: linear-gradient(to right, #1a1a1a, #0d0d0d);
}

.section {
  padding: 60px 20px;
  text-align: center;
  background-color: inherit;
}

.main-content {
  background-color: var(--bg-main);
}

.section-divider {
  height: 1px;
  background: rgba(184, 138, 68, 0.2);
  margin: 40px 0;
}

html, body {
  background-color: var(--bg-main);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  max-width: 100%;
  line-height: 1.6;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

header, .navbar {
  background-color: var(--studio-dark);
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.2;
}

p, li, a, button, input, textarea {
  font-family: var(--font-body);
}

.section h2 {
  color: var(--gold);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2rem;
}

/* ===== UNIVERSAL TILE STYLE (matches Why Choose Us hover) ===== */
.tile {
  background: var(--studio-dark);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 5px solid transparent;
}

.tile:hover {
  transform: translateY(-5px);
  background-color: #252525 !important;
  border-bottom: 5px solid var(--gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/*
==================================================
2. BUTTONS
==================================================
*/
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--cream-bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background: var(--studio-deep);
  color: var(--cream-bg);
  transform: translateY(-2px);
}

/* Secondary Button (Ghost Style) */
.btn-secondary {
  background: var(--gold) !important;
  color: var(--cream-bg) !important;
  border: none !important;
  padding: 12px 28px;
}

.btn-secondary:hover {
  background: var(--studio-dark) !important;
  color: var(--cream-bg) !important;
  transform: translateY(-2px);
}

/* Form-specific button (uses same base style) */
.img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*
==================================================
3. NAVIGATION
==================================================
*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--studio-deep) !important;
  border-bottom: 1px solid rgba(198, 162, 94, 0.3);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-img,
.logo img {
  width: 160px;
  height: auto;
  display: block;
  background: transparent;
  padding: 0;
  margin-left: 0;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  color: white;
}

.nav-links li a {
  text-decoration: none;
  color: var(--gold);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: white;
}

/* Hamburger hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: var(--text-main);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animate in X when active */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }


  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--studio-dark) !important;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 1rem;
    min-width: 200px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 9999;
  }

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


/*
==================================================
4. HERO SECTIONS (Page & Slideshow)
==================================================
*/
.page-hero {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important; 
  background-position: center center !important;
  background-repeat: no-repeat !important;
  
  color: var(--text-main);
  background-color: var(--bg-main); /* Fallback color */
  text-align: center;
  overflow: hidden;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.75));
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.page-hero h1 {
  color: var(--cream-bg);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-hero p {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--cream-bg);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .page-hero {
    height: 60vh;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
  .page-hero p {
    font-size: 1.5rem;
  }
}

/* Variants */
.page-hero.signature-escapes-hero {background-image: url('../core/images/hero/ready-hero.webp');}
.page-hero.signature-escapes-hero .hero-overlay {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.8));
}
.page-hero.about {background-image: url('../core/images/hero/about-hero.webp');}
.page-hero.contact {background-image: url('../core/images/hero/contact-hero.webp');}
.page-hero.blog {background-image: url('../core/images/hero/blog-hero.webp');}
.page-hero.legal {background-image: url('../core/images/hero/legal-hero.webp');}
.page-hero.privacy_policy {background-image: url('../core/images/hero/privacy-policy-hero.webp');}
.page-hero.cookies-policy {background-image: url('../core/images/hero/cookies-hero.webp');}
.page-hero.booking-policy {background-image: url('../core/images/hero/booking-policy-hero.webp');}
.page-hero.terms_conditions {background-image: url('../core/images/hero/terms-conditions-hero.webp');}
.page-hero.accessibility-hero {background-image: url('../core/images/hero/accessibility-hero.webp');}

@media (max-width: 768px) {
  .page-hero, .slideshow {
    height: 60vh; /* Unified height */
  }
  .page-hero h1, .slide .hero-content h1 {
    font-size: 2rem;
  }
  .page-hero p {
    font-size: 1.5rem;
  }
  .slide .hero-content p {
    font-size: 1rem;
  }
}

/*
==================================================
5. CONTENT SECTIONS (Value Prop, Process, Offerings, etc.)
==================================================
*/
.value-prop {
  padding: 60px 20px;
  text-align: center;
  background: var(--bg-main);
}

.value-prop h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 25px;
}

.value-prop h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
}

.value-prop p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--text-main);
  line-height: 1.7;
  font-size: 1.1rem;
}

.value-prop ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.value-prop ul li {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.6;
  padding-left: 25px;
  position: relative;
}

.value-prop ul li::before {
  content: "•";
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* ===== OUR PROCESS SECTION STYLES ===== */
.our-process {
  background: var(--cream-bg);
  padding: 80px 20px;
  text-align: center;
  font-family: var(--font-sans);
}

.our-process h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.our-process h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 10px auto 50px;
  border-radius: 2px;
}

.process-steps-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.process-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  background: var(--studio-dark) !important;
  border: 1px solid rgba(198, 162, 94, 0.3) !important;
  border-radius: 12px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* subtle gold outline and shadow when active or hovered */
.process-step:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(196, 155, 99, 0.15);
  transform: translateY(-4px);
}

.step-icon-box {
  width: 90px;
  height: 90px;
  background: transparent !important;
  border: 2px solid var(--gold) !important;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  transition: 0.3s ease;
}

.step-icon-box i {
  font-size: 2rem;
  color: var(--gold) !important;
}

.process-step h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--gold) !important;
}

.process-step h3 .step-number {
  color: var(--gold);
  margin-right: 6px;
  font-weight: 700;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--text-main) !important;
  line-height: 1.5;
  max-width: 250px;
  margin: 0 auto;
}

.step-arrow {
  font-size: 1.8rem;
  color: var(--gold);
  align-self: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .process-steps-grid {
    flex-direction: column;
    gap: 50px;
  }

  .step-arrow {
    display: none;
  }

  .process-step:nth-child(3) {
    background: #fff;
    box-shadow: none;
  }
}

/* Offerings */
.offerings-grid, .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 30px;
}

.offerings-card.tile{
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 30px;
  text-align: center;
  background: var(--studio-dark) !important;
  border-radius: 12px;
  border-top: 1px solid rgba(198, 162, 94, 0.2);
}

.offerings-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offerings-card.tile p {
  color: var(--text-main) !important;
  margin-bottom: 25px;
  line-height: 1.6;
}

.offerings-card h3 {
  color: var(--text-main) !important; 
  font-family: var(--font-heading);
  margin-top: 10px;
}

.offerings-preview {
  text-align: center;
}

.offerings-icon {
  font-size: 3rem;
  color: var(--gold) !important;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.offerings-card, .service-card {
  background: #fff;
  gap: 30px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 3px solid var(--gold);
  text-align: center;
}

.services {
  padding: 80px 20px;
  background: var(--bg-main);
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.services .intro {
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--text-main);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--studio-dark);
  padding: 30px;
  border-radius: 12px;
  border-top: 1px solid rgba(198, 162, 94, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Why Choose Us / Pillars */
.why-choose-us {
  background-color: var(--bg-main);
  padding: 80px 20px;
}

.why-choose-us h2 {
  color: var(--text-main);
  margin-bottom: 40px;
  text-align: center;
}

.pillars-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  text-align: center;
}

.pillar {
  background: var(--studio-dark);
  padding: 30px 20px;
  border-radius: 12px;
  border-top: 1px solid rgba(198, 162, 94, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
}

.pillar:hover {
  transform: translateY(-5px);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Style the specific pillar titles */
.pillar-title {
  color: var(--gold) !important;
  font-weight: bold;
  display: block; /* Puts the description on a new line for better flow */
  margin-bottom: 5px;
}

/* Fix visibility for the "Why Our Journeys" section */
.why-different {
  background: var(--bg-main) !important;
  color: var(--text-main) !important; /* Soft white, not blinding */
}

.why-different ul li {
  margin-bottom: 25px;
  list-style: none; /* Optional: cleaner look */
}

/* Fix Headings (The "Too Dark" text) */
.why-different h2, 
.why-different h3 {
  color: var(--gold) !important; /* Makes titles pop in gold */
  margin-bottom: 20px;
}

/* Fix Body Text (The "Too Light/Invisible" text) */
.why-different p, 
.why-different li {
  color: var(--text-main) !important; /* Brings the invisible gray back to a readable soft white */
  line-height: 1.7;
  opacity: 0.9;
}

/* Highlighted Bold Text */
.why-different strong {
  color: #ffffff !important; /* Pure white only for emphasis */
  font-weight: 600;
}

/* ----- GOOGLE REVIEWS SECTION ----- */

.google-reviews {
  padding: 80px 20px;
  background: var(--cream-bg);
  text-align: center;
}

.google-reviews .container {
  max-width: 1200px;
  margin: 0 auto;
}

.google-reviews-widget-container {
  padding: 20px 0;
  max-width: 900px;
  margin: 40px auto;
}

.google-reviews .section-title {
  margin-bottom: 20px;
}

.google-reviews .google-link {
  margin-top: 20px;
}

/* Inspiration Section */
.inspiration {
  padding: 4rem 2rem;
  background: var(--bg-main);
  text-align: center;
}

.inspiration h2 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.inspiration .intro {
  color: var(--text-main);
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--text-main);
}

.inspiration-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  align-items: stretch;
}


.inspiration-card {
  background: var(--studio-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.inspiration-card:hover {
  transform: translateY(-5px);
}

.inspiration-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  display: block;
}

.inspiration-card h3 {
  margin: 1rem 0;
  font-size: 1.2rem;
  color: var(--text-main);
}

.testimonial {
  background: var(--cream-bg);
  border-left: 4px solid var(--gold);
  margin: 20px auto;
  padding: 20px;
  max-width: 600px;
  font-style: italic;
}

.final-cta {
  background: linear-gradient(to right, var(--studio-deep), var(--studio-dark));
  color: var(--text-main);
  text-align: center;
  padding: 80px 20px;
}

.final-cta h2 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
  padding: 4rem 2rem;
  background: var(--bg-main);
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  padding: 0.5rem 0;
  color: var(--text-main);
}

.faq-answer {
  display: none;
  overflow: hidden;
  text-align: left;
  transition: max-height 0.3s ease;
}

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

/* Category headings inside FAQ */
.faq-category {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--gold); /* Accent underline */
  color: var(--gold); /* Accent text color */
  font-weight: 600;
}

.team {
  padding: 4rem 2rem;
  background: var(--cream-bg);
  text-align: center;
}



.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: var(--studio-dark);
  padding: 2rem;
  border-radius: 12px;
  border-top: 1px solid rgba(198, 162, 94, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
}

.role {
  font-weight: 600;
  color: var(--text-main);
  margin: 0.3rem 0;
}

.bio {
  font-size: 0.9rem;
  color: var(--text-main) !important;
}

/* Story Section */
.story {
  padding: 4rem 2rem;
  background: var(--bg-main);
  text-align: center;
}

.story h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.story p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-main);
  line-height: 1.7;
}

/* Values Section */
.values {
  padding: 4rem 2rem;
  background: var(--cream-bg);
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--studio-dark);
  padding: 2rem;
  border-radius: 12px;
  border-top: 1px solid rgba(198, 162, 94, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.value-card h3 {
  margin-bottom: 0.5rem;
  color: var(--gold);
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 2rem;
  background: var(--bg-main);
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--studio-dark);
  padding: 2rem;
  border-radius: 12px;
  border-top: 1px solid rgba(198, 162, 94, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-style: italic;
  color: var(--text-main);
}

.testimonial-card h4 {
  margin-top: 1rem;
  font-style: normal;
  color: var(--text-main);
}

/* Stats Section */
.stats {
  padding: 3rem 2rem;
  background: var(--gold);
  color: #fff;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat h3 {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

/* CTA Section */
.cta {
  padding: 4rem 2rem;
  background: var(--cream-bg);
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

/*
==================================================
6. CONTACT PAGE
==================================================
*/
.contact {
  padding: 80px 20px;
  background-color: var(--cream-bg);
}

.contact h2,
.hero-content h1 {
  color: var(--cream-bg);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.contact-form-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li{
  margin-bottom: 10px;
  color: #BBB !important;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.group-size-dropdown {
  padding: 12px;
  background-color: #222;
  border: 1px solid #444;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: white;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  background-color: #2a2a2a;
  outline: none;
  box-shadow: 0 0 5px var(--studio-deep)
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%; 
  box-sizing: border-box; 
  padding: 12px 15px; 
  
  border: 1px solid #ccc;
  margin-bottom: 15px; 
  border-radius: 4px;
}
/* ===== HOME SLIDESHOW (Unified Hero Style) ===== */
.slideshow {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.slide .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-cta-group .btn-secondary {
  background: transparent;
  border: 2px solid var(--cream-bg);
  color: var(--cream-bg);
}

.hero-cta-group .btn-secondary:hover {
  background: var(--cream-bg);
  color: var(--bg-main);
}

@media (max-width: 768px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 0 20px;
  }

  .hero-cta-group .btn,
  .hero-cta-group .btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

.slide .hero-content h1 {
  color: var(--cream-bg);
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.slide .hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  color: var(--cream-bg);
}

@media (max-width: 768px) {
  .slide .hero-content h1 {
    font-size: 2rem;
  }
  .slide .hero-content p {
    font-size: 1rem;
  }
}

/*
==================================================
6. Signature Escapes Page Styles
==================================================
*/
/* Grid Layout */
.escapes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
  text-align: left;
}

@media (min-width: 768px) {
  .escapes-grid {
    gap: 40px; /* Restore larger gap for tablet/desktop */
  }
}

/* Individual Trip Card Styling */
.escape-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border-radius: 12px;
  background: #fff;
  height: 100%;
}

.escape-card .trip-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid var(--gold);
}

.escape-card .card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.escape-card h3 {
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 5px;
  color: var(--text-main);
}

.destination-detail {
  font-size: 0.95rem;
  color: #BBB !important;
  margin-bottom: 15px;
  font-weight: 500;
}

.trip-info {
  border-top: 1px solid var(--bg-main);
  padding-top: 15px;
  margin-bottom: 20px;
}

.starting-price {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
}

.starting-price strong {
  font-weight: 900;
  color: var(--text-main);
}

.price-group-note {
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 2px;
  margin-bottom: 8px;
  font-style: italic;
}


  font-weight: 500;
  margin-top: 5px;
}

/* Reassurance micro-copy under Book Now */
.trip-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trip-actions-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.booking-reassurance {
  font-size: 0.75rem;
  color: #aaa;
  text-align: center;
  margin-top: 4px;
}

/* Inclusions list on trip cards */
.inclusions-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  font-size: 0.85rem;
}

.inclusions-list li {
  padding: 3px 0;
  padding-left: 1.4em;
  position: relative;
}

.inclusions-list li.included::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6dbf7e;
  font-weight: 700;
}

.inclusions-list li.excluded::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #aaa;
}

.inclusions-list li.excluded {
  color: #aaa;
}

/* Flights note — intro explanation box */
.flights-note {
  display: block;
  margin-top: 1.2rem;
  padding: 12px 16px;
  background: rgba(198, 162, 94, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.6;
}

.flights-note i {
  color: var(--gold);
  margin-right: 6px;
}

.flights-why {
  font-size: 0.75rem;
  color: #888;
  font-style: italic;
  margin-left: 4px;
}

/* Form Styles */
.group-select-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed var(--gold);
}

.group-select-form .btn {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 14px 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.group-select-form .btn:not(.btn-secondary):hover {
  background: var(--studio-dark);
}

.group-size-dropdown {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 2px solid var(--studio-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--studio-dark);
  background-color: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B3A36' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
  transition: border-color 0.3s ease;
}

.group-size-dropdown:focus {
  outline: none;
  border-color: var(--gold);
}

/*
==================================================
7. BLOG LIST
==================================================
*/
.blog-list {
  padding: 80px 20px;
  background: var(--cream-bg);
  text-align: center;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid Layout for Article Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

/* Individual Blog Card */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.blog-image-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-bottom: 1px solid #eee;
}

.blog-card .card-content {
  padding: 20px;
}

.blog-category {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.blog-card h3 a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 10px;
}

.blog-card h3 a:hover {
  color: var(--studio-deep);
}

.blog-card p {
  color: var(--text-main) !important;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 15px 0;
}

.blog-meta {
  display: block;
  font-size: 0.9rem;
  color: #888;
}

/* ===== PAGINATION STYLES ===== */

/* ===== PAGINATION STYLES ===== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  flex-wrap: wrap;
}

/* Target ANY button inside the pagination div */
.pagination .btn, 
.pagination .btn-secondary, 
.pagination a {
  display: inline-block;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease !important;
  border: none;
  
  /* 1 & 2: Default State - Gold Background, Cream Text */
  background: var(--gold) !important;
  color: var(--cream-bg) !important;
}

/* 3 & 4: Hover State - Deep Green Background, Text remains Cream */
.pagination .btn:hover,
.pagination .btn-secondary:hover,
.pagination a:hover {
  background: var(--studio-deep) !important; 
  color: var(--cream-bg) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--color-shadow);
}

/* Current Page State (Active) */
.pagination .current-page {
  background: var(--studio-deep) !important;
  color: var(--cream-bg) !important;
  cursor: default;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

@media (max-width: 480px) {
  .pagination .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/*
==================================================
9. FOOTER & NEWSLETTER
==================================================
*/
.subscribe-action {
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 10px;
  align-items: stretch;
}

.subscribe-form {
  max-width: 500px;
  margin: 0 auto;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px;
  font-size: 1rem;
  height: 54px;
  box-sizing: border-box;
}

.subscribe-button {
  background-color: var(--gold);
  color: white;
  padding: 0 30px;
  border: none;
  border-radius: 0 6px 6px 0;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  height: 54px;
  box-sizing: border-box;
}

.subscribe-button:hover {
  background: var(--studio-deep);
  color: var(--cream-bg);
}

.consent-text {
  font-size: 0.85rem;
  color: #8A7A57;
  margin-top: 1rem;
  line-height: 1.5;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 20px;}

.social-icons {
  flex-direction: row;
  gap: 15px;
}

.social-icon {
  color: #4a574e;
  border: 1px solid #4a574e;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #a9874d;
  color: #fff;
  border-color: #a9874d;
}

.consent-text a {
  color: #C6A25E;
  text-decoration: underline;
}

.consent-text a:hover {
  color: #064D3B;
}

.brand-logo-small {
  max-height: 50px;
  width: auto;
}

.brand-tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream-bg);
  margin: 0;
}

/* ----- FOOTER GENERAL STYLES ---*/
footer {
  background-color: var(--studio-deep);
  color: var(--cream-bg);
  padding: 40px 0 20px;
  text-align: center;
  position: relative;
}

/* Fix for the gradient line */
footer::before {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-bottom: 25px;
}

.footer-links-list {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Global Legibility Fix for Footer Links */
footer a, 
.footer-links-list a {
  color: var(--gold) !important; 
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover, 
.footer-links-list a:hover {
  color: #fff !important;
  text-decoration: underline;
}

.newsletter-cta {
  background: var(--studio-deep);
  padding: 60px 20px;
  text-align: center;
  border-top: 4px solid var(--gold);
}

.main-footer-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-heading {
  color: var(--gold) !important;
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-family: var(--font-heading);
  text-transform: capitalize;
}

.footer-text {
  color: var(--cream-bg);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.footer-links a {
  color: var(--color-cream-bg);
  text-decoration: none;
  margin: 0 8px;
  font-size: 0.95rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  color: #C6A25E;
  text-decoration: underline;
}

.footer-bottom-info {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links-list a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.footer-links-list a:hover {
  color: #a9874d;
  text-decoration: underline;
}

.footer-brand-info,
.social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 20px 0;
}

.footer-brand-info {
  flex-direction: column;
}

.brand-logo-footer {
  width: 100px;
  height: auto;
  filter: brightness(200%);
  margin-bottom: 5px;
}

.brand-tagline-footer {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--cream-bg);
  opacity: 0.8;
  margin: 0;
}

.footer-links a {
  color: var(--cream-bg);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.subscribe-toast {
  background: var(--gold);
  color: #1a1a1a;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  margin: 16px auto 0;
  max-width: 500px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.footer-copyright {
  font-size: 0.75rem;
  opacity: 0.7;
  color: rgba(248, 244, 238, 0.7);
  margin-top: 15px;
  letter-spacing: 0.3px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .subscribe-form {
    flex-direction: column;
    align-items: center;
  }

  .subscribe-form input[type="email"] {
    width: 90%;
    max-width: none;
  }

  .subscribe-form .btn-cta {
    transition: all 0.3s ease;
    width: 90%;
  }

  .subscribe-action {
    flex-direction: column;
    align-items: stretch;
    max-width: 90%;
    margin: 0 auto 15px;
  }

  .subscribe-form input[type="email"] {
    border-radius: 6px;
    width: 100%;
  }

  .subscribe-button {
    border-radius: 6px;
    width: 100%;
    margin-top: 10px;
    height: 54px;
  }
  
  .footer-links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .footer-brand-info,
  .footer-links {
    align-items: center;
    text-align: center;
    padding: 0;
  }
}

/* ===== RESPONSIVE DESIGN (TABLET & MOBILE) ===== */
@media (max-width: 768px) {
  .slideshow {
    height: 350px;
    padding: 20px;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-cta {
    padding: 40px 10px;
  }
}

/* ===== LEGAL AND POLICY PAGES STYLES ===== */
.page-hero.policy-hero {
  height: 40vh;
}

.page-hero.policy-hero h1 {
  font-size: 2.5rem;
}

.page-hero.policy-hero p {
  font-size: 1.1rem;
}

.policy-list {
  padding: 60px 20px;
  background: var(--cream-bg);
  text-align: left;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.7;
}

.policy-container h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

.policy-container h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 30px;
  margin-bottom: 10px;
}

.policy-container ul, .policy-container ol {
  margin: 15px 0 25px 20px;
  padding-left: 0;
}

.policy-container li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.policy-container p {
  margin-bottom: 20px;
}

.policy-container a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.policy-container a:hover {
  color: var(--studio-deep);
}

@media (max-width: 768px) {
  .page-hero.policy-hero {
    height: 30vh;
  }
  .policy-container {
    font-size: 1rem;
    line-height: 1.6;
  }
  .policy-container h1{
    font-size: 2rem;
  }
}

/* ====== BACK TO TOP BUTTON ====== */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background-color: var(--gold);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  
  /* Initial hidden state */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
}

/* This class is toggled by your Section 8 JavaScript */
#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background-color: var(--studio-dark);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  #backToTop {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    padding: 10px;
  }
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 20px 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

/* Modal Content Box */
.modal-content {
  background-color: var(--studio-dark);
  color: var(--text-main) !important;
  border: 1px solid var(--gold) !important;
  border-radius: 12px;
  padding: 40px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin: 0;
  max-height: 90vh;
  overflow-y: auto;
}

#modalTitle {
  color: var(--gold, #c29b61);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 10px;
}

#modalBody ul {
  list-style: none;
  padding: 0;
}

#modalBody li {
  padding: 12px 0;
  font-size: 1.1rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 12px 0;
}

#modalBody li::before {
  content: "✦";
  color: var(--gold, #c29b61);
  margin-right: 15px;
  font-size: 0.9rem;
}

.modal-content ul {
  list-style: none;
  padding: 0;
}

.modal-content li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.modal-disclaimer {
  font-size: 0.75rem;
  color: var(--text-main) !important;
  font-style: italic;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

.payment-modal-content {
  background-color: var(--studio-dark) !important;
  color: var(--cream-bg);
  max-width: 600px;
  border: 1px solid var(--gold);
  text-align: center;
  padding: 40px;
}

.payment-modal-content h2 {
  color: var(--gold);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.payment-options-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

@media (max-width: 600px) {
  .payment-options-container { grid-template-columns: 1fr;}
}

.payment-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(198, 162, 94, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.payment-card.highlight {
  border-color: var(--gold);
  background: rgba(198, 162, 94, 0.1);
}

.payment-card h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.payment-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

.payment-note {
  display: block;
  width: 80%;
  margin: 20px auto 0;
  opacity: 0.7;  
  font-style: italic;
  text-align: center;
}

.payment-cta {
  font-size: 0.85rem !important;
  padding: 10px !important;
}

/* Add a gold checkmark/bullet */
.modal-content list-style::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: var(--gold);
  line-height: 1;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #ffffff !important;
  transform: scale(1.1);
}
@media (max-width: 480px) {
  .escape-card .card-content {
    padding: 15px;
  }

  .group-select-form .btn {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .escape-card h3 {
    font-size: 1.4rem;
  }
}

/* Status Ribbons & Labels */
.trip-status-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  border-radius: 4px;
}

/* Specific Status Styles */
.status-vaulted {
  background: var(--cream-bg);
  color: var(--studio-dark);
  border: 1px solid var(--studio-dark);
}
.status-hibernation {
  background: var(--cream-bg);
  color: var(--studio-dark);
  border: 1px solid var(--studio-dark);
}
.status-curation {
  background: var(--gold);
  color: white;
}

/* Message Box inside the Card */
.status-notice-box {
  margin: 15px 0;
  padding: 15px;
  border-left: 3px solid var(--gold);
  background: rgba(198, 162, 94, 0.05);
  font-size: 0.9rem;
  line-height: 1.5;
}

.status-notice-box strong {
  display: block;
  color: var(--studio-dark);
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* Grayscale effect for Sold Out items to make them look like "The Archive" */
.trip-card.vaulted .trip-image-wrapper {
  filter: grayscale(100%);
  opacity: 0.8;
}

/* Container for the images */
.mini-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.mini-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.mini-gallery-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 10px;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

/* Hide scrollbar for Chrome for a cleaner look */
.mini-gallery-slider::-webkit-scrollbar {
  height: 6px;
}

.mini-gallery-slider::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

/* Individual slide */
.slider-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.slider-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.availability-note {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.85;
  margin-top: 4px;
  margin-bottom: 0;
}

/* Add onhold to the greyscale rules */
.escape-card[data-status="soldout"] .trip-image,
.escape-card[data-status="seasonal"] .trip-image,
.escape-card[data-status="onhold"] .trip-image {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.escape-card[data-status="soldout"],
.escape-card[data-status="seasonal"],
.escape-card[data-status="onhold"] {
  opacity: 0.85;
}

.escape-card[data-status="onhold"]:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid transparent;
}

/* ===== TRIP STATUS STATES ===== */

/* Base badge style — MISSING from your current CSS */
.status-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* Individual badge variants */
.status-badge.soldout {
  background: var(--cream-bg);
  color: var(--studio-dark);
  border: 1px solid var(--studio-dark);
}

.status-badge.seasonal {
  background: var(--cream-bg);
  color: var(--gold);
  border: 1px solid var(--gold);
}

.status-badge.onhold {
  background: var(--cream-bg);
  color: var(--studio-dark);
  border: 1px solid var(--studio-dark);
}

/* Disable hover lift on ALL unavailable cards */
.escape-card[data-status="soldout"]:hover,
.escape-card[data-status="seasonal"]:hover,
.escape-card[data-status="onhold"]:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid transparent;
}

/* Waitlist button */
.waitlist-btn {
  width: 100%;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.waitlist-btn:hover {
  background: var(--gold);
  color: var(--cream-bg);
}

/* Update section backgrounds that were previously cream */ 
.our-process, 
.services, 
.google-reviews, 
.team, 
.values, 
.cta, 
.contact, 
.blog-list, 
.policy-list {
  background-color: var(--bg-main) !important;
}

/* Universal Tile & Card Style */
.team-card, 
.value-card, 
.testimonial-card, 
.blog-card, 
.escape-card {
  background: var(--studio-dark) !important;
  color: var(--text-main);
  border: 1px solid rgba(198, 162, 94, 0.2); /* Subtle gold border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
