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

body {
  font-family: 'Righteous', sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #fff;
}
body.home-page {
  background-color: #000000;
  
}


@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInHero {
  from { opacity: 0; transform: scale(1.05); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes zoomInHeroLogo {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUpLarge {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRightLarge {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ========== HEADER ========== */


.header {
  background-color: #876445;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color 0.1s ease; 
  opacity: 0;
  animation: fadeInDown 0.6s ease-out forwards;
  animation-delay: 0.2s;
}
body.home-page .header {
  
  background-color: #000000;
}


.header.scrolled {
   background-color: rgba(135, 100, 69, 0.55); 
  backdrop-filter: blur(4px); /* efecto cristal */
}
body.home-page .header.scrolled {
  background-color: rgba(0, 0, 0, 0.55); 
}

.header__logo img.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Botón hamburguesa y botón reservar */
.menu-btn,
.reservar-btn {
  font-family: 'Righteous', sans-serif;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-btn {
   -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 200; 
  margin-right: 20px;
  
}


.menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #EEC373;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header.menu-open .menu-btn span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header.menu-open .menu-btn span:nth-child(2) {
  opacity: 0;
}
.header.menu-open .menu-btn span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.reservar-btn {
  background-color: #EEC373;
  color: #0F0E0E;
  padding: 8px 16px;
  border: none;
}

.reservar-btn:hover {
  background-color: #CA965C;
}


.nav-menu {
  display: none; 
  flex-direction: column;
  gap: 12px;
  background: rgba(135, 100, 69, 0.85);
  letter-spacing: 0.2rem;
  padding: 20px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}
body.home-page .nav-menu {
  background: rgba(0, 0, 0, 0.85);
}

.nav-menu a {
  display: block;           
  width: 100%;                    
  padding: 12px 0;                
  border-bottom: 2px solid #EEC373; 
  color: #EEC373;
  text-decoration: none;
  background: transparent;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #F4DFBA;
  border-bottom: 2px solid #F4DFBA; 
}


.header.menu-open .nav-menu {
  display: flex;
}


@media (min-width: 768px) {
  
  .header {
    background-color: rgba(135, 100, 69, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .menu-btn {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 200; 
    margin-right: 20px;
  }

  .menu-btn span {
    display: block;
    height: 3px;
    background-color: #EEC373;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .reservar-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (min-width: 1024px) {
  .header {
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(135,100,69,0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

 
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 40px;
    background: transparent !important;
    padding: 0;
    border-top: none;
    margin: 0 auto;
   
  }

  .nav-menu a {
    display: inline-block;
    border-bottom: none;
    padding: 0;
   
    background: transparent !important;
  }

  .header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .menu-btn {
    display: none;
  }
}



/* ========== HERO SECTION (Home) ========== */
.home {
  position: relative;
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #000;
  overflow: hidden; 
}
.home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(to bottom, rgba(0,0,0,0) 80%, rgba(0,0,0,1) 100%),
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
    url('img/hero-restaurante.webp') no-repeat center center;
  background-size: cover;
  opacity: 0; 
  animation: fadeInHero 1s ease-out forwards;
  animation-delay: 0.3s; 
  z-index: 1;
}



.home-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0) 80%, rgba(0,0,0,1) 100%),
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
    url('img/hero-restaurante.webp') no-repeat center center;
  background-size: cover;
  z-index: 1;
  opacity: 0;
  animation: fadeInHero 1s ease-out forwards;
  animation-delay: 0.4s;
}

.home-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
}


.logo-home {
  height: 400px;     
  width: auto;
  margin-top: -100px; 
  opacity: 0;
  animation: zoomInHeroLogo 1s ease-out forwards;
  animation-delay: 0.2s;
}


@media (min-width: 768px) {
   .home-bg {
    background-size: 100% auto; 
    background-position: center center;
  }
  .home {
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #000000;
  }
  .logo-home {
    height: 300px;
    margin-top: -100px;
  }
}


@media (min-width: 1600px) {
  .home-bg {
    background-size: 90% auto; 
    background-position: center center;
  }
  .home {
    background-position: center top;
    background-size: contain;
  }
  .logo-home {
    height: 500px;
    margin-top: -180px;
  }
}



/* ========== BIO SECTION ========== */

.bio-section {
  background-color: #000000; 
  padding: 40px 20px;
  text-align: center;
  opacity: 0; 
  transform: translateY(30px);
}
.bio-section.animate {
    animation: fadeInUpLarge 1.3s ease-out forwards;
}

.bio-title {
  font-family: 'Righteous', sans-serif;
  color: #EEC373;
  font-size: 28px;
  margin-bottom: 40px;
  margin-top: 50px;
  position: relative;
  display: inline-block;
}

.bio-title::before,
.bio-title::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #EEC373;
  vertical-align: middle;
  margin: 0 10px;
}

.bio-text {
  color: #EEC373;
  font-size: 18px;
  line-height: 1.6;
  max-width: 300px; 
  margin: 0 auto 60px auto; 
}

.bio-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px; 
}

.bio-img {
  aspect-ratio: 415 / 490;
  width: 100%;
  max-width: 335px;
  height: 385px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  filter: brightness(0.85);
  transition: transform 0.3s ease, filter 0.3s ease;
}


.bio-img-wrap {
  position: relative;
  display: inline-block;
}

.bio-img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%; 
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 20%,   
    rgba(0,0,0,0.6) 80%, 
    rgba(0,0,0,1) 100%   
  );
  border-radius: 8px;
  pointer-events: none;
}


