/* Roatan Tours with Elvis - Bright Tropical Theme
   Light background, ocean + jungle accents, bold buttons.
*/

:root{
  --text: #0b1b1f;
  --muted: rgba(11,27,31,.70);

  /* Tropical accents */
  --ocean: #00b7ff;
  --lagoon: #18e9c7;
  --jungle: #2eea61;
  --mango: #ffb703;
  --coral: #ff4d6d;
  --purple: #7c5cff;

  /* Surfaces */
  --bg: #f6fffe;
  --surface: rgba(255,255,255,.78);
  --surface-2: rgba(255,255,255,.92);
  --border: rgba(11,27,31,.12);

  --ring: rgba(0,183,255,.20);
  --shadow: 0 16px 44px rgba(11,27,31,.12);

  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --pad: 20px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.55;

  /* Bright tropical background */
  background:
    radial-gradient(900px 700px at 10% 0%, rgba(0,183,255,.22), transparent 60%),
    radial-gradient(900px 700px at 90% 10%, rgba(46,234,97,.18), transparent 62%),
    radial-gradient(900px 700px at 50% 0%, rgba(255,183,3,.18), transparent 60%),
    linear-gradient(180deg, #f6fffe 0%, #f2fff8 45%, #ffffff 100%);
}

a{ color: inherit; text-decoration: none; }
a:hover{ color: var(--ocean); }

.container{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Header / Nav */
header.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11,27,31,.10);
}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left: var(--pad); top: var(--pad); width:auto; height:auto; padding: 10px 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  z-index: 9999;
}

