/*
Theme Name: Shinzou Immigration Theme
Theme URI: https://example.com/shinzou-theme
Author: Anil
Author URI: https://shinzoucorporation.com
Description: v3 - Restores homepage slider and per-page hero banners from original static site.
Version: 1.3
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shinzou-theme
*/

/* ============================================================
   NOTE:
   This stylesheet contains intentional redundancy.
   Large-scale consolidation is postponed until post-launch
   to avoid regressions. Edit cautiously.
   ============================================================ */




:root {
  --charcoal-brown: #353022;
  --black: #070607;
  --vanilla-custard: #EBE0A4;
  --olive-bark: #6D5C35;
  --page-bg: #f5f0dd;
  --card-radius: 14px;
  --max-width: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
}


/* body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--black);
  line-height: 1.6;
  background: var(--page-bg) url("assets/maple-corners.png") center/cover no-repeat fixed;
} */

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--black);
  line-height: 1.6;

  background-color: #fdfcf8; /* slightly lighter than --page-bg */
  /* background-image: url("assets/maple-corners.png"); */
  /*background-image: url("assets/maple-lightv1.png");	*/
  /*background-repeat: repeat;
  background-size: 900px auto; */

  /* This is the key line */
  /*background-blend-mode: multiply; */

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



a { color: var(--olive-bark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* HEADER */

/*.site-header {
  background: linear-gradient(
      90deg,
      rgba(235,224,164,0.45),
      rgba(255,255,255,0.95)
  );

  border-bottom: 1px solid rgba(0,0,0,0.10);

  position: sticky;
  top: 0;
  z-index: 50;

  box-shadow: 0 6px 20px rgba(0,0,0,0.10);

  backdrop-filter: blur(6px);
} */

.site-header {
  background-color: rgba(255,255,255,0.92);

  background-image: url("assets/maple-lightv1.png");
  background-repeat: repeat;
  background-size: 1100px auto;

  border-bottom: 1px solid rgba(0,0,0,0.08);

  position: sticky;
  top: 0;
  z-index: 50;

  box-shadow: 0 6px 20px rgba(0,0,0,0.10);

  backdrop-filter: blur(6px);
}




.topbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 30px;
  /*padding: 14px 20px;*/
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  /*gap: 20px;*/
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.brand-logo {
    flex-shrink: 0; /* prevents logo from disappearing */
}

.brand-titles {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
	gap: 4px;
    /*text-align: center; */
}


/* LOGO CONFIGURATION — fixed sizing + hover */
.brand-logo img {
    width: 150px;
    height: auto !important;
    display: block;
    object-fit: contain;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.brand-logo:hover img {
    transform: scale(1.12);
    opacity: 0.9;
}


.brand-text {
  font-size: 13px;
  color: #555;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5px;
}

.menu-item {
  position: relative;
}

.nav-link {
  position: relative;
  padding: 6px 8px;
  color: var(--charcoal-brown);
  font-weight: 500;
  white-space: nowrap;
  display: flex; /* added two tweak icon alignment */
  align-items: center;   /* centers icon + text vertically */
  gap: 4px; /* optional: space between icon and text */	
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 1px;
  height: 2px;
  background: var(--olive-bark);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease-out;
  opacity: 0.9;
}

.nav-link .nav-icon {
    display: inline-block;
    vertical-align: middle;
}


.menu-item:hover > .nav-link::after {
  transform: scaleX(1);
}

/* Dropdowns */
.submenu {
  position: absolute;
  left: 0;
  /*top: calc(100% + 6px);*/
  top: 100%;
  min-width: 220px;
  background: rgba(255,255,255,0.98);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  /*transform: translateY(6px);*/
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.submenu a {
  display: block;
  padding: 7px 14px;
  font-size: 13px;
  color: #333;
  white-space: nowrap;
}

.submenu a:hover {
  background: rgba(235,224,164,0.25);
}

.menu-item:hover > .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Button */
/*
.btn-book {
  background: var(--vanilla-custard);
  color: var(--charcoal-brown);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(235,224,164,0.7);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
*/
.btn-book {
  background: var(--vanilla-custard);
  color: var(--charcoal-brown);
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(235,224,164,0.7);
  white-space: nowrap;            /* PREVENT WRAPPING */
  display: inline-flex;           /* better internal centering */
  align-items: center;            /* vertically center label */
  justify-content: center;        /* horizontally center label */
  cursor: pointer;                 /* FIX 1 — Required for hover */
  transition: all 0.25s ease;      /* FIX 2 — Required for animation */	
}


.btn-book:hover {
    text-decoration: none !important;
    transform: scale(1.05);
    animation: pulseGlowSoft 0.5s ease-out forwards;
}

@keyframes pulseGlowSoft {
    0%   { box-shadow: 0 0 0 rgba(212,162,118,0.0); }
    60%  { box-shadow: 0 8px 20px rgba(212,162,118,0.35); }
    100% { box-shadow: 0 10px 26px rgba(212,162,118,0.45); }
}



/* HERO */
/*
.hero-wrap {
  padding: 26px 20px 10px;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero-image {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.18);
}
.hero-image img {
  width: 100%;
  display: block;
}
*/

.hero-wrap { padding: 36px 20px 10px; }
.hero-inner { max-width: var(--max-width); margin: 0 auto; }

.hero-image {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.18);
}
.hero-image img {
  width: 100%;
  height: 320px;
  /*height: 320px;*/
  /*object-fit: cover;*/
  object-fit: cover;
  object-position: center 25%; /* added 20251218 */	
}

.page-title-wrap {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}
.page-title {
  display: inline-block;
  background: var(--charcoal-brown);
  color: var(--vanilla-custard);
  padding: 12px 26px;
  /*border-radius: 999px; */
  border-radius: 10px;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(53,48,34,0.45);
  margin: 0; /* added to test 20251215 */
  text-align: center;	/* added 20251216 */
}
.page-subtitle {
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
  /*color: #665; */
  color: #000000;
}

/* ============================================================
   HOMEPAGE HERO SLIDER — TEXT OVERRIDES ONLY
   Keeps subpages untouched
   ============================================================ */

.hero-wrap.hero-slider .page-subtitle {
  color: #ffffff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Center the text block itself */
.hero-wrap.hero-slider .hero-text {
  text-align: center;
}

/* Center CTA buttons under subtitle */
.hero-wrap.hero-slider .hero-ctas {
  justify-content: center;
}


/* MAIN */
main.content {
  max-width: var(--max-width);
  margin: 26px auto 70px;
  padding: 0 20px 0;
}

/*.card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 32px 30px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
} */

.card {
  background: #ffffff;
  border-radius: var(--card-radius);
  padding: 32px 30px;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.10),
    0 1px 0 rgba(255,255,255,0.9) inset;
}


h1, h2, h3 {
  color: var(--charcoal-brown);
}
h2 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 8px;
}
p {
  margin: 10px 0;
  color: #222;
  font-size: 15px;
}
ul {
  margin: 10px 0 18px 24px;
  padding: 0;
  color: #222;
  font-size: 15px;
}
li { margin-bottom: 6px; }

.muted {
  color: #777;
  font-size: 13px;
}

.cta-bar {
  margin-top: 24px;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(90deg,
              rgba(235,224,164,0.25),
              rgba(109,92,53,0.08));
  border-radius: 14px;
}
.cta-heading {
  font-weight: 600;
  color: var(--charcoal-brown);
  margin-bottom: 4px;
}

/* FOOTER */
footer.site-footer {
  background: transparent !important;	
  padding: 22px 16px;
  border-top: none; /* Remove the thin grey border */
  color: #777;
  font-size: 13px;
}


.footer-links {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links a {
  color: #777;
}
.footer-links span.dot { opacity: 0.4; }

/* RESPONSIVE */
@media (max-width: 900px){
  .nav { display: none; }
  .topbar { justify-content: space-between; }
  .card { padding: 22px 18px; }
  .page-title { font-size: 20px; padding: 10px 20px; }
  .hero-wrap { padding-top: 20px; }
  .cta-bar { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   HOMEPAGE – HERO SLIDER WITH LOTTIE & GRADIENT REFINEMENT
   ============================================================ */

.hero-wrap.hero-slider {
  position: relative;
  overflow: hidden;
  padding: 0;
  /*min-height: 520px; */
  min-height: 430px;	
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Updated Canadian-friendly gradient */
/*.hero-wrap.hero-slider .hero-overlay {
  background: linear-gradient(
    120deg,
    rgba(200,16,46,0.88),
    rgba(142,18,35,0.78),
    rgba(230,230,230,0.25)
  );
  position: absolute;
  inset: 0;
  pointer-events: none;
} */

.hero-wrap.hero-slider .hero-overlay {
  background: linear-gradient(
    120deg,
    rgba(111,69,24,0.88),
    rgba(139,94,52,0.78),
    rgba(164,113,72,0.25)
  );
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ============================================================
   FIXED HERO SLIDER (CSS GRID OVERLAP)
   ============================================================ */

.hero-slider-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /*padding: 40px 24px 110px; */
  padding: 24px 24px 74px;
  
  /* NEW: Use Grid to stack slides perfectly */
  display: grid;
  grid-template-columns: 1fr;
  /* This aligns the content vertically within the tallest slide's height */
  align-items: center; 
}

.hero-slide {
  grid-column: 1;
  grid-row: 1;
  width: 100%;

  position: absolute;        /* always absolute */
  inset: 0;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.9s ease-in-out,
    visibility 0s linear 0.9s;

  z-index: 1;

  display: flex;
  align-items: center;

  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;

  /* DO NOT change position */
}



.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 40px;
}

.hero-text .page-title {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-text .page-subtitle {
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-outline {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #ffffff;
  color: #c8102e;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.btn-primary.large {
  padding: 14px 30px;
  font-size: 1.05rem;
}

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

.lottie-hero {
  width: 320px;
  height: 320px;
  max-width: 100%;
}

/* Slider controls */

.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-20%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-arrow {
  background: rgba(0,0,0,0.35);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0,0,0,0.55);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.hero-dots .dot.active {
  background: #fff;
  width: 18px;
}

/* ============================================================
   CERTIFICATION BADGE
   ============================================================ */

.certification-badge {
  text-align: center;
  padding: 40px 0 20px;
}

.certification-badge img {
  max-width: 360px;
  width: 100%;
  opacity: 0.95;
  display: block;
  margin: 0 auto;
}

/* ============================================================
   FEATURE GRID / CARD HOVER / NON-UNDERLINE FIX
   ============================================================ */

.feature-grid {
  background: #f7f7f7;
  padding: 72px 20px;
}

.feature-grid .grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px 22px;
  text-align: left;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card .icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* Remove underline completely */
.feature-card:hover,
.feature-card:hover h3,
.feature-card:hover p {
  text-decoration: none !important;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
}

/* ============================================================
   WHY-US SPLIT SECTION
   ============================================================ */

.home-split {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: center;
}

#lottie-why {
  width: 100%;
  height: 320px;
}

/* ============================================================
   PROCESS SECTION (HOVER ANIMATION ADDED)
   ============================================================ */

.process-section {
  background: #fafafa;
  padding: 72px 20px;
}

.process-steps {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.process-steps .step {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover animation */
.process-steps .step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #c8102e;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ============================================================
   CONSULTATION STRIP (NEW CANADIAN GRADIENT)
   ============================================================ */

.consultation-strip {
  /* background: linear-gradient(120deg, #C8102E, #9B0F25, #C81D45); */
  background: linear-gradient(120deg, #D4A276, #E7BC91, #E7BC91);
  color: #fff;
  padding: 50px 20px;

  /* NEW: Adds 30px of space below this section */
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);

  /* Ensures the shadow appears on top of the background pattern */
  position: relative;
  z-index: 10;
  
  /* NEW: Adds 30px of space below this section */
  margin-bottom: 30px;
}

.consultation-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ============================================================
   CONTACT STRIP (SOFTER NAVY)
   ============================================================ */

.contact-strip {
  /* background: #1F2634; */
  background: linear-gradient(90deg, #F3D5B5, #E7BC91, #D4A276);
  color: #e5e5e5;
  padding: 50px 20px;

  /* 3D DROP SHADOW */
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  
  /* Ensures the shadow appears on top of the background pattern */
  position: relative;
  z-index: 10;
}

.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   RESPONSIVE OPTIMIZATIONS
   ============================================================ */

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual { order: -1; }
  .hero-controls { bottom: 18px; }
  .home-split { grid-template-columns: 1fr; }
  .consultation-inner,
  .contact-inner { flex-direction: column; text-align: center; }
  .contact-actions { justify-content: center; }
}

@media (max-width: 640px) {
  .lottie-hero {
    width: 210px;
    height: 210px;
  }
}

.section-title.large {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.section-title.large-left {
  font-size: 2.4rem;
  text-align: left;
  margin-bottom: 14px;
}

/* Meet Your Consultant Section */
.meet-consultant .consultant-profile {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px; /* Adjust this number to increase/decrease the space */
}

/* CONSULTANT PHOTO – Circular/Oval with Soft Shadow */
.consultant-photo {
    width: 260px;
    height: 260px;               /* makes it a perfect circle (equal width & height) */
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;            /* IMPORTANT: crops image into circle */
    border-radius: 50%;          /* FULLY circular */
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);  /* soft shadow */
	transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.consultant-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;           /* fills circle cleanly */
    display: block;
}

.consultant-photo:hover {
    box-shadow: 0 18px 40px rgba(212, 162, 118, 0.45); /* warm gold glow */
    transform: translateY(-3px);                      /* subtle lift */
}


.consultant-text p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6rem;
}

.consultant-name-title {
    text-align: center;
    margin-bottom: 20px;
}

.consultant-name-title h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal-brown);
}

.consultant-name-title p {
    margin: 4px 0 0;
    font-size: 1rem;
    color: #555;
}


/* Home Icon Class */

.nav-icon {
  width: 20px;
  height: 20px;
  fill: currentColor; /* Inherits the link text color automatically */
  vertical-align: middle;
  margin-bottom: 4px; /* Slight adjustment to align with text */
  transition: transform 0.2s ease;
}

/* Optional: Make the house 'pop' slightly on hover */
.menu-item:hover .nav-icon {
  transform: scale(1.1);
}

/* Replace Home menu label with Home icon */
.menu > li:first-child > a.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu > li:first-child > a.nav-link svg.nav-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Added to tweak title and statement */


/* BRAND TITLES — Final Sizing */
.brand .brand-name {
    font-size: 1.00rem !important;
    font-weight: 800;
    line-height: 1.1;
    white-space: normal !important;
	text-align: center;
}

.brand-name .ampersand {
    font-size: 1.4rem;
    font-weight: 900;
    display: inline-block;
    margin: 0 auto;
}


.brand-statement {
  font-size: 0.5rem;
  font-weight: 400;
  color: #444;
}




/* ===============================
   FULL PROFESSIONAL FOOTER (No Logo)
   =============================== */

/* ===============================
   FULL PROFESSIONAL FOOTER (Soft Gold Separator)
   =============================== */

.site-footer.pro-footer {
  background: linear-gradient(
    to bottom,
    #e9dfc8 0%,
    #f6f0e2 50%,
    #ffffff 100%
  ) !important;
  padding: 50px 20px 30px;
  border-top: none;
  position: relative;
  color: #444;
  font-size: 14px;
}


.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

/* Column 1 – center heading + tagline */
.footer-brand {
    text-align: center;
}


.footer-brand-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal-brown);
  margin-bottom: 10px;
  text-align: center; 	
}

.footer-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal-brown);
  margin-bottom: 10px;
  text-align: left; 	
}

.footer-tagline {
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.5;
  color: #555;
  max-width: 260px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}


.footer-list a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--olive-bark);
  text-decoration: underline;
}

