/* =========================================================
   OVERHAUL TOURISM — ISLAND HOPPING
   Brand palette: White / #f7ff18 / Ash
   Black is used only for the requested image overlay.
   ========================================================= */

:root {
  --yellow: #f7ff18;
  --white: #ffffff;
  --ash: #777777;
  --ash-dark: #555555;
  --overlay: rgba(0, 0, 0, 0.20);
  --overlay-heavy: rgba(0, 0, 0, 0.48);
  --max-width: 1240px;
  --header-height: 96px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ash-dark);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  width: min(calc(100% - 80px), var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
}

.ash-text {
  color: var(--ash);
}

/* ================= HEADER ================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  border-bottom: 1px solid rgba(119, 119, 119, 0.18);
  transition: 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.header-inner {
  width: min(calc(100% - 60px), 1380px);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
  height: auto;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  height: 100%;
}

.desktop-nav > a,
.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ash-dark);
  font: 600 14px/1 "Montserrat", Arial, sans-serif;
  cursor: pointer;
  transition: 0.25s ease;
}

.desktop-nav > a:hover,
.nav-trigger:hover {
  color: var(--yellow);
}

.nav-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  width: 240px;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(119, 119, 119, 0.18);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.22s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  color: var(--ash-dark);
  font-size: 13px;
  border-left: 2px solid transparent;
}

.dropdown-menu a:hover {
  color: var(--yellow);
  border-left-color: var(--yellow);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px auto;
  background: var(--yellow);
  border-radius: 4px;
}

/* ================= MOBILE MENU ================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-top {
  width: calc(100% - 44px);
  min-height: 96px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(119, 119, 119, 0.16);
}

.mobile-menu-top .brand {
  width: 190px;
}

.menu-close {
  border: 0;
  background: transparent;
  color: var(--yellow);
  font-size: 50px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav {
  width: calc(100% - 44px);
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav > a,
.mobile-nav-heading {
  padding: 15px 0;
  color: var(--ash-dark);
  font: 500 24px/1.2 "Montserrat", Arial, sans-serif;
  text-align: left;
  border: 0;
  border-bottom: 1px solid rgba(119, 119, 119, 0.12);
  background: transparent;
  cursor: pointer;
}

.mobile-nav > a:hover,
.mobile-nav-heading:hover {
  color: var(--yellow);
}

.mobile-nav-heading {
  display: flex;
  justify-content: space-between;
}

.mobile-subnav {
  display: none;
  padding: 5px 0 10px 18px;
}

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

.mobile-subnav a {
  display: block;
  padding: 9px 0;
  color: var(--ash);
  font-size: 14px;
}

.mobile-subnav a:hover {
  color: var(--yellow);
}

.mobile-menu-actions {
  width: calc(100% - 44px);
  margin: 35px auto 60px;
  display: grid;
  gap: 12px;
}

/* ================= GENERAL BUTTONS ================= */

.solid-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: 0.25s ease;
}

.solid-button {
  background: var(--yellow);
  color: var(--ash-dark);
  border: 1px solid var(--yellow);
}

.solid-button:hover {
  background: var(--white);
  color: var(--ash-dark);
}

.outline-button {
  color: var(--white);
  border: 1px solid var(--yellow);
  background: transparent;
}

.outline-button:hover {
  background: var(--yellow);
  color: var(--ash-dark);
}

