/* ============================================================
   CALLE CAMPERS — shared.css
   Brand: Grey #7e8895 | Purple #bf41e2 | Teal #0097b2
   H1: Rubik Light 300 | Van titles: Great Vibes
   Body: Raleway | Serif headings: Lora
   ============================================================ */

/* ── GOOGLE FONTS loaded non-blocking via <head> preload in each HTML file ── */

/* ── BEAUTIFULLY DELICIOUS FONTS ── */

/* BDScript — Regular */
@font-face {
  font-family: 'BDScript';
  src: url('../fonts/BDScript-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* BDScript — Bold */
@font-face {
  font-family: 'BDScript';
  src: url('../fonts/BDScript-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ── CSS VARIABLES ── */
:root {
  /* Brand */
  --grey:          #7e8895;
  --grey-light:    #f4f5f6;
  --grey-dark:     #5a6270;
  --grey-darker:   #3e4450;
  --purple:        #bf41e2;
  --purple-light:  #d97cf0;
  --purple-pale:   #f9eefe;
  --purple-dark:   #9a2fbf;
  --teal:          #0097b2;
  --teal-light:    #33b5cc;
  --teal-pale:     #e6f7fa;
  --teal-dark:     #007a91;
  --white:         #ffffff;
  --off-white:     #fafafa;
  --dark:          #2c2c2c;
  --mid:           #555555;
  --border:        #e2e4e8;

  /* Shadows */
  --shadow:        0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:     0 12px 48px rgba(0,0,0,0.16);
  --shadow-sm:     0 2px 10px rgba(0,0,0,0.07);

  /* Transitions */
  --transition:    all 0.22s ease;

  /* Header height — used for page offset */
  --header-h:      100px;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Raleway', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul { list-style: none; }

/* ── TYPOGRAPHY ── */

/* H1 — Rubik Light */
h1 {
  font-family: 'Rubik', sans-serif; font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
}

/* H2, H3, H4 — Lora serif */
h2, h3, h4 {
  font-family: 'Lora', serif;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; }

p {
  line-height: 1.85;
  color: var(--mid);
  font-size: 0.97rem;
}

/* BDScript — for taglines, accents, special text */
.script-text {
  font-family: 'BDScript', cursive;
  font-style: italic;
  font-weight: 400;
}
.script-text-bold {
  font-family: 'BDScript', cursive;
  font-style: italic;
  font-weight: 700;
}

/* Van name titles — Great Vibes */
.van-title-purple {
  font-family: 'Great Vibes', cursive;
  color: var(--purple);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}
.van-title-teal {
  font-family: 'Great Vibes', cursive;
  color: var(--teal);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

/* Section label */
.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ── LAYOUT ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-wide { max-width: 1300px; margin: 0 auto; }

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--grey);
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 1.5rem;
  box-shadow: none;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

/* Logo — centred middle column */
.logo {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}
.logo img {
  height: 100px;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.logo img:hover { opacity: 0.85; }

/* Left nav */
.nav-left {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

/* Right nav */
.nav-right {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

nav { display: flex; align-items: center; gap: 0; }

.nav-link {
  padding: 0.45rem 1.3rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-trigger { cursor: pointer; }
.dropdown-trigger::after {
  content: ' ▾';
  font-size: 0.6rem;
  opacity: 0.7;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--grey-dark);
  min-width: 170px;
  border-top: 2px solid var(--teal);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.22s;
  border-radius: 0 0 4px 4px;
}
/* Invisible bridge above dropdown so hover is never lost */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.1rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Purple accent for Gordanach in dropdown */
.dropdown-menu a.van-gordanach:hover { color: var(--purple-light); }
.dropdown-menu a.van-fionn:hover { color: var(--teal-light); }

/* Book Now nav button */
.btn-book-nav {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 3px;
  font-weight: 800 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  border: 2px solid var(--teal);
  transition: background 0.2s, transform 0.15s, border-color 0.2s !important;
  margin-left: 0.4rem;
}
.btn-book-nav:hover {
  background: var(--teal-light) !important;
  border-color: var(--teal-light) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  .desktop-nav-items { display: none !important; }
  .nav-left, .nav-right { display: none !important; }
  .hamburger { display: flex; }
  /* Mobile: logo left, hamburger right */
  header {
    grid-template-columns: auto 1fr auto;
    padding: 0 1.2rem;
    height: 64px;
  }
  .logo { grid-column: 1; justify-content: flex-start; }
  .logo img { height: 52px; }
  .hamburger { grid-column: 3; }

  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: var(--grey-dark);
    z-index: 199;
    flex-direction: column;
    padding: 1.5rem 1.2rem;
    gap: 0.2rem;
    overflow-y: auto;
  }
  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    display: block;
    padding: 0.9rem 1rem;
    color: rgba(255,255,255,0.88);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    transition: background 0.15s;
  }
  .mobile-menu a:hover { background: rgba(255,255,255,0.1); color: #fff; }

  .mobile-menu .mobile-section-label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    font-weight: 700;
    padding: 1rem 1rem 0.3rem;
    display: block;
  }
  .mobile-menu .mobile-book {
    background: var(--teal);
    color: #fff !important;
    text-align: center;
    margin-top: 1rem;
    border-radius: 4px;
    border-bottom: none !important;
  }
  .mobile-menu .mobile-book:hover { background: var(--teal-light) !important; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--grey-dark);
  padding: 1.4rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.trust-item { text-align: center; color: #fff; }
.trust-icon { font-size: 1.4rem; margin-bottom: 0.2rem; }
.trust-item span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.78;
}

/* ── PAGE HERO ── */
.page-hero {
  margin-top: var(--header-h);
  padding: 5rem 2rem 4rem;
}
.page-hero-grey { background: var(--grey); }
.page-hero-grey .section-label { color: rgba(255,255,255,0.6); }
.page-hero-grey h1,
.page-hero-grey h2 { color: #fff; }
.page-hero-grey p { color: rgba(255,255,255,0.72); }

.page-hero-purple { background: linear-gradient(135deg, var(--grey-dark) 0%, #3a2040 100%); }
.page-hero-purple h1,
.page-hero-purple h2 { color: #fff; }
.page-hero-purple .section-label { color: var(--purple-light); }
.page-hero-purple p { color: rgba(255,255,255,0.72); }

.page-hero-teal { background: linear-gradient(135deg, var(--grey-dark) 0%, #012f38 100%); }
.page-hero-teal h1,
.page-hero-teal h2 { color: #fff; }
.page-hero-teal .section-label { color: var(--teal-light); }
.page-hero-teal p { color: rgba(255,255,255,0.72); }

/* ── BUTTONS ── */

/* Primary — Teal */
.btn-primary {
  background: var(--teal);
  color: #fff;
  padding: 0.85rem 2.2rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid var(--teal);
  display: inline-block;
  transition: var(--transition);
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,151,178,0.3);
}

/* Secondary — Outline white */
.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 0.85rem 2.2rem;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid rgba(255,255,255,0.65);
  display: inline-block;
  transition: var(--transition);
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Van-specific buttons */
.btn-van {
  display: inline-block;
  padding: 0.72rem 1.6rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: var(--transition);
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-van-purple-solid {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.btn-van-purple-solid:hover {
  background: var(--purple-light);
  border-color: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(191,65,226,0.3);
}
.btn-van-purple-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-van-purple-outline:hover {
  background: var(--purple-pale);
  transform: translateY(-2px);
}
.btn-van-teal-solid {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-van-teal-solid:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,151,178,0.3);
}
.btn-van-teal-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-van-teal-outline:hover {
  background: var(--teal-pale);
  transform: translateY(-2px);
}

/* Ghost dark */
.btn-ghost-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
  padding: 0.72rem 1.6rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  transition: var(--transition);
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
}
.btn-ghost-dark:hover {
  border-color: var(--grey);
  background: var(--grey-light);
  transform: translateY(-1px);
}

/* ── PILLS ── */
.pill {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: inline-block;
}
.pill-purple { background: var(--purple-pale); color: var(dark); }
.pill-teal   { background: var(--teal-pale);   color: var(dark); }
.pill-grey   { background: var(--grey-light);  color: var(--grey-dark); }

/* ── FIND MORE / ARROW LINK ── */
.find-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 0.1rem;
  transition: var(--transition);
}
.find-more-link::after { content: '→'; }
.find-more-link:hover {
  color: var(--teal-dark);
  border-color: var(--teal-dark);
  gap: 0.65rem;
}
.find-more-link-purple {
  color: var(--purple);
  border-bottom-color: var(--purple);
}
.find-more-link-purple:hover {
  color: var(--purple-dark);
  border-color: var(--purple-dark);
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card-body { padding: 1.5rem; }

/* Van card accent borders */
.card-purple { border-top: 3px solid var(--purple); }
.card-teal   { border-top: 3px solid var(--teal); }

/* ── FEATURE ICON BLOCKS ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.feature-item { text-align: center; padding: 1.5rem 1rem; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grey-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.feature-icon-purple { background: var(--purple-pale); }
.feature-icon-teal   { background: var(--teal-pale); }
.feature-item h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.feature-item p { font-size: 0.85rem; }

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
.divider-grey { border-top-color: rgba(255,255,255,0.12); }

/* ── BANNER / HIGHLIGHT STRIP ── */
.banner-strip {
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.banner-purple { background: var(--purple-pale); color: var(--purple-dark); }
.banner-teal   { background: var(--teal-pale);   color: var(--teal-dark); }

/* ── FORM ELEMENTS ── */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,151,178,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── FOOTER ── */
footer {
  background: var(--grey);
  padding: 2.8rem 2rem 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  max-width: 1100px;
  margin: 0 auto;
}
.footer-logo img {
  height: 80px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}
.footer-logo p {
  color: rgba(255,255,255,0.88);
  font-size: 0.8rem;
  line-height: 1.75;
}
.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.1rem;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.88);
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.footer-col h5 {
  color: rgba(255,255,255,0.88);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  max-width: 1100px;
  margin: 1.3rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.footer-bottom p {
  color: rgba(255,255,255,0.88);
  font-size: 0.72rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.88);
  font-size: 0.72rem;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: #fff; }
.footer-legal {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── UTILITIES ── */
.text-center  { text-align: center; }
.text-white   { color: #fff !important; }
.text-purple  { color: var(--purple); }
.text-teal    { color: var(--teal); }
.text-grey    { color: var(--grey); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-sm  { gap: 0.75rem; }
.gap-md  { gap: 1.5rem; }
.gap-lg  { gap: 2.5rem; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  section { padding: 3.5rem 1.2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
}