:root{
  --bg:#000; 
  --text:#fff; 
  --accent:#ffffff; 
  --muted:#fdfafa; 
  --card:#111; 
  --shadow: 0 6px 18px rgba(255,255,255,0.08);
  --radius:12px;
}

*{box-sizing:border-box}

body{
  font-family:Inter, system-ui, -apple-system, Arial, sans-serif;
  margin:0;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
  cursor:none; 
}

.container{
  max-width:1000px;
  margin:0 auto;
  padding:20px;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}

.brand h1{
  margin: 0;
  font-size: 1.5rem;
  color: var(--accent);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.brand .tag{
  margin:0;
  font-size:.85rem;
  color:var(--muted);
}

.main-nav a{
  margin-right:14px;
  color:var(--muted);
  text-decoration:none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.main-nav a:hover{
  color:var(--accent);
  text-shadow:0 0 10px rgba(255, 255, 255, 0.7);
}

.main-nav .cart-btn{
  background:transparent;
  border:1px solid var(--accent);
  padding:6px 10px;
  border-radius:8px;
  cursor:pointer;
  color:var(--accent);
  box-shadow:0 0 8px rgba(255,123,0,0.4);
}

/* ===========================
   HERO - Estilo Brass Grill & Bar
   =========================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Pantalla completa */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.hero p {
  font-size: 1.2rem;
  color: #e8e8e8;
  margin-top: 10px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Fondo dinámico (transición de imágenes suave) */
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeHero 18s infinite;
}

.hero-bg:nth-child(1) { 
  background-image: url('../img/image1.jfif');
  animation-delay: 0s;
}
.hero-bg:nth-child(2) { 
  background-image: url('../img/image5.jfif');
  animation-delay: 6s;
}
.hero-bg:nth-child(3) { 
  background-image: url('../img/image12.png');
  animation-delay: 12s;
}

@keyframes fadeHero {
  0%, 100% { opacity: 0; }
  10%, 30% { opacity: 1; }
  40%, 90% { opacity: 0; }
}

/* ===========================
   RESTO DE TU ESTILO ORIGINAL
   =========================== */

.menu-section .lead{color:var(--muted)}
.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  margin-top:18px;
}
.card{
  background:var(--card);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.card img{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:10px;
}
.card h3{
  margin:0;
  font-size:1.05rem;
  color:#fff;
  text-shadow:0 0 6px rgba(255,255,255,0.2);
}
.card .price{
  font-weight:700;
  color:var(--accent);
}
.card .meta{
  color:var(--muted);
  font-size:.9rem;
}
.card .actions{
  margin-top:auto;
  display:flex;
  gap:8px;
  align-items:center;
}
.btn{
  padding:8px 12px;
  border-radius:8px;
  border:1px solid #444;
  background:#111;
  color:#fff;
  cursor:pointer;
  font-weight:600;
}
.btn.primary{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}

/* About / Contact */
.about ul{
  margin:8px 0 0 18px;
  color:var(--muted);
}
.contact form{
  display:grid;
  gap:10px;
  max-width:560px;
}
.contact input,
.contact textarea{
  padding:8px;
  border-radius:8px;
  border:1px solid #444;
  background:#111;
  color:#fff;
}

/* Footer */
.site-footer{
  border-top:1px solid #222;
  padding:18px 0;
  text-align:center;
  color:var(--muted);
  background:#000;
}

/* Cart drawer */
.cart-drawer{
  position:fixed;
  right:0;
  top:0;
  height:100vh;
  width:360px;
  background:#111;
  box-shadow:-12px 0 40px rgba(255,255,255,0.1);
  transform:translateX(110%);
  transition:transform .25s ease;
  z-index:60;
  padding:18px;
}
.cart-drawer.open{transform:translateX(0)}
.cart-inner{display:flex;flex-direction:column;height:100%}
.close-cart{
  align-self:flex-end;
  background:transparent;
  border:0;
  font-size:22px;
  cursor:pointer;
  color:#fff;
}
#cart-items{
  flex:1;
  overflow:auto;
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.cart-item{
  display:flex;
  gap:10px;
  align-items:center;
  border-radius:8px;
  padding:8px;
  border:2px solid var(--accent);
  background:#000;
  color:#fff;
  box-shadow:0 0 10px rgba(255,123,0,0.25);
}
.cart-item img{
  width:56px;
  height:56px;
  object-fit:cover;
  border-radius:6px;
}
.cart-summary{
  padding-top:10px;
  border-top:1px solid #333;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#fff;
  font-weight:600;
}

@media(max-width:640px){
  .header-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
  .cart-drawer{width:100%}
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  margin-left: -60px; 
}

.brand .logo {
  width: 220px;        
  height: auto;
  border-radius: 12px;
  object-fit: contain; 
}

.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 9999;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 40%, transparent 70%);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.8));
  animation: twinkle 1.2s infinite ease-in-out alternate;
}