/* ================= TYPE ================= */

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(50px, 8vw, 106px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 22px;
  color: var(--ash-dark);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

h2 span,
h1 span {
  color: var(--yellow);
}

h3 {
  margin-bottom: 10px;
  font-size: 25px;
  color: var(--ash-dark);
}

p {
  font-size: 15px;
}

.lead {
  font-size: 21px;
  line-height: 1.6;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

/* ================= HERO / IMAGE SECTIONS ================= */

.image-section {
  position: relative;
  min-height: 700px;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.hero .section-overlay,
.final-cta .section-overlay {
  background: var(--overlay-heavy);
}

.odd-section .section-content,
.odd-section .container,
.hero-content,
.cta-inner {
  position: relative;
  z-index: 2;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero-content {
  padding-top: 40px;
}

.hero-lead {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  width: 24px;
  height: 42px;
  border: 1px solid var(--yellow);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  position: absolute;
  left: 50%;
  top: 7px;
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--yellow);
  transform: translateX(-50%);
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  70% { transform: translate(-50%, 14px); opacity: 0; }
}

/* ================= CONTENT SECTIONS ================= */

.content-section {
  padding: 105px 0;
  background: var(--white);
}

.intro-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.intro-section p {
  max-width: 820px;
}

.intro-section .lead {
  color: var(--ash-dark);
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.copy-column {
  max-width: 700px;
}

/* ================= CAROUSELS ================= */

.carousel-section {
  min-height: 760px;
  padding: 110px 0 95px;
}

.carousel-section .section-heading {
  color: var(--white);
}

.carousel-section h2 {
  color: var(--white);
}

.carousel-section .section-heading > p:last-child {
  color: var(--white);
  opacity: 0.9;
}

.carousel {
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 18px;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius);
  scroll-snap-align: center;
  background: var(--ash-dark);
}

.slide img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.slide:hover img {
  transform: scale(1.04);
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.70), rgba(0,0,0,0.05) 65%);
}

.slide-content {
  position: absolute;
  z-index: 2;
  left: 42px;
  right: 42px;
  bottom: 38px;
  color: var(--white);
}

.slide-content h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
}

.slide-content p {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-size: 15px;
}

.slide-number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  background: rgba(0,0,0,0.22);
  color: var(--yellow);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.25s ease;
}

.carousel-arrow:hover {
  background: var(--yellow);
  color: var(--ash-dark);
}

.carousel-arrow.prev {
  left: 18px;
}

.carousel-arrow.next {
  right: 18px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.carousel-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--yellow);
}

/* ================= FEATURES ================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 34px 28px;
  border: 1px solid rgba(119, 119, 119, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  transition: 0.3s ease;
}

.feature-card:hover {
  border-color: var(--yellow);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
}

.feature-card p {
  margin-bottom: 0;
}

/* ================= FINAL CTA ================= */

.final-cta {
  min-height: 650px;
  display: flex;
  align-items: center;
  text-align: center;
}

.cta-inner {
  max-width: 900px;
  margin: auto;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(42px, 7vw, 80px);
}

.cta-inner p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--white);
  font-size: 18px;
}

/* ================= FOOTER ================= */

.site-footer {
  background: var(--yellow);
  border-top: none;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 55px;
  text-align: center;
  justify-item: center;
}
.footer-brand-column{
    width: 100%;
}

.footer-links{
    width: min(600px, 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    text-align: center;
}

.footer-brand {
  width: 190px;
  margin: 0 auto 18px;
}

.footer-grid h4 {
  margin-bottom: 16px;
  color: var(--ash-dark);
}

.footer-grid a:not(.brand) {
  display: block;
  margin-bottom: 8px;
  color: var(--ash);
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(119, 119, 119, 0.14);
  padding: 18px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--ash);
  font-size: 11px;
}

/* ================= WHATSAPP ================= */

.whatsapp-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ash-dark);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

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

@media (max-width: 1000px) {
  :root {
    --header-height: 100px;
  }

  .container {
    width: min(calc(100% - 48px), var(--max-width));
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .image-section {
    background-attachment: scroll;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 36px);
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .brand {
    width: 120px;
    height: 70px;
  }

  .mobile-menu-top .brand {
    width: 165px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 78px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .lead {
    font-size: 17px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 70px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions a {
    width: 100%;
  }

  .content-section {
    padding: 78px 0;
  }

  .intro-section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .carousel-section {
    min-height: 690px;
    padding: 78px 0;
  }

  .slide,
  .slide img {
    min-height: 440px;
  }

  .slide-content {
    left: 24px;
    right: 24px;
    bottom: 26px;
  }

  .slide-content h3 {
    font-size: 31px;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 29px;
  }

  .carousel-arrow.prev {
    left: 10px;
  }

  .carousel-arrow.next {
    right: 10px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .final-cta {
    min-height: 620px;
  }
  
  .footer-links {
      grid-template-columns: 1fr 1fr;
      gap: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom .container {
    display: grid;
    }

  .whatsapp-button {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* Header navigation: Packages and Services are text links,
   not visual buttons. The tiny chevron only indicates a dropdown. */
.nav-trigger span {
  color: var(--ash);
  font-size: 12px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-trigger span,
.nav-dropdown:focus-within .nav-trigger span {
  color: var(--yellow);
  transform: translateY(1px);
}


.nav-dropdown.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
