/* =========================
   Roxi's Caribbean Flavor
   styles.css
   - Mobile-first
   - Tropical palette inspired by your reference image
   ========================= */

:root{
  --bg: #FFF7E8;            /* crema */
  --card: rgba(255,255,255,0.86);
  --text: #1f2a33;
  --muted: rgba(31,42,51,0.75);

  --turq: #66D6DF;          /* turquesa suave */
  --turq-2: #43BFD0;
  --green: #2E8B57;         /* acento tropical */
  --sun: #F2C94C;           /* amarillo cálido */
  --coral: #FF7A5A;         /* coral/naranja */
  --shadow: 0 18px 40px rgba(0,0,0,0.12);

  --radius: 18px;
  --radius-lg: 22px;

  --container: 1100px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; }
.container{
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 9999;
}
.skip-link:focus{ left: 12px; }

/* =========================
   Header / Navigation
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 232, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 180px;
}
.brand__logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,0.55);
  padding: 6px;
}
.brand__name{
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 18px;
}

.nav{
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.75);
  border-radius: 14px;
  cursor: pointer;
}
.nav__burger{
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  border-radius: 99px;
}
.nav__burger::before,
.nav__burger::after{
  content:"";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
}
.nav__burger::before{ top: -6px; }
.nav__burger::after{ top: 6px; }

.nav__list{
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 4%;
  top: 64px;
  width: min(92vw, 380px);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;

  transform-origin: top right;
  transform: scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: 180ms ease;
}
.nav__list.is-open{
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.nav__list li{ border-bottom: 1px solid rgba(0,0,0,0.06); }
.nav__list li:last-child{ border-bottom: 0; }

.nav__link{
  display: block;
  padding: 14px 14px;
  text-decoration: none;
  font-weight: 700;
}
.nav__link:hover{
  background: rgba(102,214,223,0.16);
}
.nav__link--cta{
  background: rgba(46,139,87,0.14);
}

/* Desktop nav */
@media (min-width: 980px){
  .nav__toggle{ display: none; }
  .nav__list{
    position: static;
    width: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    gap: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav__list li{ border: 0; }
  .nav__link{
    padding: 10px 12px;
    border-radius: 14px;
    font-weight: 800;
  }
  .nav__link--cta{
    background: linear-gradient(135deg, rgba(46,139,87,0.18), rgba(242,201,76,0.18));
    border: 1px solid rgba(0,0,0,0.08);
  }
}

/* Language toggle */
.lang{ display: flex; align-items: center; }
.lang__btn{
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.75);
  border-radius: 999px;
  padding: 6px;
  cursor: pointer;
}
.lang__pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.6px;
  background: rgba(102,214,223,0.18);
}
/* =========================
   Hero
   ========================= */
.hero__bg{
  position: absolute;
  inset: 0;
  background-image: url("assets/img/hero-bg.png");
  background-size: cover;       /* cubre todo y elimina la franja blanca */
  background-position: center;  /* centra */
  background-repeat: no-repeat;
  background-color: #0ea5a4;    /* respaldo (nunca blanco) */
  filter: saturate(1.05);
}
.hero__bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255,247,232,0.25),
      rgba(255,247,232,0.55)
    ),
    url("assets/img/hero-bg.png") center/cover no-repeat;
  filter: saturate(1.15) brightness(1.05);
}


.hero__content{
  position: relative;
  display: grid;
  gap: 16px;
  align-items: start;
}

.hero__card{
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px;
}
.badge{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 800;
  font-size: 13px;
  color: rgba(31,42,51,0.85);
  background: rgba(102,214,223,0.16);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 8px 10px;
  border-radius: 999px;
}

.hero__title{
  font-family: "Baloo 2", system-ui, sans-serif;
  margin: 10px 0 6px;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: 0.2px;
}

.hero__subtitle{
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 55ch;
}

.hero__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.meta{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(31,42,51,0.75);
  font-weight: 700;
  font-size: 14px;
}
.meta__dot{ opacity: 0.55; }