.navbar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 240px;
}
.brand-mark{
  width: 40px; height: 40px;
  border-radius: 14px;
  background:
    radial-gradient(10px 10px at 30% 25%, rgba(255,255,255,.85), transparent 60%),
    linear-gradient(135deg, var(--ocean), var(--lagoon) 45%, var(--jungle));
  box-shadow: 0 14px 28px rgba(11,27,31,.12);
}
.brand-title{
  font-weight: 950;
  letter-spacing: .2px;
  line-height: 1.05;
}
.brand-sub{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav-links a{
  font-weight: 800;
  color: rgba(11,27,31,.86);
  padding: 10px 10px;
  border-radius: 12px;
}
.nav-links a:hover{
  background: rgba(0,183,255,.10);
}
.nav-links a[aria-current="page"]{
  background: rgba(24,233,199,.20);
  border: 1px solid rgba(24,233,199,.35);
}

.nav-cta{
  display:flex;
  gap: 10px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  height: 46px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid rgba(11,27,31,.14);
  background: rgba(255,255,255,.92);
  color: var(--text);
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(11,27,31,.10);
}
.btn:hover{
  border-color: rgba(0,183,255,.45);
  box-shadow: 0 16px 36px rgba(11,27,31,.14);
}

.btn.primary{
  border-color: rgba(0,0,0,.10);
  color: #062026;
  background: linear-gradient(135deg, var(--ocean), var(--lagoon) 50%, var(--jungle));
}
.btn.primary:hover{ filter: brightness(1.02); }

.btn.sun{
  border-color: rgba(0,0,0,.08);
  color: #1a1200;
  background: linear-gradient(135deg, var(--mango), #ffe08a);
}
.btn.sun:hover{ filter: brightness(1.02); }

.btn.coral{
  border-color: rgba(0,0,0,.08);
  color: #1a0010;
  background: linear-gradient(135deg, var(--coral), #ff8fb3);
}

.btn.small{ padding: 10px 12px; border-radius: 12px; font-weight: 900;
  font-size: 16px; }

.mobile-toggle{
  display:none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(11,27,31,.14);
  background: rgba(255,255,255,.92);
  color: var(--text);
  font-weight: 950;
}

/* Sections */
section{ padding: 28px 0; }

.section-title{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.section-title h2{
  margin: 0;
  font-size: 24px;
  letter-spacing: -.2px;
}
.section-title .hint{
  color: var(--muted);
  font-size: 13px;
}

/* HERO (full width image) */
.hero{
  padding: 0;
}
.hero-wrap{
  border-bottom: 1px solid rgba(11,27,31,.08);
  background: white;
}
.hero-media{
  width: 100%;
  height: 380px; /* crop height */
  overflow: hidden;
}
.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media .tag{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(11,27,31,.12);
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 10px 22px rgba(11,27,31,.12);
}
.hero-media .tag small{
  display:block;
  font-weight: 800;
  color: rgba(11,27,31,.70);
}

.hero-content{
  padding: 26px 0 8px;
}
.hero-content h1{
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.6px;
}
.hero-content p{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  max-width: 72ch;
}
.badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}
.badge{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,27,31,.12);
  background: rgba(255,255,255,.85);
  color: rgba(11,27,31,.80);
  font-weight: 900;
  font-size: 16px;
  font-size: 12px;
}

/* Cards & grids */
.grid{ display:grid; gap: 16px; }
.grid.cols-4{ grid-template-columns: repeat(4, 1fr); }
.grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
.grid.cols-2{ grid-template-columns: repeat(2, 1fr); }

.card{
  background: var(--surface-2);
  border: 1px solid rgba(11,27,31,.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3{ margin: 0 0 8px; font-size: 18px; }
.card p{ margin: 0; color: var(--muted); }
.card:hover{
  border-color: rgba(0,183,255,.38);
  transform: translateY(-1px);
  transition: transform .12s ease, border-color .12s ease;
}

.meta{
  margin-top: 10px;
  font-size: 13px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.meta span{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,27,31,.12);
  background: rgba(0,183,255,.08);
  color: rgba(11,27,31,.78);
  font-weight: 850;
}

.list{ margin: 10px 0 0; padding-left: 18px; }
.list li{ margin: 6px 0; color: rgba(11,27,31,.86); }

.notice{
  height: 46px;
  padding: 0 20px;
  border-radius: 16px;
  background: rgba(255,183,3,.22);
  border: 1px solid rgba(255,183,3,.28);
  color: rgba(11,27,31,.88);
  font-weight: 750;
}

/* Reviews */
.review{
  position: relative;
}
.review:before{
  content: "“";
  position: absolute;
  top: -12px; left: 14px;
  font-size: 56px;
  line-height: 1;
  color: rgba(0,183,255,.22);
}

/* Footer */
footer.site-footer{
  margin-top: 34px;
  border-top: 1px solid rgba(11,27,31,.10);
  background: white;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  padding: 22px 0;
}
.footer-note{ color: var(--muted); font-size: 13px; margin: 8px 0 0; }

.footer-links{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
  justify-content:flex-end;
}
.footer-links a{
  color: rgba(11,27,31,.86);
  font-weight: 850;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.footer-links a:hover{
  background: rgba(24,233,199,.18);
  border-color: rgba(11,27,31,.10);
}

.socials{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11,27,31,.12);
  background: rgba(255,255,255,.92);
  font-weight: 900;
  font-size: 16px;
  color: rgba(11,27,31,.84);
}
.pill:hover{
  border-color: rgba(0,183,255,.40);
  color: var(--ocean);
}

/* Responsive */
@media (max-width: 980px){
  .grid.cols-4{ grid-template-columns: 1fr 1fr; }
  .grid.cols-3{ grid-template-columns: 1fr; }
  .grid.cols-2{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-links{ justify-content:flex-start; }
  .hero-media{ min-height: 300px; }
}
@media (max-width: 760px){
  .nav-links, .nav-cta{ display:none; }
  .mobile-toggle{ display:inline-flex; }

  /* Mobile nav layout: keep everything aligned and full-width when opened */
  .navbar{ flex-wrap: wrap; align-items: center; }
  .brand{ min-width: 0; flex: 1 1 auto; }
  .mobile-toggle{ margin-left: auto; }
  .brand{ order: 1; }
  .mobile-toggle{ order: 2; }
  .nav-links{ order: 3; }
  .nav-cta{ order: 4; }
  header.site-header.open .nav-links,
  header.site-header.open .nav-cta{
    display:flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 0 16px;
    width: 100%;
  }
  header.site-header.open .nav-links{ margin-top: 10px; }
  header.site-header.open .nav-cta a.btn{ width: 100%; }
  header.site-header.open .nav-links a{ text-align: left; }
  header.site-header.open .nav-links a{ padding: 12px 12px; }
}

/* Experience page image blocks */
.img-block{
  height: 240px;
  border-radius: 18px;
  border: 1px solid rgba(11,27,31,.10);
  background:
    radial-gradient(220px 160px at 20% 25%, rgba(0,183,255,.35), transparent 60%),
    radial-gradient(220px 160px at 70% 35%, rgba(46,234,97,.26), transparent 70%),
    radial-gradient(240px 170px at 55% 85%, rgba(255,183,3,.26), transparent 70%),
    rgba(255,255,255,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight: 950;
  color: rgba(11,27,31,.70);
  box-shadow: 0 14px 34px rgba(11,27,31,.10);
}

.img-block img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}


/* Modern form styling */
.form-modern{
  display: grid;
  gap: 14px;
}

.form-modern .row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-modern .field label{
  display:block;
  font-weight: 900;
  font-size: 16px;
  font-size: 13px;
  color: rgba(11,27,31,.70);
  margin: 0 0 8px;
}

.form-modern .field input,
.form-modern .field select,
.form-modern .field textarea{
  width: 100%;
  height: 46px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid rgba(11,27,31,.14);
  background: rgba(255,255,255,.95);
  color: rgba(11,27,31,.92);
  box-shadow: 0 10px 24px rgba(11,27,31,.08);
  outline: none;
}

.form-modern .field textarea{
  min-height: 120px;
  resize: vertical;
}

.form-modern .field input:focus,
.form-modern .field select:focus,
.form-modern .field textarea:focus{
  border-color: rgba(0,183,255,.55);
  box-shadow: 0 0 0 4px rgba(0,183,255,.18), 0 12px 28px rgba(11,27,31,.10);
}

.form-modern .field input[readonly]{
  background: rgba(0,183,255,.06);
}

@media (max-width: 980px){
  .form-modern .row{ grid-template-columns: 1fr; }
}

.hero-content.centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.about-photo img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 18px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FAQ – Premium Accordion
   ========================= */

.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

/* Headline under hero */
.faq-head{
  text-align: center;
  margin-bottom: 18px;
}

.page-title{
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin: 0;
  font-weight: 950;
  letter-spacing: -.3px;
}

.page-subtitle{
  margin: 10px auto 0;
  max-width: 720px;
  color: rgba(11,27,31,.72);
  line-height: 1.6;
  font-size: 1.05rem;
}

/* Card style */
.faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  overflow: hidden;
  margin: 12px 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-weight: 850;
  font-size: 1.05rem;
  line-height: 1.25;
}

.faq-question:hover {
  background: rgba(0,0,0,.03);
}

.faq-question:focus-visible {
  outline: 3px solid rgba(0, 120, 255, .35);
  outline-offset: 2px;
}

.faq-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.06);
}

.faq-icon i {
  transition: transform .2s ease;
}

.faq-item.is-open .faq-icon i {
  transform: rotate(180deg);
}

/* Smooth open animation (no snap) */
.faq-answer{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.faq-answer > *{
  overflow: hidden;
}

.faq-item.is-open .faq-answer{
  grid-template-rows: 1fr;
}

/* Inner content fades/slides in */
.faq-answer-inner{
  padding: 0 18px 0 18px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, padding .2s ease;
  color: rgba(0,0,0,.78);
  line-height: 1.6;
  font-size: 1rem;
}

.faq-item.is-open .faq-answer-inner{
  padding: 0 18px 18px 18px;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer-inner p{
  margin: 10px 0 0 0;
}


/* Tour page CTA buttons only (Book Now + FAQs under hero) */
.hero-content > div .btn {
  min-width: 180px;
}


/* Money input ($ prefix) */
.money-input{
  position: relative;
}
.money-prefix{
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: rgba(11,27,31,.75);
  pointer-events: none;
}
.money-input input{
  padding-left: 44px;
}

/* Checkout payment option radio pills */
.radio-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-pill{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.radio-pill input[type="radio"]{
  margin: 0;
}


/* Force checkout radio size (override) */
.form-modern .field input[type="radio"]{
  width: 11px !important;
  height: 11px !important;
  padding: 0 !important;
  box-shadow: none !important;
}


/* Tour price note (opt-in) */
.price-note{
  display: inline-block;
}
.price-note::after{
  content: "Kids 4 and under are FREE";
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(11,27,31,.70);
}
