/* =======================
   Variables
======================= */
:root {
    --color-dark: #0a0a0a;
    --color-gold: #d4af37;
    --color-gold-light: #e6c158;
    --color-text: #f5f5f5;
    --color-text-dark: #333333;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;

    /* Controles de tamaño del cuadro/iframe */
    --reserva-card-max: 560px;     /* ancho máx. del cuadro */
    --reserva-iframe-minh: 520px;  /* altura mínima del widget */
}

/* =======================
   Reset y estilos base
======================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-dark);
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Control del espacio entre secciones */
section { margin-bottom: 30px; }

/* =======================
   Botones globales
======================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 2px;
    font-family: var(--font-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn.primary { background-color: var(--color-gold); color: var(--color-dark); border: 1px solid var(--color-gold); }
.btn.primary:hover { background-color: var(--color-gold-light); border-color: var(--color-gold-light); }
.btn.secondary { background-color: transparent; color: var(--color-text); border: 1px solid var(--color-text); }
.btn.secondary:hover { background-color: var(--color-text); color: var(--color-dark); }
.btn.outline { background-color: transparent; color: var(--color-gold); border: 1px solid var(--color-gold); }
.btn.outline:hover { background-color: var(--color-gold); color: var(--color-dark); }
.btn.full-width { width: 100%; text-align: center; }

/* =======================
   Header y navegación
======================= */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: rgba(10,10,10,0.8);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* === NUEVO BLOQUE PARA LOGO === */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;        /* ajusta este valor según el tamaño deseado */
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05); /* pequeño efecto hover elegante */
}

.menu {
    display: flex;
    gap: 30px;
}
.menu a {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}
.menu a:hover:after { width: 100%; }

/* =======================
   Sección Hero
======================= */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/entrada.jpeg');
    background-size: cover;
    background-position: center;
}
.hero-content { max-width: 800px; padding: 0 20px; }
.hero-content h1 {
    font-family: var(--font-primary);
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 40px;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-buttons .btn.primary,
.cta-buttons .btn.secondary {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    font-weight: 400;
    border-radius: 25px;
    padding: 10px 25px;
    text-transform: none;
    letter-spacing: normal;
    font-size: 1rem;
}
.cta-buttons .btn.primary:hover,
.cta-buttons .btn.secondary:hover {
    background-color: rgba(255,255,255,0.2);
    border-color: #fff;
}

/* =======================
   Sección Menú Degustación
======================= */
#menu { background-color: #0a0a0a; text-align: center; padding: 30px 20px; }
#menu h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
}
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.category {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.category:hover { transform: translateY(-5px); }
.category .icon {
    width: 100px;
    height: 100px;
    border: 1px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    background-color: transparent;
}
.category .icon img {
    width: 150px;
    height: auto;
    object-fit: contain;
    border-radius: 50%;
}
.category h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: #fff;
}
.menu-cta a {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #d4af37;
    border-radius: 25px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
}
.menu-cta a:hover {
    background-color: rgba(212,175,55,0.1);
    border-color: #e6c158;
}

/* =======================
   Sección Experiencia
======================= */
#experiencia { background-color: #0a0a0a; overflow: hidden; padding: 30px 0; }
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.chef-image {
    height: 500px;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/Chefcocinando.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.experience-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 20px;
}
.experience-content p {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

/* =======================
   Sección Platos Destacados
======================= */
#platos-destacados {
    background-color: #0a0a0a;
    text-align: center;
    padding: 40px 20px;
}
#platos-destacados h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 50px;
}
.premium-options {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.option {
    flex: 1;
    min-width: 280px;
    border: 1px solid var(--color-gold);
    padding: 20px;
    transition: all 0.3s ease;
}
.option:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(212,175,55,0.2);
}
.option img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}
.option h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}
.option p { color: var(--color-text); }

/* =======================
   Sección Reservas
======================= */
#reservas {
  background-color: var(--color-dark);
  text-align: center;
  padding: 60px 20px;
}
#reservas h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 24px;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
#reservas h2::after {
  content:"";
  position:absolute;
  width:60%;
  height:3px;
  background: linear-gradient(to right, var(--color-gold), var(--color-gold-light));
  bottom:0;
  left:20%;
  border-radius:2px;
}

/* Tarjeta de reserva */
.reserva-card {
  width: min(100%, 600px);
  margin: 0 auto;
  background: var(--color-dark);
  color: var(--color-text);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 12px 24px rgba(0,0,0,0.5),
    inset 0 0 0 2px rgba(212,175,55,0.85);
}
.reserva-card::before {
  content:"";
  position:absolute;
  inset:10px;
  border-radius:12px;
  border:2px solid rgba(212,175,55,0.9);
  pointer-events:none;
}

/* Cabecera de marca */
.reserva-card__head{ text-align:center; margin-bottom:14px; }
.reserva-title{
  font-family: var(--font-primary);
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 5px;
  color: var(--color-gold);
  font-weight: 600;
  line-height:1.2;
  margin-bottom:6px;
}
.reserva-subtitle{
  font-family: var(--font-secondary);
  color: rgba(245,245,245,0.85);
  letter-spacing: 3px;
  font-size:12px;
  text-transform:uppercase;
}

/* Caja del iframe */
:root{ --reserva-iframe-h: 520px; }
.reserva-iframe-box{ height: var(--reserva-iframe-h); }
.reserva-widget{ height: 100%; }
#hors-hydra-af015ea2-e51d-4b29-819b-80d227958ae3 iframe{
  display:block;
  width:100% !important;
  height:100% !important;
  border:0;
  border-radius:12px;
  background:transparent;
}

/* =======================
   Footer
======================= */
footer {
    background-color: #050505;
    padding: 60px 0 30px;
    color: var(--color-text);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}
.info-block h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--color-gold);
    margin-bottom: 10px;
}
.info-block p { font-size: 14px; line-height: 1.6; }

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.social-links a {
    color: var(--color-gold);
    font-weight: 500;
    transition: all 0.3s ease;
}
.social-links a:hover { color: var(--color-gold-light); }

.legal-links {
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
}
.legal-links a {
    color: var(--color-gold);
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}
.legal-links a:hover { color: var(--color-gold-light); }

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* =======================
   Responsive
======================= */
@media (max-width: 992px) {
    .experience-grid { grid-template-columns: 1fr; text-align: center; }
    .chef-image { height: 400px; }
    .premium-options { flex-direction: column; align-items: center; }
}
@media (max-width: 768px) {
    .menu { display: none; } /* pendiente: menú hamburguesa */
    .cta-buttons { flex-direction: column; gap: 15px; }
    footer .footer-content { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 576px) {
    .container { width: 95%; }
    .hero-content h1 { font-size: 1.4rem; }
    .category { flex: 0 0 100%; margin-bottom: 20px; }
    .btn { width: 100%; text-align: center; }
}

/* =======================
   Botón WhatsApp Fijo
======================= */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2000;
}
.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}
.whatsapp-btn::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.