@media (min-width: 768px) and (max-width: 1023px) {
  .bio-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;           
    padding: 80px 20px;    
    max-width: 900px;
    margin: 0 auto;
    
  }

 
  .bio-content {
    flex: 1;
    max-width: 45%;      
  }

  .bio-content h2 {
    font-size: 36px;
  }
  .bio-content p {
    font-size: 18px;
  }

  .bio-images {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 60px;
  }

  .bio-images .bio-img-wrap:nth-child(2) {
    display: none;
  }
}
@media (min-width: 1024px) {
  .bio-section {
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    gap: 100px; 
    padding: 160px 20px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .bio-section > .bio-title,
  .bio-section > .bio-text {
    text-align: left;
  }

  .bio-content {
    flex: 1;
    max-width: 550px;
  }

  .bio-content h2{
    font-size: 43px;
  }

 .bio-content p{
  font-size: 18px;
 }

  .bio-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px; 
    align-items: center; 
    max-width: 750px;
  }

  .bio-img {
    width: 100%;
    max-width: 700px;
    height: 430px;
    object-fit: cover;
  }

 .bio-images .bio-img-wrap:nth-child(2) {
    display: none;
  }
  

}
@media (min-width: 1600px) {
   .bio-section {
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    gap: 300px; 
    padding: 160px 20px;
    max-width: 1400px;
    margin: 0 auto;
  }
 .bio-img {
    max-width: 450px;
    height: 580px;
    margin-left: 30px;
  }
}


/* ========== CARTA HOME ========== */

.carta2-section {
  background-color: #000000; 
  padding: 40px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(100px);
}
.carta2-section.animate {
  animation: fadeInUpLarge 1.3s ease-out forwards;
}

.carta2-title {
  font-family: 'Righteous', sans-serif;
  color: #EEC373;
  font-size: 28px;
  margin-top: -10px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.carta2-title::before,
.carta2-title::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #EEC373;
  vertical-align: middle;
  margin: 0 10px;
}

.carta2-text {
  color: #EEC373;
  font-size: 18px;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto 30px auto;
  margin-bottom: 30px;
}

.carta2-btn {
  display: inline-block;
  background-color: #EEC373;
  color: #000000;
  font-family: 'Righteous', sans-serif;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carta2-btn:hover {
  background-color: #CA965C; 
  transform: scale(1.05);
}

.carta2-img-wrap {
  position: relative;
  margin-top: 30px;
}



.carta2-img {
  width: 100%;
  max-width: 410px;
  height: 361px;
  object-fit: cover;
  border-radius: 8px;
  filter: brightness(0.80);
  transition: filter 0.3s ease, transform 0.3s ease;
}


@media (min-width: 768px) and (max-width: 1023px) {
  .carta2-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 170px;              
    padding: 20px 30px;   
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 50px;
    text-align: left;
  }

  .carta2-img-wrap {
    order: 1;
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
  }

  .carta2-img {
    width: 100%;
    max-width: 350px;       
    height: 380px;
    border-radius: 8px;
  }

  .carta2-content {
    order: 2;
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;              
  }

  .carta2-content h2 {
    font-size: 36px;        
    margin: 0;
  }

  .carta2-content p {
    font-size: 18px;        
    line-height: 1.6;
    margin: 0;
  }

  .carta2-btn {
    align-self: flex-start;  
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 8px;
    margin: 0;
    margin-left: 80px;
    margin-top: 10px;
  }
}

