/* =====================================================================
   MONK TRAILS  —  style.css
   Plain CSS. No frameworks. No build tools.

   HOW TO USE THIS FILE
   Every block below has a BIG COMMENT HEADING telling you what it
   controls. Scroll to the heading you want, change the value, save,
   refresh the browser. That's it.

   THE FASTEST CHANGE YOU CAN MAKE  ->  see "1. THEME COLOURS" below.
   ===================================================================== */


/* =====================================================================
   1. THEME COLOURS  ***EDIT HERE FIRST***
   ---------------------------------------------------------------------
   Change these 8 values and the WHOLE website re-themes itself.
   Every colour on every page comes from this one list.

   Example: want a green brand instead of orange?
      --orange: #2E7D32;
      --orange-dark: #1B5E20;
   Save. Done. Buttons, links, headings, footer all update.
   ===================================================================== */
:root {
  --black:        #0d0d0d;   /* header, footer, dark sections           */
  --black-soft:   #1a1a1a;   /* cards sitting inside dark sections      */
  --orange:       #E8720C;   /* main brand colour: buttons, links       */
  --orange-dark:  #c96108;   /* button hover                            */
  --white:        #ffffff;   /* page background + text on dark          */
  --light-bg:     #f5f4f2;   /* light grey cards / alternating bands    */
  --text:         #222222;   /* normal body text                        */
  --text-muted:   #666666;   /* small print, captions                   */
  --border:       #e2e0dd;   /* thin lines around cards                 */

  /* Page width. Make it bigger for a wider site, smaller for narrower. */
  --page-width:   1140px;

  /* Fonts. Swap these for any font you like.                           */
  --font-body:    Arial, Helvetica, sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
}


/* =====================================================================
   2. GLOBAL RESET + BASE TEXT
   Controls: default font, text colour, line spacing for the whole site.
   ===================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;            /* change to 17px/18px for bigger text */
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }

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

/* .container = the invisible box that keeps content centred.
   Used on almost every section.                                        */
.container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 20px;
}


/* =====================================================================
   3. HEADER + NAVIGATION (desktop)
   Controls: the black bar at the top with logo and menu links.
   ===================================================================== */
header {
  background: var(--black);
  padding: 14px 0;
  position: sticky;           /* delete this line if you don't want the
                                 header to follow you when scrolling */
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #262626;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

/* Logo image + brand text sit together */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 44px;               /* logo size — change this number */
  width: 44px;
  object-fit: cover;
  border-radius: 6px;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.brand-text span { color: var(--orange); }   /* the "TRAILS" part */

.brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: #8a8a8a;
  text-transform: uppercase;
}

/* The menu links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover { color: var(--orange); }

/* The page you are currently on gets an orange underline.
   In the HTML this is written as  class="active"                       */
.nav-links a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}


/* =====================================================================
   4. MOBILE MENU (the 3-dot button)
   ---------------------------------------------------------------------
   This works with NO JAVASCRIPT. It uses a hidden checkbox.
   In the HTML each page has:
       <input type="checkbox" id="nav-toggle" class="nav-toggle">
       <label for="nav-toggle" class="nav-dots">...3 dots...</label>
   Tapping the label ticks the checkbox, and the CSS below opens the menu.
   ===================================================================== */
.nav-toggle { display: none; }      /* the checkbox is always invisible */
.nav-dots   { display: none; }      /* button hidden on desktop         */

/* The 3 vertical dots themselves */
.nav-dots span {
  display: block;
  width: 5px;
  height: 5px;
  margin: 3px 0;
  border-radius: 50%;
  background: var(--white);
}


/* =====================================================================
   5. BUTTONS
   Controls: every orange button on the site (class="btn").
   For a see-through outlined button use  class="btn btn-outline"
   ===================================================================== */
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: 2px solid var(--orange);
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-small { padding: 9px 18px; font-size: 0.8rem; }


