/* ============================================================
   Blue Paradise Yachts — styles.css
   Palette: deep navy / gold / turquoise (drawn from brand flyer)
   ============================================================ */

:root {
  --navy:        #0a1f3d;
  --navy-deep:   #061429;
  --navy-soft:   #15315a;
  --gold:        #c9a14a;
  --gold-bright: #e6c168;
  --turq:        #3dd0e6;
  --turq-deep:   #1ba8be;
  --cream:       #f5efe2;
  --ink:         #1a1a1a;
  --muted:       #6c7a8a;
  --line:        rgba(10,31,61,0.10);
  --line-dark:   rgba(255,255,255,0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 14px 40px rgba(10,31,61,0.18);
  --shadow-lg:   0 30px 80px rgba(10,31,61,0.28);

  --container:   1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 31, 61, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
  transition: background .25s ease, padding .25s ease;
}
.nav.is-scrolled { background: rgba(6, 20, 41, 0.96); }

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--gold);
  flex-shrink: 0;
}
.nav__mark { display: inline-flex; }
.nav__wordmark {
  display: flex; flex-direction: column; line-height: 1;
  color: var(--cream);
}
.nav__wordmark-top {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  letter-spacing: .01em;
}
.nav__wordmark-bot {
  font-size: 9px; font-weight: 600;
  letter-spacing: .22em;
  color: var(--gold);
  margin-top: 4px;
}

.nav__menu {
  display: flex; align-items: center; gap: 28px;
  margin-left: auto;
}
.nav__menu a:not(.btn) {
  color: rgba(245, 239, 226, 0.75);
  font-size: 14px; font-weight: 500;
  transition: color .2s ease;
  position: relative;
}
.nav__menu a:not(.btn):hover { color: var(--gold-bright); }

.nav__lang {
  display: flex; align-items: center; gap: 6px;
  color: rgba(245, 239, 226, 0.4);
  font-size: 13px; font-weight: 600;
}
.lang-btn {
  color: rgba(245, 239, 226, 0.55);
  font-size: 13px; font-weight: 600;
  padding: 4px 6px;
  transition: color .2s ease;
}
.lang-btn:hover { color: var(--cream); }
.lang-btn.is-active { color: var(--gold); }

.nav__cta { font-size: 13px; padding: 9px 16px; }

.nav__toggle {
  display: none;
  width: 36px; height: 36px;
  margin-left: auto;
  position: relative;
}
.nav__toggle span {
  position: absolute; left: 8px; right: 8px;
  height: 2px; background: var(--cream);
  transition: transform .25s ease, opacity .25s ease, top .25s ease;
}
.nav__toggle span:nth-child(1) { top: 11px; }
.nav__toggle span:nth-child(2) { top: 17px; }
.nav__toggle span:nth-child(3) { top: 23px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 30px; font-size: 15px; }

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32);
}
.btn--whatsapp:hover { background: #20bf5b; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(201, 161, 74, 0.35);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201, 161, 74, 0.5); }

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}
.hero__bg {
  position: absolute; inset: 0;
  background-color: var(--navy);
  background-image:
    linear-gradient(160deg, rgba(6,20,41,0.55) 0%, rgba(10,31,61,0.35) 40%, rgba(27,168,190,0.55) 100%),
    url('../images/hero.webp');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  transform: scale(1.05);
  filter: brightness(.85) saturate(1.05);
}
/* Fallback when no hero.jpg yet — show animated turquoise gradient */
.hero__bg.is-fallback {
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(61,208,230,0.45) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(201,161,74,0.20) 0%, transparent 50%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, var(--turq-deep) 100%);
  filter: none;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,31,61,0.45) 0%, rgba(10,31,61,0.25) 40%, rgba(10,31,61,0.75) 100%);
}

.hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 24px 100px;
  width: 100%;
}

.hero__eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: .28em;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -.01em;
  max-width: 880px;
  margin-bottom: 28px;
}
.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  max-width: 620px;
  color: rgba(245, 239, 226, 0.85);
  margin-bottom: 40px;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 70px;
}
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 50px;
  list-style: none;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 700px;
}
.hero__meta li { display: flex; flex-direction: column; gap: 4px; }
.hero__meta strong {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  color: var(--gold-bright);
}
.hero__meta span {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245, 239, 226, 0.65);
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding: 110px 0;
}
.section--dark {
  background: var(--navy);
  color: var(--cream);
}
.section--tint {
  background: linear-gradient(180deg, var(--cream) 0%, #ebe5d6 100%);
}

.eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: .28em;
  color: var(--gold);
  margin-bottom: 18px;
}
.section--dark .eyebrow { color: var(--gold-bright); }

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.1;
  letter-spacing: -.01em;
  max-width: 760px;
  margin-bottom: 24px;
}
.section__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 60px;
}
.section--dark .section__lead { color: rgba(245, 239, 226, 0.75); }

.section__note {
  margin-top: 40px;
  font-size: 14px;
  color: rgba(245, 239, 226, 0.6);
  font-style: italic;
}

/* ============================================================
   EXPERIENCE / FEATURES
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 20px;
}
.feature {
  padding: 32px 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--turq) 0%, var(--turq-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.feature p { color: var(--muted); font-size: 15px; }

/* ============================================================
   INCLUDED
   ============================================================ */