.hero__side{
  display: grid;
  gap: 14px;
}

@media (min-width: 980px){
  .hero__content{
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: stretch;
  }
  .hero__title{ font-size: 46px; }
}

.card{
  background: var(--card);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
}
.card--soft{
  background: rgba(255,255,255,0.78);
}

.hero__photo img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}
@media (min-width: 980px){
  .hero__photo img{ height: 320px; }
}

.note__title{
  margin: 0 0 6px;
  font-weight: 900;
}
.note__text{
  margin: 0;
  color: var(--muted);
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 120ms ease, filter 120ms ease;
  user-select: none;
}
.btn:active{ transform: translateY(1px); }
.btn:hover{ filter: brightness(1.02); }

.btn--primary{
  background: linear-gradient(135deg, var(--green), var(--turq-2));
  color: white;
  border-color: rgba(0,0,0,0.06);
}
.btn--secondary{
  background: linear-gradient(135deg, rgba(242,201,76,0.95), rgba(255,122,90,0.95));
  color: #1a1a1a;
}
.btn--ghost{
  background: rgba(255,255,255,0.7);
}
.btn--full{ width: 100%; }

/* =========================
   Sections
   ========================= */
.section{
  padding: 44px 0;
}
.section--alt{
  background:
    radial-gradient(900px 500px at 20% -10%, rgba(102,214,223,0.18), transparent 60%),
    radial-gradient(700px 400px at 90% 20%, rgba(242,201,76,0.16), transparent 60%),
    rgba(255,255,255,0.35);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.section__head{
  margin-bottom: 16px;
}
.section__title{
  font-family: "Baloo 2", system-ui, sans-serif;
  margin: 0 0 6px;
  font-size: 30px;
}
.section__subtitle{
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

/* Menu grid */
.menu-grid{
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 14px;
}
@media (min-width: 720px){
  .menu-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px){
  .menu-grid{ grid-template-columns: repeat(4, 1fr); }
}

.dish{
  padding: 0;
  overflow: hidden;
}
.dish img{
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.dish__body{ padding: 12px; }
.dish__title{
  margin: 0 0 4px;
  font-weight: 900;
}
.dish__desc{
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.menu-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Location */
.location{
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 980px){
  .location{ grid-template-columns: 0.9fr 1.1fr; align-items: stretch; }
}
.card__title{
  margin: 0 0 8px;
  font-weight: 900;
}
.card__text{
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 600;
}
.stack{ display: flex; gap: 10px; flex-wrap: wrap; }

.map{
  padding: 0;
  overflow: hidden;
}
.map iframe{
  width: 100%;
  height: 320px;
  border: 0;
}
@media (min-width: 980px){
  .map iframe{ height: 100%; min-height: 320px; }
}

/* Hours */
.hours__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.hours__list li{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(102,214,223,0.10);
  border: 1px solid rgba(0,0,0,0.06);
}
.hours__list span{
  font-weight: 800;
}
.hours__list strong{
  font-weight: 900;
}
.hours__cta{ margin-top: 14px; }

/* Testimonials */
.testimonials{
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 980px){
  .testimonials{ grid-template-columns: repeat(3, 1fr); }
}
.quote__text{
  margin: 10px 0 10px;
  color: rgba(31,42,51,0.86);
  font-weight: 600;
}
.quote__meta{
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.stars{
  font-weight: 900;
  letter-spacing: 1px;
  color: rgba(255,122,90,0.95);
}

/* FAQ */
.faq{
  display: grid;
  gap: 12px;
}
.faq__item{
  padding: 0;
  overflow: hidden;
}
.faq__q{
  cursor: pointer;
  padding: 14px 14px;
  font-weight: 900;
  list-style: none;
}
.faq__q::-webkit-details-marker{ display: none; }
.faq__a{
  margin: 0;
  padding: 0 14px 14px;
  color: var(--muted);
  font-weight: 600;
}

/* CTA section */
.cta-section{
  padding: 54px 0 64px;
  background:
    radial-gradient(900px 500px at 30% 0%, rgba(102,214,223,0.22), transparent 60%),
    radial-gradient(700px 400px at 90% 80%, rgba(242,201,76,0.18), transparent 60%),
    linear-gradient(180deg, rgba(255,247,232,0.8), rgba(255,247,232,1));
}

.cta-card{
  display: grid;
  gap: 14px;
}
@media (min-width: 980px){
  .cta-card{ grid-template-columns: 1.1fr 0.9fr; align-items: stretch; }
}

.cta-card__title{
  font-family: "Baloo 2", system-ui, sans-serif;
  margin: 0 0 6px;
  font-size: 34px;
  line-height: 1.05;
}
.cta-card__text{
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 600;
  max-width: 60ch;
}
.cta-card__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.social{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.08);
}
.social__link:hover{
  background: rgba(102,214,223,0.16);
}

/* Footer */
.site-footer{
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 18px 0 34px;
}
.footer__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-weight: 700;
}
.to-top{
  text-decoration: none;
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(102,214,223,0.12);
  border: 1px solid rgba(0,0,0,0.06);
}

/* =========================
   WhatsApp Floating Button
   ========================= */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #25D366;
  color: #0b1b12;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.08);
}
.wa-float__icon{
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.75);
}
.wa-float__text{ color: #062012; }
@media (max-width: 520px){
  /* en móvil, tipo “píldora corta” para no tapar CTAs */
  .wa-float{ padding: 12px; }
  .wa-float__text{ display: none; }
}

/* =========================
   Reveal animations
   ========================= */
.reveal{
  opacity: 0;
  transform: translateY(12px);
  transition: 500ms ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ transition: none; transform: none; }
  .btn{ transition: none; }
}
/* =========================
   LOGO HEADER
   ========================= */
.logo {
  height: 48px;
  width: auto;
  display: block;
}

/* Tamaño del logo en móvil */
@media (max-width: 480px) {
  .logo {
    height: 40px;
  }
}
/* =========================
   HERO LOGO
   ========================= */
/* =========================
   HERO LOGO
   ========================= */
.hero-logo {
  display: block;
  margin: 0 auto 14px;
  width: 210px;
  max-width: 78%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

/* móvil */
@media (max-width: 480px) {
  .hero-logo {
    width: 170px;
  }
}
/* =========================
   HERO BANNER IMAGE
   ========================= */
.hero-banner {
  display: block;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;   /* controla el ALTO */
  object-fit: cover;     /* recorta arriba/abajo, no lados */
  margin: 0 auto 18px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

/* móvil */
@media (max-width: 480px) {
  .hero-banner {
    aspect-ratio: 4 / 3; /* un poco más alto en móvil */
    border-radius: 10px;
  }
}
/* =========================
   Fondo claro tipo HERO (reutilizable)
   ========================= */
.section--bright {
  position: relative;
  overflow: hidden;
}

/* Capa de imagen tropical + velo claro */
.section--bright::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 247, 232, 0.20),
      rgba(255, 247, 232, 0.55)
    ),
    url("assets/img/hero-bg.png") center/cover no-repeat;
  filter: saturate(1.15) brightness(1.05);
  z-index: 0;
}

/* Asegura que el contenido quede por encima */
.section--bright > * {
  position: relative;
  z-index: 1;
}
/* =========================
   CALL FLOATING BUTTON
   ========================= */
.call-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;

  background: #38bdf8;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;

  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;

  display: flex;
  align-items: center;
  gap: 8px;

  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.call-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.35);
}

/* móvil */
@media (max-width: 480px) {
  .call-float {
    bottom: 16px;
    right: 16px;
    padding: 12px 16px;
    font-size: 14px;
  }
}
/* =========================
   FIX: asegurar que el contenido del HERO quede encima del fondo
   ========================= */
.hero__bg {
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
}
.hero__side,
.hero__photo {
  position: relative;
  z-index: 2;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