@media (min-width: 1024px) {
  .carta2-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 180px;            
    padding: 10px 40px;  
    max-width: 1200px;
    margin: 0 auto;
    margin-left: 50px;
    margin-bottom: 180px;
    text-align: left;
  }


  
  .carta2-img-wrap {
    order: 1;
    flex: 1;
    max-width: 520px;
    display: flex;
    justify-content: center; 
  }

  .carta2-img {
    width: 100%;
    max-width: 400px;
     height: 400px;
    object-fit: cover;
    border-radius: 8px;
  }

  
  .carta2-content {
    order: 2;
    flex: 1;
    max-width: 550px;
   
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 30px;
  }

  .carta2-content h2 {
    font-size: 43px;
    margin: 0;
  }

  .carta2-content p {
    font-size: 18px;
    line-height: 1.6;
    
    margin: 0;
  }

  .carta2-btn {
    align-self: center; 
    font-size: 20px;
    padding: 14px 30px;
    border-radius: 8px;
    margin-right: 140px;
  }
}
@media (min-width: 1600px) {
    .carta2-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 300px;            
    padding: 10px 40px;  
    max-width: 1600px;
    margin: 0 auto;
    
    margin-bottom: 200px;
  }

  .carta2-content {
  max-width: 500px;
    gap: 30px; 
  }
   .carta2-content h2 {
    font-size: 43px;
    margin: 0;
    
  }
    .carta2-img-wrap {
    max-width: 900px;
    flex: 1;
    display: flex;
    justify-content: center; 
  }
    .carta2-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
  }
   .carta2-btn {
    align-self: center; 
    font-size: 20px;
    padding: 14px 30px;
    border-radius: 8px;
   
  }
}

/* ===== recuadro amaraillo ===== */

.reserva-cta {
  background-color: #EEC373; 
  color: #0F0E0E;
  text-align: center;
  padding: 25px 15px;         
  margin: 40px 20px;           
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0;
  transform: translateY(100px);
}
.reserva-cta.animate {
  animation: fadeInUpLarge 1s ease-out forwards;
}