.included {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.included__item {
  display: flex; align-items: center; gap: 18px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}
.included__num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  flex-shrink: 0;
}
.included__item span:last-child {
  font-size: 15px; font-weight: 500;
  color: rgba(245,239,226,0.9);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.price {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.price--featured {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  border: none;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.price--featured:hover { transform: scale(1.04) translateY(-4px); }

.price__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--navy-deep);
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em;
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.price__head { margin-bottom: 28px; }
.price__hrs {
  font-family: var(--font-display);
  font-size: 60px; font-weight: 700;
  line-height: 1;
  color: var(--navy);
}
.price--featured .price__hrs { color: var(--gold-bright); }
.price__hrs small { font-size: 18px; color: var(--muted); font-weight: 500; }
.price--featured .price__hrs small { color: rgba(245,239,226,0.7); }
.price__tag {
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.price--featured .price__tag { color: rgba(245,239,226,0.65); }

.price__amount {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1;
}
.price--featured .price__amount { color: var(--cream); }
.price__amount small { font-size: 14px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.price--featured .price__amount small { color: rgba(245,239,226,0.6); }
.price__currency { font-size: 24px; vertical-align: top; margin-right: 2px; }

.price__list {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.price__list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.price__list li:last-child { border-bottom: none; }
.price__list li::before {
  content: "✓";
  position: absolute; left: 0; top: 10px;
  color: var(--turq-deep);
  font-weight: 700;
}
.price--featured .price__list li { color: rgba(245,239,226,0.85); border-color: var(--line-dark); }
.price--featured .price__list li::before { color: var(--gold-bright); }

.price__cta { width: 100%; }

/* ============================================================
   ADD-ON (JET SKI)
   ============================================================ */
.addon {
  margin-top: 50px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(61,208,230,0.10) 0%, rgba(201,161,74,0.10) 100%);
  border: 1px solid rgba(61,208,230,0.25);
  border-radius: var(--radius);
}
.addon__icon { color: var(--turq-deep); }
.addon__body h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.addon__body p { color: var(--muted); font-size: 14px; }
.addon__price { text-align: right; }
.addon__amount {
  display: block;
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  color: var(--navy);
}
.addon__amount small { font-size: 14px; color: var(--muted); font-weight: 500; }
.addon__label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin-top: 20px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--navy-soft);
  padding: 0;
}
.gallery__item--lg { grid-column: span 2; grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,31,61,0.5) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item[data-placeholder="true"] { cursor: default; }
.gallery__item[data-placeholder="true"]:hover img { transform: none; }
.gallery__item[data-placeholder="true"]::after { display: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__channels {
  display: flex; flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}
.contact__channel {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--cream);
  transition: background .2s ease, transform .2s ease;
}
a.contact__channel:hover { background: rgba(255,255,255,0.08); transform: translateX(4px); }
.contact__channel svg { color: var(--gold-bright); flex-shrink: 0; }
.contact__channel strong { display: block; font-size: 13px; font-weight: 600; color: rgba(245,239,226,0.6); text-transform: uppercase; letter-spacing: .1em; }
.contact__channel span { font-size: 17px; font-weight: 500; color: var(--cream); }

.contact__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.contact__form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px;
  color: rgba(245,239,226,0.75);
  font-weight: 500;
  letter-spacing: .03em;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--cream);
  transition: border-color .2s ease, background .2s ease;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.10);
}
.contact__form select option { background: var(--navy-deep); color: var(--cream); }
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.contact__checkbox {
  flex-direction: row !important;
  align-items: center;
  gap: 10px !important;
  cursor: pointer;
  font-size: 14px !important;
  color: var(--cream) !important;
}
.contact__checkbox input { width: 18px; height: 18px; padding: 0; accent-color: var(--gold); }
.contact__hint {
  font-size: 12px;
  color: rgba(245,239,226,0.5);
  text-align: center;
  margin-top: -6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(245,239,226,0.7);
  padding: 50px 0;
  border-top: 1px solid var(--line-dark);
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--cream);
}
.footer__sub { font-size: 13px; margin-top: 2px; }
.footer__copy { font-size: 13px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(6,20,41,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 100%; max-height: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  color: var(--cream);
  font-size: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.lightbox__close { top: 24px; right: 24px; width: 48px; height: 48px; font-size: 28px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,0.18); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-deep);
    padding: 8px 0 20px;
    border-bottom: 1px solid var(--line-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav__menu.is-open { max-height: 80vh; overflow: auto; }
  .nav__menu a:not(.btn) {
    padding: 14px 24px;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav__lang { padding: 14px 24px; border-bottom: 1px solid var(--line-dark); justify-content: center; }
  .nav__cta { margin: 16px 24px 0; }

  .hero__inner { padding: 130px 24px 80px; }
  .hero__meta { gap: 30px; padding-top: 28px; }
  .hero__meta strong { font-size: 20px; }

  .section { padding: 80px 0; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery__item--lg { grid-column: span 2; grid-row: span 1; }

  .contact {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact__row { grid-template-columns: 1fr 1fr; }

  .addon {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
    padding: 28px 24px;
  }
  .addon__price { text-align: center; }

  .price--featured { transform: none; }
  .price--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .hero__meta { flex-direction: column; gap: 20px; }
  .contact__form { padding: 24px; }
  .contact__row { grid-template-columns: 1fr; }
  .gallery { grid-auto-rows: 140px; }
  .lightbox__close { top: 12px; right: 12px; }
  .lightbox__nav { width: 44px; height: 44px; font-size: 32px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

/* ============================================================
   LANGUAGE TOGGLE BEHAVIOR
   ============================================================ */
html[lang="es"] [data-es] { /* JS swaps textContent */ }