/* ✨ Pequeño parpadeo de brillo */
@keyframes twinkle {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-card:hover {
  transform: scale(1.1);
  color: var(--accent);
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 8px;
  transition: box-shadow 0.3s ease;
}

.social-card:hover .social-icon {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.nosotros-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 60px auto;
  flex-wrap: wrap;
}

.nosotros-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.nosotros-img {
  width: 420px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(255, 123, 0, 0.4);
  object-fit: cover;
}

.nosotros-text {
  max-width: 460px;
}

.nosotros-text h2 {
  color: var(--text); 
  font-size: 2rem;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.nosotros-text p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

.sedes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
  color: var(--text);
}

.sede h3 {
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 6px;
}

.sede p {
  margin: 4px 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.sede p:last-child {
  font-weight: bold;
  color: #fff;
}

.destacados-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 60px auto;
  flex-wrap: wrap;
}

.destacados-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.destacados-img {
  width: 420px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(255, 123, 0, 0.4);
  object-fit: cover;
}

.destacados-text {
  max-width: 460px;
}

.destacados-text h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #fff; 
  text-shadow:
    0 0 6px rgba(255,255,255,0.35), 
    0 0 10px rgba(255,255,255,0.18); 
}

.destacados-text p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}
/* === NAV LATERAL FIJO TIPO BRASS === */
.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 160px;
  height: 100vh;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px;
  z-index: 1000;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.side-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.side-nav .brand .logo {
  width: 100%;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-links a {
  font-family: "Playfair Display", serif;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.cart-btn {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  align-self: flex-start;
}

.cart-btn:hover {
  background: #caa14a;
  color: #000;
  transition: all 0.3s ease;
}

/* Empuja el contenido principal para no quedar debajo del menú */
main {
  margin-left: 160px;
}

  .hero-hero {
    position: relative;
    min-height: 140vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    overflow: hidden;
  }

  .hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease-in-out, transform 8s ease;
  }

  .hero-slide.show {
    opacity: 1;
    animation: panZoom 15s ease-in-out infinite alternate;
  }

  @keyframes panZoom {
    0% { transform: scale(1.05) translateX(0); }
    100% { transform: scale(1.1) translateX(-15px); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.65));
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: -100px;
  }

  .hero-title {
    font-family: 'Glamor', serif;
    font-weight: 400;
    font-size: clamp(3rem, 6vw, 5rem);
    margin: 0.25rem 0 0.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 6px 24px rgba(0,0,0,0.6);
  }

  .hero-sub {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #caa14a;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 0.5rem;
  }

  .hero-cta { 
    gap: 1rem; 
    display:inline-flex; 
    flex-wrap:wrap; 
    justify-content:center; 
    margin-top: 1.5rem;
  }

  /* === BOTONES TRANSPARENTES === */
  .hero-btn,
  .hero-btn-reserva {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.7);
    color: #fff;
    padding: .9rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight:700;
    transition: all .3s ease;
  }

  .hero-btn:hover,
  .hero-btn-reserva:hover { 
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
  }

  /* ===========================
     MENÚ LATERAL
     =========================== */
  .side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 130px;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 15px;
    z-index: 1000;
    border-right: 1px solid rgba(255,255,255,0.15);
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .nav-links a {
    font-family: "Playfair Display", serif;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: #caa14a;
  }

  /* === BOTÓN CARRITO BLANCO === */
  .cart-btn {
    margin-top: 40px;
    background: transparent;
    border: 1px solid #fff; /* contorno blanco */
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
  }

  .cart-btn:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateY(-2px);
  }

  main {
    margin-left: 130px;
  }

  /* ===========================
     SECCIÓN NOSOTROS DENTRO DEL HERO
     =========================== */
  .nosotros-section {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 3rem auto 0;
    color: #fff;
    text-align: center;
  }

  .nosotros-text h2 {
    font-family: 'Playfair Display', serif;
    color: #caa14a;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .nosotros-text p {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    font-size: 1rem;
    color: #eee;
  }

  .nosotros-img {
    display: none;
  }

  @media (max-width: 767px){
    .hero-content { margin-top: -40px; }
    .hero-title { font-size: 2.6rem; }
  }











