/* ====================================================
   CSS LAYERS Tour Policies, Website Usage, General FAQ
==================================================== */
@layer base, components;

/*Style sheet for Tour Guide Debbie Copyright 2019*/

/* =============================================
   BASE (TOKENS + GLOBAL)
============================================= */
@layer base {

:root {
  /* BRAND */
  --brand-blue: #243f8f;
  --brand-blue-dark: #1b2f6b;
  --brand-gold: #f6a019;
  --brand-yellow: #fbf704;

  /* HERITAGE */
  --heritage-navy: #1f2a44;
  --heritage-indigo: #2c3e63;
  --heritage-gold: #c9a24d;
  --heritage-sand: #f4efe6;
  --heritage-white: #ffffff;

  /* BUTTON COLORS */
  --color-btn-queenstown: #257D68;
  --color-btn-queenstown-hover: #1F6958;
  --color-btn-osj: #FD9805;
  --color-btn-osj-hover: #E08604;
  --color-btn-night: #142D66;
  --color-btn-night-hover: #102552;
  --color-btn-aguada: #214096;
  --color-btn-aguada-hover: #1B357C;

  /* SEMANTIC */
  --color-text-primary: var(--brand-blue-dark);
  --color-text-inverse: var(--heritage-white);
  --color-bg-primary: var(--heritage-white);
}

/* GLOBAL RESET */
body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  margin: 0;
}

}

/* =============================================
   COMPONENTS
============================================= */
@layer components {

/* =========================
   LAYOUT
========================= */
.west-tour .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

/* =========================
   SPACING SYSTEM
========================= */
.section {
  padding: 4rem 0;
}

.section-sm {
  padding: 2rem 0;
}

.section-lg {
  padding: 6rem 0;
}
   
/* =============================================
   PAGE BACKGROUND
============================================= */

body {
  background-color: var(--heritage-sand);
}

/* =========================
   NAV
========================= */
.site-header {
  background: var(--heritage-white);
  border-bottom: 1px solid #ddd;
  padding: 6px 0;  /* reduced */
}
  
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0.5rem;
  gap: 0.5rem; 
}

.navbar-logo {
  height: 90px;
  margin: 8px 0; /* adds top + bottom space */
}

.navbar-brand-text {
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--brand-blue-dark);
  text-decoration: none !important;
}
    
.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.navbar-brand-wrap:hover {
  text-decoration: none !important;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-weight: 700;
  font-size: 1.5rem;
  margin-left: auto;
}

/* Desktop shows number */
.nav-phone-mobile { display: none; }

    
/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

 .site-header {
    padding: 15px 0px 15px 0px;
  }

.nav-wrap {
  display: flex;
  flex-direction: column; /* STACK ROWS */
  align-items: stretch;
  gap: 0.1rem; 
}
    
.navbar-brand-wrap {
  flex-direction: row;
  align-items: center;
}
    
.navbar-logo {height: 75px;}

.navbar-brand-text {
  font-weight: 550;
  font-size: 1.5rem;
  color: var(--brand-blue-dark);
  white-space: nowrap;
}
    
 .nav-links {
  display: flex;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.5rem;
  justify-content: flex-end; /* push to right */
  width: 100%;
}
    
}   

/* =============================================
   TOUR POLICIES HERO
============================================= */

.tour-policies-hero {
  background-color: var(--heritage-sand);
  padding: 4rem 0 2.5rem;
  text-align: center;
}

.tour-policies-hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

/* TITLE */
.tour-policies-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--brand-blue-dark);
  line-height: 1.15;
  margin-bottom: 1rem;

  text-shadow:
    2px 2px 4px rgba(0,0,0,0.20),
    4px 4px 10px rgba(0,0,0,0.12);
}

/* SUBTITLE */
.tour-policies-subtitle {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 0;

}

/* =============================================
   MOBILE
============================================= */

@media (max-width: 768px) {

  .tour-policies-hero {
    padding: 2.5rem 0 1.75rem;
  }

  .tour-policies-hero h1 {
    font-size: 2.7rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
  }

  .tour-policies-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    padding: 0 1rem;
  }

}

/* =============================================
   TOUR POLICIES ACCORDION
============================================= */

