@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap");

/* Reset y tipografía */
body {
  font-family: "Open Sans", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2 {
  font-family: 'Dancing Script', cursive;
}

/* Espaciado global */
.layout_padding { padding: 90px 0; }
.layout_padding2 { padding: 75px 0; }
.layout_padding-top { padding-top: 90px; }
.layout_padding-bottom { padding-bottom: 90px; }
.layout_padding2-top { padding-top: 75px; }
.layout_padding2-bottom { padding-bottom: 75px; }

/* Encabezados */
.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

.heading_container h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0;
  position: relative;
}

.heading_container h2 span {
  color: #ffbe33;
}

.heading_container p {
  margin: 10px 0 0;
}

/* Links y botones */
a { text-decoration: none; color: inherit; }
a:hover, a:focus { color: #ffbe33; }

.btn {
  outline: none !important;
  box-shadow: none;
  border: none;
  cursor: pointer;
}

/* Hero y background */
.hero_area {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bg-box {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub_page .hero_area { min-height: auto; }
.sub_page .hero_area .bg-box img { object-position: right top; }

/* Header */
.header_section { padding: 15px 0; }

.navbar-brand {
  font-family: 'Dancing Script', cursive;
}
.navbar-brand span {
  font-weight: bold;
  font-size: 32px;
  color: #ffffff;
}

.custom_nav-container .navbar-nav {
  padding-left: 18%;
}

.custom_nav-container .nav-link {
  padding: 5px 20px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .nav-item:hover .nav-link,
.custom_nav-container .nav-item.active .nav-link {
  color: #ffbe33;
}

.user_option {
  display: flex;
  align-items: center;
}

.user_option a { margin: 0 10px; }
.user_option .user_link:hover,
.user_option .cart_link:hover svg { color: #ffbe33; fill: #ffbe33; }

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span,
.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.3s;
  position: relative;
}
.custom_nav-container .navbar-toggler span::before { top: -10px; }
.custom_nav-container .navbar-toggler span::after { top: 10px; }

/* Slider */
.slider_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px 0 75px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 32px;
}
.slider_section .detail-box {
  flex: 1;
  min-width: 320px;
}
.slider_section .detail-box h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.slider_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ffbe33;
  color: #fff;
  border-radius: 45px;
  transition: 0.3s;
}
.slider_section .detail-box a:hover {
  background-color: #e69c00;
}
.slider_section .img-box {
  flex: 1;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider_section .img-box img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(229,62,62,0.10);
}

/* Offer section */
.offer_section .box {
  display: flex;
  align-items: center;
  margin-top: 45px;
  border-radius: 5px;
  padding: 20px;
  background-color: #222831;
  color: #fff;
  transition: transform 0.3s;
}
.offer_section .box:hover .img-box img { transform: scale(1.1); }

.offer_section .box .img-box {
  width: 175px;
  height: 175px;
  margin-right: 15px;
  border-radius: 50%;
  border: 5px solid #ffbe33;
  overflow: hidden;
  flex-shrink: 0;
}
.offer_section .box .detail-box h5,
.offer_section .box .detail-box h6 { font-family: 'Dancing Script', cursive; }

/* Food section */
.food_section .filters_menu { display: flex; justify-content: center; flex-wrap: wrap; list-style: none; margin: 45px 0 20px; }
.food_section .filters_menu li { padding: 7px 25px; cursor: pointer; border-radius: 25px; }
.food_section .filters_menu li.active { background-color: #222831; color: #fff; }

/* About section */
.about_section { background: #222831; color: #fff; }
.about_section .img-box img { max-width: 445px; }

/* Book section */
.book_section .form_container .form-control {
  width: 100%;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  border: 1px solid #999;
  border-radius: 5px;
  outline: none;
}

/* Client section */
.client_section .box { display: flex; flex-direction: column; margin: 15px; }
.client_section .box .img-box img { border-radius: 50%; border: 5px solid #ffbe33; }

/* Contact section */
.contact_section input,
.contact_section .message-box {
  width: 100%;
  padding-left: 25px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  color: #000;
}

/* Footer */
.footer_section { background-color: #222831; color: #fff; padding: 75px 0 40px; text-align: center; }
.footer_section h4, .footer_section .footer-logo { font-family: 'Dancing Script', cursive; font-weight: 600; margin-bottom: 20px; }
.footer_section .footer_social a { background-color: #fff; color: #222831; margin: 0 2.5px; border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; }
.footer_section .footer_social a:hover { color: #ffbe33; }