.footer-contact li {
  color: #555;
  text-align: left;	
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: #777;
}

.footer-bottom .legal-links a {
  color: #777;
}

.footer-bottom .legal-links a:hover {
  color: var(--charcoal-brown);
  text-decoration: underline;
}

/* ===============================
   Footer Icons + Left-Aligned List Items
   =============================== */

/* Footer list items + icons */
.footer-list li {
  display: flex;        
  align-items: flex-start;
  gap: 10px;            
  margin-bottom: 10px;
}


.footer-icon {
  font-size: 16px;
  color: var(--olive-bark);      
  opacity: 0.9;
  width: 16px;                   
  display: inline-block;
  line-height: 1.2;	
}



/* Mobile Layout */
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

/* ===============================
   MOBILE NAVIGATION
=============================== */

.mobile-nav-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal-brown);
}


.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  margin-bottom: 12px;
}

.mobile-menu a {
  color: var(--charcoal-brown);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

/* Breakpoint */
@media (max-width: 900px) {
  .nav { display: none; }
  .mobile-nav-toggle { display: block; }
}


.mobile-nav.open {
  display: block;
}



/* ============================================================
   MOBILE NAVIGATION – COLLAPSIBLE MENU
   ============================================================ */

/* Hide mobile menu by default */
.mobile-nav {
  display: none;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 18px 20px 24px;
}

/* Show hamburger only on mobile */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--charcoal-brown);
}