.reserva-title {
  font-family: 'Righteous', serif;
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.reserva-text {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.reserva-btn {
  display: inline-block;
  background-color: #0F0E0E;
  color: #EEC373;
  text-decoration: none;
  font-family: 'Righteous', sans-serif;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.reserva-btn:hover {
  background-color: #333;
  transform: scale(1.05);
}


@media (min-width: 1024px) {
  .reserva-cta {
    margin: 100px auto; 
    max-width: 700px; 
    padding: 30px 40px; 
  }

  .reserva-title {
    font-size: 26px;
  }

  .reserva-text {
    font-size: 16px;
  }

  .reserva-btn {
    font-size: 16px;
    padding: 10px 24px;
  }
}

@media (min-width: 1600px) {
  .reserva-cta {
    max-width: 1200px;  
    padding: 35px 50px; 
    margin: 80px auto;  
    margin-bottom: 100px;
  }

  .reserva-title {
    font-size: 33px;
  }

  .reserva-text {
    font-size: 20px;
  }

  .reserva-btn {
    font-size: 18px;
    padding: 12px 28px;
  }
}



/* ===== GALERIA ===== */


.galeria-section {
  background-color: #000000;
  padding: 20px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(100px);
}
.galeria-section.animate {
  animation: fadeInUpLarge 1.2s ease-out forwards;
 
}


.galeria-title {
  font-family: 'Righteous', sans-serif;
  color: #EEC373;
  font-size: 28px;
  margin-top: 20px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.galeria-title::before,
.galeria-title::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #EEC373;
  vertical-align: middle;
  margin: 0 10px;
}

.galeria-text {
  color: #EEC373;
  font-size: 18px;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto 80px auto;
}

/* === Carrusel === */
.carousel {
  position: relative;
  max-width: 370px; 
  margin: 0 auto;
  overflow-x: auto;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  border-radius: 8px;
}

.carousel-track {
  touch-action: pan-y pan-x;
  display: flex;
  width: 100%;
  max-width: 100%;
  transition: transform 0.5s ease;
}

.carousel-img {
   flex: 0 0 100%;
  min-width: 100%;
  height: 430px; 
  object-fit:cover;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 8px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(238, 195, 115, 0.5);
  cursor: pointer;
}

.indicator.active {
  background-color: #EEC373;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .galeria-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 60px 15px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
  }

  .galeria-content {
    flex: 1;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .galeria-content .galeria-title {
    font-size: 36px;
    margin: 0;
  }

  .galeria-content .galeria-text {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
  }

  .galeria-carousel-wrap {
    flex: 1;
    max-width: 40%;
    display: flex;
    justify-content: center;
    
  }

  .carousel {
    max-width: 40%;
    margin: 0;
  }

  .carousel-img {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .galeria-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
     gap: 100px;         
    max-width: 1000px;     
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 80px 40px;    
    text-align: left;      
  }
  .carousel-img {
  min-width: 100%;
  height: 410px; 
  
}

  
  .galeria-content {
    flex: 1;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    margin-left: 50px;
    gap: 40px;
  }

  .galeria-content .galeria-title {
    font-size: 43px;
    margin: 0;
    display: flex;
    align-items: center;
  }

  .galeria-content .galeria-text {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
  }

  
  .galeria-carousel-wrap {
    flex: 1;
    max-width: 750px;
    display: flex;
    justify-content: center; 
  }

  .carousel {
    margin: 0; 
  }
}
@media (min-width: 1600px) {
 .galeria-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;     
    margin: 0 auto;
    padding: 80px 40px;    
    text-align: left;     
    margin-bottom: 150px;
    
  }

  .carousel-img {
  min-width: 100%;
  height: 510px; 
 
}

  
  .galeria-content {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 30px;
  }

  .galeria-content .galeria-title {
    font-size: 43px;
    margin: 0;
    display: flex;
    align-items: center;
  }

  .galeria-content .galeria-text {
    
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
  }

  /* Contenedor para el carrusel */
  .galeria-carousel-wrap {
    flex: 1;
    max-width: 850px;
 
    display: flex;
    justify-content: center; 
  }
    .carousel {
    max-width: 450px;
  }

 
}




/* ========== INFORMACION ========== */

.info-section {
  background-color: #000;
  color: #EEC373;
  text-align: center;
  padding: 40px 20px;
   opacity: 0;
  transform: translateY(100px);
}
.info-section.animate {
  animation: fadeInUpLarge 1s ease-out forwards;
}

.info-icon {
  width: 100px;
  margin-bottom: 50px;
  margin-top: 10px;
  text-align: center;
}

.info-block {
  margin-bottom: 26px;
}

.info-block h3 {
  font-family: 'Righteous', sans-serif;
  font-size: 25px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  margin-left: 10px;
}

.info-block p {
  font-size: 18px;
  line-height: 1.4;
  margin-left: 10px;
}

.info-socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 10px;
  margin-right: 20px;
}


.info-socials a {
  display: inline-block;           
  transition: transform 0.3s ease;  
}

.info-socials a:hover {
  transform: scale(1.2);
}


.info-socials a img {
  margin-top: -10px;
  width: 40px;      
  height: 40px;     
  display: block;   
}

.imagen-facebook{
  width: 100px;      
  height: 100px;     
  display: block;  
}

.info-logo {
  width: 250px;
  margin: 60px auto 30px auto;
  display: block;
}

.info-map iframe {
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  height: 420px;
}

.info-blocks {
  text-align: left;
  max-width: 400px;
  margin: 0 auto 40px auto;
}


@media (min-width: 768px) and (max-width: 1023px) {
  .info-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 70px;
    text-align: left;
    gap: 180px; 
  }

  .info-content {
    order: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 50%;
  }

  .info-map {
    order: 1;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .info-map iframe {
    max-width: 350px;
    height: 550px;
    border-radius: 10px;
  }

  .info-icon {
    width: 80px;
    margin-left: 100px;
    margin-top: -60px;
  }

  .info-block h3 {
    font-size: 22px;
  }

  .info-block p {
    font-size: 16px;
  }

  .info-socials {
 
   margin-top: -40px;
    margin-left: 0;
  }

  .info-socials a img {
    width: 35px;
    height: 35px;
  }

  .info-logo {
    display: none;
  }
}

@media (min-width: 1024px) {
  
  .info-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
  }

  
  .info-content {
    order: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;             
    max-width: 550px;
  }

  
  .info-map {
    order: 1;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  
  .info-icon {
    width: 100px;
    margin-bottom: 40px;
    margin-left: 220px;
    margin-top: -60px;
  }
  .info-block h3 {
    font-size: 26px;
  }
  .info-block p {
    font-size: 20px;
  }
  .info-map iframe {
    max-width: 400px;
    height: 630px;
    border-radius: 12px;
  }
  .info-socials {
  gap: 25px;
  margin-top: -30px;
  margin-right: 20px;
  
}

  .info-logo {
  display: none;
}
}

@media (min-width: 1600px) {
  
  .info-section {
    max-width: 1400px;
    padding: 80px 60px;
    gap: 230px;
  }
  .info-icon {
    width: 150px;
    margin-bottom: 30px;
    transform: translateY(-50px);
  }
  .info-block h3 {
    font-size: 28px;
  }
  .info-block p {
    font-size: 20px;
  }
  .info-socials {
  gap: 25px;
  margin-top: -30px;
  margin-left: 150px; 
}
.info-socials a img {
  width: 50px;
  height: 50px;
}

  .info-map iframe {
    max-width: 550px;
    height: 720px;
  }
}






/* ========== PAGINA RESERVAS  ========== */

.imagen-reservas {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  margin-bottom: 50px;
}

.imagen-reservas img {
  max-width: 100%;
  height: 550px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  animation: slideFadeIn 1.5s ease-out forwards;
}

.titulo-reservas{
margin-top: 60px;
color: #876445;
display: flex;
justify-content: center;
align-items: center;
font-size: 26px;
animation: slideFadeIn 1s ease-out forwards;
}


.titulo-reservas::before,
.titulo-reservas::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #EEC373;
  vertical-align: middle;
  margin: 0 10px;
}


  
.whatsapp-reservation {
  background-color:  #FAEFE0;
  border: 2px dashed #EEC373;
  padding: 3rem;
  text-align: center;
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 370px;
  margin-bottom: 60px;
  animation: slideFadeIn 1s ease-out forwards;
}