/* =====================================================================
   6. HERO — THE BIG BACKGROUND PHOTO SECTION UNDER THE HEADER
   ---------------------------------------------------------------------
   ***TO CHANGE THE BACKGROUND PHOTO***
   Look in the HTML file, find:   <section class="hero" style="...">
   and swap the image filename inside url('images/....jpg').

   The dark gradient in front of the photo keeps the white text readable.
   Make the photo darker  -> raise the 0.75 / 0.45 numbers below.
   Make the photo lighter -> lower them.
   ===================================================================== */
.hero {
  position: relative;
  min-height: 82vh;                       /* hero height */
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0;
}

/* The dark veil over the photo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
              rgba(0,0,0,0.72) 0%,
              rgba(0,0,0,0.45) 45%,
              rgba(0,0,0,0.82) 100%);
}

.hero .container { position: relative; z-index: 1; }

.hero .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero p {
  max-width: 620px;
  margin: 0 auto 28px auto;
  color: #e6e6e6;
  font-size: 1.05rem;
}

.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Smaller hero used on inner pages (trek pages, blog, about ...) */
.hero-small { min-height: 46vh; padding: 70px 0; }
.hero-small h1 { font-size: 2.4rem; }

/* The little strip of facts under a trek hero */
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}
.hero-facts div {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px;
  padding: 10px 18px;
  min-width: 130px;
}
.hero-facts strong { display: block; color: var(--orange); font-size: 1.05rem; }
.hero-facts small  { color: #ccc; font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; }


/* =====================================================================
   7. SECTIONS  (the normal content blocks down the page)
   class="section"        -> white background
   class="section light"  -> light grey background
   class="section dark"   -> black background
   ===================================================================== */
.section { padding: 74px 0; }

.section.light { background: var(--light-bg); }

.section.dark  { background: var(--black); color: var(--white); }
.section.dark p, .section.dark li { color: #c9c9c9; }
.section.dark h2, .section.dark h3 { color: var(--white); }

/* Centred section heading + subheading */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 46px auto; }
.section-head h2 { font-size: 2.15rem; margin-bottom: 12px; }
.section-head p  { color: var(--text-muted); }
.section.dark .section-head p { color: #b0b0b0; }

/* Small orange label above a heading */
.label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  font-weight: bold;
}

/* Plain body copy inside sections */
.prose p  { margin-bottom: 16px; }
.prose h2 { font-size: 1.7rem; margin: 34px 0 12px; }
.prose h3 { font-size: 1.25rem; margin: 26px 0 10px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 7px; }
.prose img { border-radius: 6px; margin: 24px 0 8px; }
.prose figcaption { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px; }


/* =====================================================================
   8. TREK CARD GRID
   Used on the home page and on "Our Treks".
   ---------------------------------------------------------------------
   The grid automatically fits 3 cards on desktop, 2 on tablet,
   1 on phone. To force a different card width change the 320px below.
   ===================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.12); }

.section.dark .card { background: var(--black-soft); border-color: #2b2b2b; }

.card img { width: 100%; height: 210px; object-fit: cover; }

.card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }

.card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card-body p  { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; flex: 1; }
.section.dark .card-body p { color: #aaa; }

/* The grey "9 Days · 5,319 m · Difficult" line on a card */
.card-meta {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: bold;
  margin-bottom: 8px;
}

.card-link { color: var(--orange); font-weight: bold; font-size: 0.85rem; }
.card-link:hover { text-decoration: underline; }

/* Coloured difficulty pill */
.pill {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: bold;
  background: var(--light-bg);
  color: var(--text);
  border: 1px solid var(--border);
}
.pill.easy      { background: #e8f5e9; color: #1b5e20; border-color: #c8e6c9; }
.pill.moderate  { background: #fff4e5; color: #a04f00; border-color: #ffe0b2; }
.pill.difficult { background: #fdecea; color: #a01b0b; border-color: #f8cec9; }


/* =====================================================================
   8b. TREK SLIDESHOW (home page "Our Treks" section)
   ---------------------------------------------------------------------
   One slide per trek, sliding horizontally. Arrows + dots let a
   visitor change the slide; it also auto-advances (see the <script>
   at the bottom of index.html — AUTOPLAY_MS controls the speed).

   To add/remove a slide: edit the TREKS list in build.py, not this
   file. This file only controls how the slideshow LOOKS.
   ===================================================================== */
.slideshow {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--white);
}

/* The strip of slides. JS slides this left/right with a CSS transform. */
.slide-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}

.slide-img { display: block; }
.slide-img img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }

.slide-body {
  padding: 34px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slide-body h3 { font-size: 1.6rem; margin-bottom: 10px; }
.slide-body p  { color: var(--text-muted); margin-bottom: 18px; }
.slide-body .card-meta { margin-bottom: 12px; }
.slide-body .btn { align-self: flex-start; }

/* Prev / next arrow buttons, sitting on top of the image */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(13,13,13,0.55);
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slide-arrow:hover { background: var(--orange); }
.slide-prev { left: 16px; }
.slide-next { right: 16px; }

/* Dots row under the slideshow */
.slide-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 16px 0;
  background: var(--light-bg);
}
.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0;
  cursor: pointer;
}
.slide-dot.is-active { background: var(--orange); border-color: var(--orange); }


