/* ===================================
   BASE GENERAL
=================================== */
body {
  font-family: "Poppins", sans-serif;
  color: #444;
  background: #fff;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #ff3333;
}

a:hover {
  color: #ff6666;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Satisfy", sans-serif;
}



/* ===================================
   BOTÓN VOLVER ARRIBA
=================================== */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ff3333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
}

.back-to-top:hover {
  background: #ffc064;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}



/* ===================================
   HEADER / NAVBAR (sin topbar)
=================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1200;
  display: flex;
  align-items: center;
  padding: 14px 28px;
  background: linear-gradient(90deg,
    rgba(3,169,244,0.85) 0%,
    rgba(14,165,233,0.75) 100%);
  color: #fff;
  box-shadow: none;
  transition: background 0.4s ease, box-shadow 0.3s ease, top 0.3s ease;
}

#header.header-scrolled {
  background: linear-gradient(90deg,
    rgba(3,169,244,0.98) 0%,
    rgba(14,165,233,0.95) 100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* LOGO */
#header .logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1px;
  color: #ffffff;
}

#header .logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}

#header .logo img:hover {
  transform: scale(1.06) rotate(2deg);
}

/* NAVBAR */
.navbar {
  padding: 0;
}

.navbar ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.navbar a {
  display: flex;
  align-items: center;
  padding: 12px 0 12px 26px;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  transition: 0.25s;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  color: #ffeb3b;
}

/* NAVBAR MÓVIL */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    color: #fff;
  }
  .navbar ul {
    display: none;
  }
  #header {
    height: 72px;
    padding: 10px 16px;
  }
  #header .logo img {
    width: 56px;
    height: 56px;
  }
  #header .logo {
    font-size: 20px;
    gap: 10px;
  }
}

.navbar-mobile {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(39, 37, 34, 0.9);
  z-index: 999;
}

.navbar-mobile ul {
  background: #fff;
  position: absolute;
  top: 55px; left: 15px; right: 15px; bottom: 15px;
  border-radius: 8px;
  padding: 10px 0;
  overflow-y: auto;
}

.navbar-mobile a {
  padding: 10px 20px;
  color: #433f39;
}

.navbar-mobile a:hover {
  color: #ff3333;
}



/* ===================================
   HERO / CARRUSEL PRINCIPAL
=================================== */
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  margin-top: 0; /* sin espacio arriba */
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(12, 11, 10, 0.5);
  position: absolute;
  inset: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
}

#hero .carousel-content {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  margin: 0 auto 30px;
  color: #fff;
}

#hero .btn-menu {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  color: #fff;
  border: 2px solid #ff3333;
  transition: 0.5s;
}

#hero .btn-menu:hover {
  background: #ff3333;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}



/* ===================================
   SECCIÓN ABOUT
=================================== */
.about {
  background: #fffaf3;
  padding-top: 100px;
  padding-bottom: 80px;
}

.about .content {
  padding: 0 80px;
}

.about .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #5f5950;
}

.about .content p {
  font-size: 15px;
  color: #848484;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  position: relative;
  padding-left: 26px;
  margin-top: 15px;
}

.about .content ul i {
  font-size: 20px;
  color: #ff3333;
  position: absolute;
  left: 0;
  top: 2px;
}

.about .video-box {
  background-size: cover;
  background-position: center;
  min-height: 400px;
  position: relative;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ff3333 50%, rgba(255,176,59,0.4) 52%);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}



/* ===================================
   MENÚ / GALERÍA DE PLATOS
=================================== */
.menu {
  padding-top: 80px;
  padding-bottom: 100px;
}

.menu .section-title h2 span {
  color: #ff3333;
}



/* ===================================
   GALERÍA GENERAL
=================================== */
.gallery {
  padding-top: 80px;
  padding-bottom: 100px;
}

.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}



/* ===================================
   CONTACTO
=================================== */
.contact {
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact .info-wrap {
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 30px;
}

.contact .info i {
  font-size: 20px;
  color: #ff3333;
  float: left;
  width: 44px;
  height: 44px;
  background: #fff6e8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact .info h4 {
  padding-left: 60px;
  font-size: 18px;
  font-weight: 600;
  color: #433f39;
}

.contact .info p {
  padding-left: 60px;
  font-size: 14px;
  color: #7a7368;
}

.contact .info:hover i {
  background: #ff3333;
  color: #fff;
}



/* ===================================
   FOOTER
=================================== */
#footer {
  background: #35322d;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 40px 0;
  margin-top: 60px;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #ff3333;
  margin-bottom: 15px;
}

#footer p {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 40px;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #46423b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #ff3333;
}