/* Mobile breakpoint */
@media (max-width: 900px) {

  /* Hide desktop nav */
  .nav {
    display: none !important;
  }

  /* Show hamburger */
  .mobile-nav-toggle {
    display: block;
  }

  /* When JS adds `.open`, show menu */
  .mobile-nav.open {
    display: block;
  }

  /* Mobile menu list */
  .mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-menu li {
    margin-bottom: 12px;
  }

  .mobile-menu a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal-brown);
    text-decoration: none;
  }

  .mobile-menu a:hover {
    color: var(--olive-bark);
  }

  /* Mobile CTA button */
  .mobile-book-btn {
    margin-top: 16px;
    width: 100%;
    text-align: center;
  }
}


/* ============================================================
   PREVENT BACKGROUND SCROLL WHEN MOBILE MENU IS OPEN
   ============================================================ */

/* Lock page scrolling */
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* Make mobile menu independently scrollable */
.mobile-nav {
  max-height: calc(100vh - 80px); /* below header */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* smooth iOS scrolling */
}



/* ============================================================
   MOBILE HEADER SIZE REDUCTION
   ============================================================ */

@media (max-width: 900px) {

  /* Reduce header padding */
  .topbar {
    padding: 14px 16px !important;
  }

  /* Shrink logo on mobile */
  .brand-logo img {
    width: 110px !important;
  }

  /* Tighten brand text spacing */
  .brand-titles {
    gap: 2px;
  }

  .brand .brand-name {
    font-size: 0.85rem !important;
    line-height: 1.05;
  }

  /* Slightly smaller hamburger */
  .mobile-nav-toggle {
    font-size: 24px;
  }
}