/* =====================================================================
   9. TWO-COLUMN SPLIT (photo on one side, text on the other)
   ===================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img { border-radius: 6px; width: 100%; height: 100%; max-height: 460px; object-fit: cover; }
.split h2 { font-size: 2rem; margin-bottom: 14px; }
.split p  { color: var(--text-muted); margin-bottom: 14px; }
.section.dark .split p { color: #b8b8b8; }


/* =====================================================================
   10. ITINERARY TIMELINE (day by day list)
   ===================================================================== */
.timeline { max-width: 860px; margin: 0 auto; }

.day {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.section.dark .day { border-bottom-color: #2b2b2b; }
.day:last-child { border-bottom: none; }

.day-num {
  background: var(--orange);
  color: var(--white);
  border-radius: 6px;
  text-align: center;
  padding: 10px 4px;
  height: fit-content;
}
.day-num small  { display: block; font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; }
.day-num strong { display: block; font-size: 1.5rem; font-family: var(--font-heading); line-height: 1.1; }

.day-body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.day-stats { font-size: 0.78rem; color: var(--orange); font-weight: bold; letter-spacing: 0.6px; margin-bottom: 10px; }
.day-body ul { margin: 0 0 0 18px; }
.day-body li { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 5px; }
.section.dark .day-body li { color: #b0b0b0; }


/* =====================================================================
   11. CHECKLIST BOXES (Things to Carry page)
   ===================================================================== */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.checkbox-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
  border-radius: 6px;
  padding: 22px 24px 26px;
}
.checkbox-card h3 { font-size: 1.05rem; margin-bottom: 14px; }
.checkbox-card ul { list-style: none; }
.checkbox-card li {
  font-size: 0.9rem;
  padding: 5px 0 5px 24px;
  position: relative;
  color: var(--text);
  border-bottom: 1px dashed #eee;
}
.checkbox-card li:last-child { border-bottom: none; }
.checkbox-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 12px;
  border: 2px solid var(--orange);
  border-radius: 2px;
}
/* Red-cross version for the "do NOT bring" box: class="checkbox-card avoid" */
.checkbox-card.avoid { border-top-color: #c62828; }
.checkbox-card.avoid li::before { border-color: #c62828; }


/* =====================================================================
   12. INCLUDED / NOT INCLUDED LISTS
   ===================================================================== */
.inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.inc-box { border: 1px solid var(--border); border-radius: 6px; padding: 24px 26px; background: var(--white); }
.inc-box h3 { font-size: 1.1rem; margin-bottom: 14px; }
.inc-box ul { list-style: none; }
.inc-box li { font-size: 0.9rem; padding: 7px 0 7px 26px; position: relative; border-bottom: 1px solid #f0efed; }
.inc-box li:last-child { border-bottom: none; }
.inc-box li strong { display: block; }
.inc-box li span { color: var(--text-muted); font-size: 0.82rem; }

.inc-box.yes { border-top: 4px solid #2e7d32; }
.inc-box.yes li::before { content: "\2713"; position: absolute; left: 0; color: #2e7d32; font-weight: bold; }
.inc-box.no  { border-top: 4px solid #c62828; }
.inc-box.no  li::before { content: "\2715"; position: absolute; left: 0; color: #c62828; font-weight: bold; }


/* =====================================================================
   13. FACT TABLE (trek quick facts)
   ===================================================================== */
.fact-table { width: 100%; border-collapse: collapse; }
.fact-table th, .fact-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.fact-table th { width: 42%; font-family: var(--font-body); font-weight: bold; color: var(--text); }
.fact-table td { color: var(--text-muted); }
.fact-table tr:nth-child(odd) { background: var(--light-bg); }


/* =====================================================================
   14. TEAM
   ===================================================================== */
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 34px; }
.team-card { width: 210px; text-align: center; }
.team-card img { border-radius: 50%; width: 140px; height: 140px; object-fit: cover; margin: 0 auto 14px; }
.team-card h3 { font-size: 1.02rem; margin-bottom: 2px; }
.team-card p  { color: var(--text-muted); font-size: 0.85rem; }


/* =====================================================================
   15. PHOTO GALLERY
   ===================================================================== */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px; }
.gallery img { height: 190px; width: 100%; object-fit: cover; border-radius: 4px; }


/* =====================================================================
   16. CALL-TO-ACTION BAND
   ===================================================================== */
.cta-band {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 56px 20px;
}
.cta-band h2 { font-size: 1.9rem; margin-bottom: 10px; }
.cta-band p  { max-width: 560px; margin: 0 auto 22px; opacity: 0.95; }
.cta-band .btn { background: var(--black); border-color: var(--black); }
.cta-band .btn:hover { background: var(--white); color: var(--black); border-color: var(--white); }


/* =====================================================================
   17. CONTACT PAGE
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }

.contact-list { list-style: none; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-list strong { display: block; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); }
.contact-list a { color: var(--text); }
.contact-list a:hover { color: var(--orange); }

/* Simple form. It has no server behind it — see EDIT-GUIDE.md. */
.form-box { background: var(--light-bg); border: 1px solid var(--border); border-radius: 6px; padding: 28px; }
.form-box label { display: block; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; font-weight: bold; margin: 14px 0 6px; }
.form-box input, .form-box select, .form-box textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #d5d3d0;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
}
.form-box textarea { min-height: 120px; resize: vertical; }
.form-box .btn { margin-top: 20px; width: 100%; cursor: pointer; }


/* =====================================================================
   18. STEPS (How to Book)
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.step {
  background: var(--black-soft);
  border: 1px solid #2b2b2b;
  border-radius: 6px;
  padding: 22px;
}
.step-num { color: var(--orange); font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 6px; }
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p  { font-size: 0.86rem; }


/* =====================================================================
   19. BREADCRUMBS (helps SEO + helps visitors)
   ===================================================================== */
.breadcrumb { background: var(--light-bg); border-bottom: 1px solid var(--border); padding: 12px 0; font-size: 0.8rem; color: var(--text-muted); }
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { text-decoration: underline; }


/* =====================================================================
   20. BLOG
   ===================================================================== */
.post-meta { font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.article { max-width: 780px; margin: 0 auto; }
.article h2 { font-size: 1.6rem; }

/* Grey box used for "key takeaway" notes inside articles */
.note {
  background: var(--light-bg);
  border-left: 4px solid var(--orange);
  padding: 16px 20px;
  border-radius: 0 4px 4px 0;
  margin: 22px 0;
  font-size: 0.93rem;
}


/* =====================================================================
   21. FAQ (uses the built-in <details> tag — no JavaScript)
   ===================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--border); border-radius: 5px; margin-bottom: 12px; background: var(--white); }
.faq summary { padding: 15px 20px; cursor: pointer; font-weight: bold; font-size: 0.96rem; list-style: none; position: relative; padding-right: 46px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 12px; color: var(--orange); font-size: 1.35rem; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { padding: 0 20px 18px; color: var(--text-muted); font-size: 0.92rem; }


/* =====================================================================
   22. FOOTER
   ===================================================================== */
footer { background: var(--black); color: var(--white); padding: 56px 0 22px; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 34px;
}
.footer-inner h3 { color: var(--orange); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; font-family: var(--font-body); }
.footer-inner p  { color: #a9a9a9; font-size: 0.88rem; margin-bottom: 6px; }
.footer-inner a  { display: block; color: #a9a9a9; font-size: 0.88rem; margin-bottom: 9px; }
.footer-inner a:hover { color: var(--orange); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img { height: 40px; width: 40px; border-radius: 5px; object-fit: cover; }

.copyright {
  text-align: center;
  color: #7a7a7a;
  font-size: 0.78rem;
  border-top: 1px solid #262626;
  padding-top: 20px;
}
.copyright a { color: #7a7a7a; }
.copyright a:hover { color: var(--orange); }


/* =====================================================================
   23. TABLET  (screens up to 900px wide)
   ===================================================================== */
@media (max-width: 900px) {
  .split        { grid-template-columns: 1fr; gap: 26px; }
  .inc-grid     { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero h1      { font-size: 2.5rem; }
  .slide        { grid-template-columns: 1fr; }
  .slide-img img{ min-height: 220px; }
  .slide-body   { padding: 24px 22px; }
}


/* =====================================================================
   24. MOBILE  (screens up to 780px wide)  ***THE 3-DOT MENU LIVES HERE***
   ---------------------------------------------------------------------
   Below 780px the normal menu is hidden and the 3-dot button appears.
   Tapping it slides the menu open underneath the header.

   To make the menu appear on wider screens too, raise 780px.
   ===================================================================== */
@media (max-width: 780px) {

  /* show the 3-dot button */
  .nav-dots {
    display: block;
    cursor: pointer;
    padding: 8px 6px;
    user-select: none;
  }

  /* the menu is closed by default: height 0 and invisible */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    border-top: 0 solid var(--orange);
    transition: max-height 0.3s ease, opacity 0.25s ease;
  }

  .nav-links a {
    padding: 15px 22px;
    border-bottom: 1px solid #262626;
    font-size: 0.85rem;
  }
  .nav-links a.active { border-bottom-color: #262626; }

  /* WHEN THE CHECKBOX IS TICKED -> the menu opens */
  .nav-toggle:checked ~ .nav-links {
    max-height: 520px;
    opacity: 1;
    border-top-width: 2px;
  }

  /* the 3 dots turn orange while the menu is open */
  .nav-toggle:checked ~ .nav-dots span { background: var(--orange); }

  header { position: relative; }
  .header-inner { position: static; }

  .hero            { min-height: 72vh; padding: 64px 0; }
  .hero h1         { font-size: 2rem; }
  .hero p          { font-size: 0.96rem; }
  .hero-small      { min-height: auto; padding: 52px 0; }
  .hero-small h1   { font-size: 1.7rem; }
  .hero-facts div  { min-width: 44%; padding: 9px 12px; }

  .section         { padding: 52px 0; }
  .section-head h2 { font-size: 1.7rem; }
  .split h2        { font-size: 1.6rem; }

  .day             { grid-template-columns: 58px 1fr; gap: 15px; }
  .day-num strong  { font-size: 1.2rem; }

  .footer-inner    { grid-template-columns: 1fr; gap: 24px; }
  .btn             { width: 100%; text-align: center; }
  .hero-buttons    { flex-direction: column; }
  .card img        { height: 190px; }
  .brand-text      { font-size: 1.05rem; }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.65rem; }
  .brand-tag { display: none; }
}


/* =====================================================================
   25. PRINT (so visitors can print the itinerary cleanly)
   ===================================================================== */
@media print {
  header, footer, .cta-band, .hero-buttons, .nav-dots { display: none; }
  .hero { min-height: auto; color: #000; background: none; padding: 20px 0; }
  .hero::before { display: none; }
  .hero h1, .hero p { color: #000; text-shadow: none; }
  body { font-size: 12px; }
}
