/* ============================================================
   LOS POTRILLOS — style.css
   ============================================================ */

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

:root {
  --verde:       #1B5E20;
  --verde-claro: #2E7D32;
  --rojo:        #B71C1C;
  --dorado:      #F9A825;
  --negro:       #0A0A0A;
  --card-bg:     #1A1A1A;
  --blanco:      #FFFFFF;
  --gris:        #CCCCCC;
  --verde-wa:    #25D366;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--negro);
  color: var(--blanco);
  overflow-x: hidden;
}

/* ─── FADE IN ─────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── TOP BANNER ──────────────────────────────────────────── */
.top-banner {
  position: sticky;
  top: 0;
  z-index: 1001;
  height: 38px;
  background: var(--verde);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.banner-btn {
  background: var(--dorado);
  color: var(--negro);
  border-radius: 20px;
  padding: 3px 10px;
  text-decoration: none;
  font-family: 'Fredoka One', cursive;
  font-size: 12px;
  border: none;
  cursor: pointer;
}
.banner-btn:hover { background: #e0961f; }

/* ─── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  background: var(--negro);
  box-shadow: 0 2px 20px rgba(27,94,32,0.4);
  position: sticky;
  top: 38px;
  z-index: 1000;
  height: 68px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

#navMenu {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--dorado);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-link:hover { color: #fff; }

.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-llamar {
  background: var(--rojo);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.btn-llamar:hover { background: #8f1414; }

#cart-btn {
  background: var(--dorado);
  color: var(--negro);
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
}
#cart-btn:hover { background: #e0961f; }

#lang-btn {
  background: transparent;
  border: 2px solid var(--dorado);
  color: var(--dorado);
  font-family: 'Fredoka One', cursive;
  font-size: 0.85rem;
  border-radius: 20px;
  padding: 6px 12px;
  cursor: pointer;
}
#lang-btn:hover { background: var(--dorado); color: var(--negro); }

/* HAMBURGUESA */
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dorado);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin: 5px 0;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,7px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-7px); }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(27,94,32,0.75) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(183,28,28,0.5) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 30px 1.5rem;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

/* PARTÍCULAS */
.hero-particles {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden;
}
.hero-particles span {
  position: absolute; display: block; border-radius: 50%;
  animation: float-up linear infinite;
}
.hero-particles span:nth-child(1){left:5%;width:5px;height:5px;background:rgba(27,94,32,0.8);animation-duration:8s;animation-delay:0s;}
.hero-particles span:nth-child(2){left:15%;width:4px;height:4px;background:rgba(255,255,255,0.6);animation-duration:10s;animation-delay:1s;}
.hero-particles span:nth-child(3){left:25%;width:6px;height:6px;background:rgba(183,28,28,0.8);animation-duration:7s;animation-delay:2s;}
.hero-particles span:nth-child(4){left:35%;width:4px;height:4px;background:rgba(249,168,37,0.7);animation-duration:9s;animation-delay:0.5s;}
.hero-particles span:nth-child(5){left:50%;width:5px;height:5px;background:rgba(27,94,32,0.7);animation-duration:11s;animation-delay:3s;}
.hero-particles span:nth-child(6){left:60%;width:4px;height:4px;background:rgba(255,255,255,0.6);animation-duration:8s;animation-delay:1.5s;}
.hero-particles span:nth-child(7){left:70%;width:6px;height:6px;background:rgba(183,28,28,0.7);animation-duration:10s;animation-delay:2.5s;}
.hero-particles span:nth-child(8){left:80%;width:4px;height:4px;background:rgba(249,168,37,0.8);animation-duration:7s;animation-delay:0s;}
.hero-particles span:nth-child(9){left:88%;width:5px;height:5px;background:rgba(27,94,32,0.8);animation-duration:9s;animation-delay:4s;}
.hero-particles span:nth-child(10){left:96%;width:4px;height:4px;background:rgba(255,255,255,0.6);animation-duration:12s;animation-delay:1s;}

@keyframes float-up {
  0%{bottom:-10px;opacity:0;transform:translateX(0) scale(1);}
  10%{opacity:1;}90%{opacity:1;}
  100%{bottom:110%;opacity:0;transform:translateX(15px) scale(0.5);}
}

/* LOGO HEARTBEAT */
@keyframes heartbeat{0%,100%{transform:scale(1)}14%{transform:scale(1.12)}
28%{transform:scale(1)}42%{transform:scale(1.07)}70%{transform:scale(1)}}
.hero-logo{animation:heartbeat 2s ease-in-out infinite!important;}
@media(max-width:768px){.hero-logo{width:130px!important;max-width:130px!important;height:130px!important;}}