.whatsapp-reservation p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #F4DFBA;
  color: #000000;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  border: 1px solid #876445;
}



.whatsapp-icon {
  width: 2.8em;
  height: auto;
  display: inline-block;
}
.reserva-cta-extra {
  background-color: #FAEFE0;           
  border: 2px dashed #EEC373;          
  padding: 3.5rem;                    
  text-align: center;
  border-radius: 8px;                 
  margin: 2rem auto;                   
  max-width: 370px;                    
  margin-bottom: 100px;                
  animation: slideFadeIn 1.2s ease-out forwards;
}
.reserva-cta-extra h2 {
  font-family: 'Righteous', sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.reserva-cta-extra p {
  font-size: 18px;
  margin-bottom: 20px;
}

.reserva-extra-btn {
  display: inline-block;
  background-color: #F4DFBA;
  color: #000000;
  text-decoration: none;
  font-family: 'Righteous', sans-serif;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #876445;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.reserva-extra-btn:hover {
  background-color: #333;
  transform: scale(1.05);
}

@media (min-width: 1024px) {
  .reservas-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .reservas-bloques {
    flex: 1;
    display: flex;
    gap: 100px; 
    justify-content: center;
    margin-bottom: 50px;
  }

  .whatsapp-reservation,
  .reserva-cta-extra {
    flex: 1;
    margin: 0;
    max-width: 350px;
  }

  .imagen-reservas {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .imagen-reservas img {
    max-width: 100%;
    width: 830px;
    height: 520px;
  }
}

/* ========== CARTA ========== */


.hero {
  background: linear-gradient(rgba(15, 14, 14, 0.4), rgba(15, 14, 14, 0.4)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23876445"/><circle cx="20" cy="20" r="2" fill="%23EEC373" opacity="0.3"/><circle cx="80" cy="30" r="1.5" fill="%23EEC373" opacity="0.2"/><circle cx="50" cy="70" r="1" fill="%23EEC373" opacity="0.4"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  color: #EEC373;
  opacity: 0;
  animation: slideFadeIn 0.5s ease-out forwards;
}


.hero h1 {
  font-size: 28px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.hero h1:before,
.hero h1:after {
  content: '';
  width: 60px;
  height: 2px;
  background-color: #EEC373;
}

.hero p {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.9;
}








/* ========== CATEGORY NAVIGATION ========== */
.category-nav {
  background-color: #fff;
  padding: 15px 0;
  overflow-x: auto;
  white-space: nowrap;
  border-bottom: 2px solid #F4DFBA;
  position: sticky;
  top: 70px;
  z-index: 90;
  opacity: 0;
  animation: slideFadeIn 0.5s ease-out forwards;
  
}

.category-nav::-webkit-scrollbar {
  height: 4px;
}

.category-nav::-webkit-scrollbar-track {
  background: #F4DFBA;
}

.category-nav::-webkit-scrollbar-thumb {
  background: #EEC373;
  border-radius: 2px;
}

.category-pills {
  display: flex;
  gap: 10px;
  padding: 0 20px;
}

.category-pill {
  background-color: #F4DFBA;
  color: #0F0E0E;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.category-pill.active,
.category-pill:hover {
  background-color: #EEC373;
  color: #0F0E0E;
}

/* ========== MENU SECTIONS ========== */
.menu-section {
  padding: 40px 20px;
    opacity: 0;
  animation: slideFadeIn 0.5s ease-out forwards;
  
}

.section-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
  color: #0F0E0E;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.section-title:before,
.section-title:after {
  content: '';
  width: 60px;
  height: 2px;
  background-color: #EEC373;
}

.menu-items {
  max-width: 500px;
  margin: 0 auto;
}

.menu-item {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #F4DFBA;
}

.menu-item:last-child {
  border-bottom: none;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
}

.item-name {
  font-size: 16px;
  font-weight: bold;
  color: #0F0E0E;
  flex: 1;
  margin-right: 10px;
}

.item-price {
  font-size: 16px;
  font-weight: bold;
  color: #EEC373;
  white-space: nowrap;
}

.item-description {
  font-size: 14px;
  color: #876445;
  margin-top: 5px;
  line-height: 1.4;
}

.item-allergens {
  font-size: 12px;
  color: #CA965C;
  margin-top: 5px;
  font-style: italic;
}

.vegan-icon {
  color: #4CAF50;
  font-size: 12px;
  margin-left: 5px;
}


.featured-item {
  background-color: #F4DFBA;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.featured-item .item-name {
  color: #0F0E0E;
  font-size: 18px;
}

.paella-note {
  background-color: #EEC373;
  color: #0F0E0E;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}



.boton-carta{
  background: linear-gradient(rgba(15, 14, 14, 0.4), rgba(15, 14, 14, 0.4)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23876445"/><circle cx="20" cy="20" r="2" fill="%23EEC373" opacity="0.3"/><circle cx="80" cy="30" r="1.5" fill="%23EEC373" opacity="0.2"/><circle cx="50" cy="70" r="1" fill="%23EEC373" opacity="0.4"/></svg>');
 opacity: 0;
  animation: slideFadeIn 0.5s ease-out forwards;
  }

#lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background-color: #70543a;
  color: #EEC373;
  border: none;
  margin-left: 30px;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
    opacity: 0;
  animation: slideFadeIn 0.5s ease-out forwards;
}

.flag-icon {
  width: 1.2em;
  height: auto;
  display: inline-block;
}

#lang-toggle:hover {
  background-color: #70543a; 
}








/* ======== FOOTER 1========*/

.footer1 {
  background-color: #EEC373;
  color: #000000;
  padding:5px 10px;
  text-align: center;
}


.footer1 p {
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 15px;
}

.footer1 p.design{
  font-size: 12px;
}

.social-icons1 {
  margin-top: 20px;
  
}

.social-icons1 a {
  color: #EEC373;
  font-size: 24px;
  margin: 0 10px;
  text-decoration: none;
}

.social-icons1 a img{
  width: 43px;
  height: 43px;
}









/* ========== FOOTER ========== */
.footer {
  background-color: #EEC373;
  color: #000000;
  padding: 5px 10px;
  text-align: center;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer p {
    font-size: 16px;
  margin-bottom: 10px;
  margin-top: 15px;
}
.footer p.design{
  font-size: 12px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: #EEC373;
  font-size: 24px;
  margin: 0 10px;
  text-decoration: none;
}

/* ========== RESPONSIVE GENERAL ========== */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
  .hero h1:before,
  .hero h1:after {
    width: 40px;
  }
  .section-title {
    font-size: 20px;
  }
  .section-title:before,
  .section-title:after {
    width: 40px;
  }
}