/* ==================================================
   RESET (Light Reset – Safe)
================================================== */

*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: #111827;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: #ffffff;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

a{
  text-decoration: none;
  color: inherit;
}

/* ==================================================
   HEADINGS (Roboto - config driven)
================================================== */

h1, h2, h3, h4, h5, h6{
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1{ font-size: 40px; }
h2{ font-size: 32px; }
h3{ font-size: 24px; }
h4{ font-size: 20px; }
h5{ font-size: 18px; }
h6{ font-size: 16px; }

/* ==================================================
   PARAGRAPHS
================================================== */

p{
  margin: 0 0 1.2em;
}

/* ==================================================
   HEADER NAV TYPOGRAPHY (Roboto look like reference)
================================================== */

/* Ensure header links are clean */
.site-header a{
  text-decoration: none;
}

/* Navigation spacing */
.site-header .nav{
  gap: 30px;
}

/* Nav font to match the “clean travel header” look */
.site-header .nav a{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.10em;  /* Roboto needs more tracking for luxury look */
  text-transform: uppercase;

  color: #4b5563;
  line-height: 1;

  border: 0;
  outline: 0;
  transition: color .2s ease, opacity .2s ease;
}

.site-header .nav a:hover{
  color: #1f2937;
}

/* Brand text if used */
.site-header .brand{
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Phone number styling */


/* ==================================================
   BUTTON BASE STYLE (Optional Utility)
================================================== */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: all .2s ease;
  cursor: pointer;
}

/* ==================================================
   UTILITIES
================================================== */

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.text-center{ text-align: center; }
.text-uppercase{ text-transform: uppercase; }

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1024px){
  h1{ font-size: 34px; }
  h2{ font-size: 28px; }
}

@media (max-width: 768px){
  body{ font-size: 15px; }

  h1{ font-size: 28px; }
  h2{ font-size: 24px; }

  .site-header .nav a{
    font-size: 13px;
    letter-spacing: 0.14em;
  }
}

/* ==================================================
   Bottom bar alignment fix
================================================== */

.site-header .bottombar{
  display: flex;
  align-items: center;
}

.site-header .nav-row{
  display: flex;
  align-items: center;
  height: 100%;
}

.site-header .nav{
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.site-header .nav a{
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 4px;
  line-height: 1;
}

/* ==================================================
   MOBILE NAV FIX (prevent double menu)
   - Desktop nav hidden on mobile
   - Hamburger shown on mobile
   - Mobile panel shown only when toggled
================================================== */

@media (max-width: 980px){
  /* hide desktop nav always on mobile */
  .site-header .bottombar .nav{
    display: none !important;
  }

  /* show hamburger on mobile */
  .site-header .hamburger{
    display: inline-flex !important;
  }

  /* search stays visible (optional) */
  .site-header .search-btn{
    display: inline-flex !important;
  }
}

/* On desktop, ensure mobile panel never shows by default */
@media (min-width: 981px){
  .site-header .mobile-panel{
    display: none !important;
  }
}

.site-header .mobile-panel{ display: none; }
.site-header .mobile-panel.is-open{ display: block; }