.hero-badge {
  display: inline-block;
  background: rgba(249,168,37,0.95);
  color: var(--negro);
  font-family: 'Fredoka One', cursive;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 5rem;
  color: #FFFFFF;
  letter-spacing: 3px;
  text-shadow: 3px 3px 15px rgba(0,0,0,0.8);
  margin-bottom: 8px;
}
@media(max-width:768px){ .hero-title{font-size:3rem;} }
@media(max-width:480px){ .hero-title{font-size:2.4rem;} }

.hero-tagline {
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero-badges-info {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-badges-info span {
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}

.hero-phone-box {
  background: rgba(0,0,0,0.55);
  border: 2px solid #F9A825;
  border-radius: 18px;
  padding: 20px 28px;
  display: inline-block;
  margin: 16px auto;
  backdrop-filter: blur(8px);
  text-align: center;
}
.hero-phone-box p {
  color: #F9A825;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.btn-call-hero {
  display: inline-block;
  background: #B71C1C;
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  letter-spacing: 2px;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(183,28,28,0.6);
  transition: all 0.3s;
}
.btn-call-hero:hover { background: #F9A825; color: #0A0A0A; }
@media(max-width:480px) {
  .btn-call-hero { font-size: 1.4rem; padding: 11px 22px; }
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-hero-menu {
  background: #F9A825;
  color: #0A0A0A;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(249,168,37,0.4);
  transition: all 0.3s;
}
.btn-hero-menu:hover { background: #fff; color: #1B5E20; }

.btn-hero-wa {
  background: #25D366;
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-hero-wa:hover { background: #1da851; }

.hero-social {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  justify-content: center;
  gap: 20px;
}
.hero-social a { color: inherit; text-decoration: none; }
.hero-social a:hover { color: #F9A825; }

/* ─── INFO BAR ────────────────────────────────────────────── */
.info-bar {
  background: var(--rojo);
  padding: 12px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
@media(max-width:600px){ .info-bar{flex-direction:column;gap:4px;} }

/* ─── SECTION HELPERS ─────────────────────────────────────── */
.section-line {
  width: 80px;
  height: 4px;
  background: var(--verde);
  margin: 8px auto 40px;
  border-radius: 2px;
}

/* ─── MENU ────────────────────────────────────────────────── */
#menu {
  background: var(--negro);
  padding: 70px 5%;
}
#menu h2 {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 8px;
}

.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 35px;
  padding: 0 10px;
}
.filter-btn {
  background: transparent;
  border: 2px solid #F9A825;
  color: #F9A825;
  font-family: 'Fredoka One', cursive;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.filter-btn.active, .filter-btn:hover { background: #F9A825; color: #0A0A0A; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.menu-card.hidden { display: none !important; }

.menu-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(249,168,37,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: #F9A825;
  box-shadow: 0 12px 30px rgba(249,168,37,0.2);
}
.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}
.menu-card:hover img { transform: scale(1.05); }

.img-ref {
  font-size: 0.6rem;
  color: #444;
  text-align: center;
  font-style: italic;
  padding: 2px 0;
  background: #111;
}

.card-body { padding: 14px; }
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
  gap: 8px;
}
.card-header h3 {
  font-family: 'Bebas Neue', cursive;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  flex: 1;
}
.card-price {
  font-family: 'Fredoka One', cursive;
  color: #F9A825;
  font-size: 1.1rem;
  font-weight: 800;
  white-space: nowrap;
}
.card-body p {
  font-family: 'Nunito', sans-serif;
  color: #888;
  font-size: 0.78rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.btn-add {
  width: 100%;
  background: #1B5E20;
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 0.9rem;
  padding: 9px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.btn-add:hover { background: #F9A825; color: #0A0A0A; }

@media(max-width:900px){ .menu-grid{grid-template-columns:repeat(3,1fr);} }
@media(max-width:768px){ .menu-grid{grid-template-columns:repeat(2,1fr);gap:14px;} }
@media(max-width:480px){
  .menu-grid{grid-template-columns:repeat(2,1fr);gap:10px;}
  .card-body{padding:10px;}
  .card-body h3{font-size:0.95rem;}
  .card-price{font-size:1rem;}
  .card-body p{font-size:0.72rem;}
  .card-body .btn-add{font-size:0.82rem;padding:8px;}
  .menu-grid img{height:160px;}
  .category-filters .filter-btn{font-size:0.78rem;padding:6px 12px;}
}

/* ─── CART ────────────────────────────────────────────────── */
#cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
}
#cart-overlay.show { display: block; }

#cart-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh;
  background: #0A0A0A;
  border-left: 3px solid #F9A825;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}
#cart-panel.open { right: 0; }
@media(max-width:480px){ #cart-panel{width:100%;right:-100%;} }

.cart-header {
  background: var(--verde);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 1.4rem;
}
#close-cart {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

#cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}
.cart-empty { text-align: center; color: #888; padding: 40px 0; }

.cart-item {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}
.cart-item-name {
  display: block;
  color: #fff;
  font-family: 'Fredoka One', cursive;
  margin-bottom: 6px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.qty-btn {
  background: var(--rojo);
  color: #fff;
  border: none;
  border-radius: 4px;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  cursor: pointer;
}

.cart-footer {
  padding: 15px;
  border-top: 1px solid rgba(249,168,37,0.2);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  color: var(--dorado);
  margin-bottom: 12px;
}
#whatsapp-order {
  width: 100%;
  background: var(--verde-wa);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  padding: 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}
#whatsapp-order:hover { background: #1da851; }

/* ─── CATERING ────────────────────────────────────────────── */
#catering {
  background: #111;
  padding: 70px 5%;
}
#catering h2 {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 8px;
}
#catering .section-line { background: var(--verde); }
.catering-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.catering-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
}
.catering-list {
  list-style: none;
  margin-bottom: 24px;
}
.catering-list li {
  color: var(--dorado);
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  padding: 6px 0;
}
.catering-form {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.catering-form input,
.catering-form textarea {
  border: 2px solid rgba(249,168,37,0.2);
  background: var(--negro);
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
}
.catering-form input:focus,
.catering-form textarea:focus { border-color: var(--dorado); }
.catering-form button {
  background: var(--verde-wa);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  padding: 14px;
  border: none;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
}
.catering-form button:hover { background: #1da851; }

@media(max-width:900px){ .catering-layout{grid-template-columns:1fr;} }
@media(max-width:768px){ .catering-img img{height:300px;} }

/* ─── REVIEWS ─────────────────────────────────────────────── */
#resenas {
  background: var(--negro);
  padding: 70px 5%;
}
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.google-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  background: linear-gradient(135deg,#4285F4,#EA4335,#FBBC05,#34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reviews-rating {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: var(--dorado);
}
.stars { font-size: 1.4rem; color: var(--dorado); }
.reviews-label { color: #aaa; font-family: 'Fredoka One', cursive; font-size: 1rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: var(--card-bg);
  border: 1px solid rgba(249,168,37,0.15);
  border-radius: 16px;
  padding: 20px;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: var(--dorado); }
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.reviewer img {
  border: 3px solid var(--dorado);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  object-fit: cover;
}
.reviewer strong { color: #fff; font-family: 'Fredoka One', cursive; }
.review-stars { color: var(--dorado); font-size: 0.9rem; }
.review-card p { color: #ccc; font-size: 0.9rem; line-height: 1.5; }

@media(max-width:900px){ .reviews-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:768px){ .reviews-grid{grid-template-columns:1fr;} }

/* ─── MAPS ────────────────────────────────────────────────── */
#mapa {
  background: #111;
  padding: 40px 5%;
}

/* ─── ABOUT ───────────────────────────────────────────────── */
#nosotros {
  background: var(--verde);
  padding: 60px 5%;
  text-align: center;
}
#nosotros h2 {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 2.5rem;
  margin-bottom: 20px;
}
#nosotros p {
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer#contacto {
  background: var(--negro);
  padding: 50px 5% 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 30px;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-brand {
  font-family: 'Bebas Neue', cursive;
  color: var(--dorado);
  font-size: 1.3rem;
}
.footer-sub { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-col h4 {
  font-family: 'Fredoka One', cursive;
  color: var(--dorado);
  margin-bottom: 6px;
}
.footer-col a,
.footer-col p {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--dorado); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-social a {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.5);
}
.footer-social a:hover { color: var(--dorado); }
.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 16px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

@media(max-width:900px){ .footer-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:768px){ .footer-grid{grid-template-columns:1fr;} }

/* ─── WA FLOTANTE ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--verde-wa);
  color: #fff;
  font-size: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: wa-pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
}
@keyframes wa-pulse {
  0%,100%{transform:scale(1);box-shadow:0 4px 20px rgba(37,211,102,0.5);}
  50%{transform:scale(1.1);box-shadow:0 6px 30px rgba(37,211,102,0.8);}
}

/* ─── RESPONSIVE (navbar/hamburger) ──────────────────────── */
@media(max-width:768px){
  .hamburger{display:block;}
  #navMenu{
    display:none;
    position:fixed;
    top:106px;
    left:0;
    width:100%;
    background:#0A0A0A;
    flex-direction:column;
    padding:20px;
    box-shadow:0 4px 20px rgba(249,168,37,0.2);
    z-index:999;
    transform:none;
  }
  #navMenu.open{display:flex;}
  #lang-btn{display:none;}
}