/* Show first slide ONLY until JS activates slider */
.hero-slider-inner:not(.js-ready) .hero-slide:first-child {
  opacity: 1;
  visibility: visible;
}


@media (max-width: 640px) {
  .hero-slide {
    position: relative;
    inset: auto;
	align-items: flex-start;  
  }
}


@media (max-width: 640px) {
  .hero-text .page-title {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .hero-text .page-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 640px) {
  .hero-controls {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 24px;
  }
}


@media (max-width: 640px) {
  .hero-wrap.hero-slider {
    min-height: auto;
  }
}


/* =========================================
   MOBILE HERO SPACING REFINEMENT
   ========================================= */

@media (max-width: 640px) {

  /* Reduce overall vertical padding */
  .hero-slider-inner {
    padding-top: 25px;
    padding-bottom: 80px;
  }

  /* Pull Lottie closer to top */
  .hero-visual {
    margin-top: -55px;
    margin-bottom: 4px;
  }

  /* Tighten spacing above heading card */
  .hero-text .page-title {
    margin-top: 0;
  }

  /* Tighten gap between title and subtitle */
  .hero-text .page-subtitle {
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  .hero-text {
    margin-top: 0;
    padding-top: 0;
  }
}


@media (max-width: 640px) {

  /* reduce the gap BETWEEN lottie block and the text block */
  .hero-layout {
    gap: 10px !important;
  }

  /* remove any remaining top space on the title */
  .hero-text .page-title {
    margin-top: 0 !important;
  }

  /* (optional) if the subtitle is a <p>, kill its default top margin too */
  .hero-text .page-subtitle {
    margin-top: 6px !important;
  }
}


/* =========================================================
   PAGE INTRO BLOCK (IMAGE-FREE, STRUCTURED)
   Clean replacement — no hero/banner dependency
========================================================= */

.page-intro {
  padding: 0;
  margin-bottom: 30px;
}

/* Solid surface to quiet patterned background */
.page-intro-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 36px 20px 34px;

  background: #ffffff;
	
  border-radius: 0 0 22px 22px;

  box-shadow: 0 14px 32px rgba(0,0,0,0.10);
  text-align: center;
}

/* Title anchor */
.page-intro-title {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 28px;

  background: var(--charcoal-brown);
  color: var(--vanilla-custard);

  border-radius: 999px;
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.15;

  box-shadow: 0 8px 22px rgba(53,48,34,0.35);
}

/* Supporting text */
.page-intro-summary {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #333;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile refinement */
@media (max-width: 640px) {
  .page-intro-inner {
    padding: 26px 16px 24px;
    border-radius: 0 0 18px 18px;
  }

  .page-intro-title {
    font-size: 1.7rem;
    padding: 10px 22px;
  }
}