/* ACCORDION WRAPPER */
#tour-policies .policies-accordion {
  max-width: 1000px;
  margin: 0 auto;
}

/* ITEM */
#tour-policies .accordion-item {
  border: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--heritage-white);
}

/* ACCORDION BUTTON */
#tour-policies .accordion-button {
  background-color: var(--brand-blue-dark);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  padding: 1.2rem 1.4rem;
}

/* COLLAPSED STATE */
#tour-policies .accordion-button.collapsed {
  background-color: #ffffff;
  color: var(--brand-blue-dark);
}

/* OPEN STATE */
#tour-policies .accordion-button:not(.collapsed) {
  background-color: var(--brand-blue-dark);
  color: #ffffff;
  box-shadow: none;
}

/* REMOVE BOOTSTRAP FOCUS */
#tour-policies .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

/* BODY */
#tour-policies .accordion-body {
  background-color: var(--heritage-white);
  color: var(--heritage-navy);
  line-height: 1.8;
  font-size: 1.02rem;
  padding: 1.5rem;
}

/* LISTS */
#tour-policies .accordion-body ol {
  padding-left: 1.4rem;
  margin-bottom: 0;
}

#tour-policies .accordion-body li {
  margin-bottom: 0.8rem;
}

/* PARAGRAPHS */
#tour-policies .accordion-body p {
  margin-bottom: 1rem;
}

/* POLICY LEAD */
#tour-policies .policy-lead {
  font-size: 1.1rem;
  color: var(--brand-blue-dark);
}

/* CHEVRON ICON */
#tour-policies .accordion-button::after {
  filter: brightness(0) invert(1);
}

/* COLLAPSED CHEVRON */
#tour-policies .accordion-button.collapsed::after {
  filter: none;
}

/* =============================================
   MOBILE
============================================= */

@media (max-width: 768px) {

  #tour-policies .accordion-button {
    font-size: 1rem;
    line-height: 1.4;
    padding: 1rem;
  }

  #tour-policies .accordion-body {
    padding: 1.2rem;
    font-size: 0.98rem;
    line-height: 1.7;
  }

}     


/* =============================================
   FOOTER 
============================================= */

.site-footer {
  background-color: var(--heritage-navy);
  color: var(--heritage-white);
  padding: 2rem 0;
  font-size: 0.95rem;
}

/* TITLE */
.site-footer h5 {
  font-weight: 600;
  color: var(--heritage-gold);
}

/* BASE LINKS */
.site-footer a {
  color: var(--heritage-white);
  text-decoration: none;
  transition: color 0.25s ease;
}

/* KEEP BOOTSTRAP list-unstyled (DO NOT override padding) */
.footer-links li {
  margin-bottom: 0.4rem;
}

/* LOCATION ICONS */
.footer-links li::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--heritage-gold);
  margin-right: 6px;
}

/* REMOVE ICONS FROM NON-LIST ITEMS */
.footer-phone::before,
.footer-backtotop::before {
  content: none !important;
}

/* PHONE STYLE */
.footer-phone a {
  font-weight: 600;
}

/* PRIMARY HOVER (TOUR LINKS) */
.footer-links a:hover {
  color: var(--heritage-gold);
}

/* GLOBAL FOOTER HOVER */
.site-footer a:hover,
.site-footer a:focus {
  color: var(--heritage-gold);
}

/* SOCIAL ICONS */
.footer-social a {
  color: var(--heritage-gold);
  font-size: 1.1rem;
  margin-right: 0.75rem;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.footer-social a:hover {
  color: var(--heritage-gold);
  opacity: 0.85;
}

/* BACK TO TOP */
.footer-backtotop {
  display: inline-block;
  margin-top: 0.75rem;
}

/* =============================================
   ULTRA-WIDE SCREEN SUPPORT
============================================= */

@media (min-width: 1800px) {

  .west-tour .container,
  #tour-policies .container,
  .tour-policies-hero .container {
    max-width: 1500px;
  }

  .tour-policies-hero h1 {
    font-size: 4.8rem;
  }

  .tour-policies-subtitle {
    font-size: 1.7rem;
  }

  #tour-policies .accordion-button {
    font-size: 1.25rem;
  }

  #tour-policies .accordion-body {
    font-size: 1.1rem;
    line-height: 1.9;
  }

}

    