:root {
  --primary-color: #ffa217;
  --secondary-color: #252323;
  --light-color: #fffaeb;
  --dark-color: #2e2e2e;
  --shadow-color: rgba(0, 0, 0, 0.15);
}

/* Typography */
@font-face {
  font-family: "PlayfairDisplay";
  src: url("/public/typography/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("/public/typography/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--light-color);
  font-family: "Poppins";
}

body {
  background-color: var(--dark-color);
  line-height: 1.6;
}

/* Header */
header {
  background-color: var(--dark-color);
  box-shadow: 0 4px 12px var(--shadow-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--primary-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--primary-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  font-family: "PlayfairDisplay";
}

.burger-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
}

.burger-menu .line {
  background: var(--light-color);
  width: 100%;
  height: 3px;
}

.burger-menu.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-menu.active .line:nth-child(2) {
  opacity: 0;
}
.burger-menu.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-bar {
  display: flex;
  position: absolute;
  flex-direction: column;
  justify-content: center;
  background-color: var(--dark-color);
  right: 0;
  top: 50dvh;
  width: 70%;
  transform: translate(-20%, -50%);
  height: 0px;
  overflow: hidden;
  text-align: center;
  gap: 15px;
}

.nav-bar.active {
  height: 60dvh;
  border: solid 3px var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 1rem;
}

nav ul li {
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: var(--light-color);
  font-weight: 500;
  font-size: 1.5rem;
  text-transform: uppercase;
}

nav ul li a:hover {
  color: var(--primary-color);
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: auto;
  background: url("/public/assets/header.jpg") no-repeat center center/cover;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
  color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: relative;
  backdrop-filter: blur(2px);
  z-index: 2;
  padding: 100px 20px;
  animation: fadeIn 1.5s ease;
  width: 100%;
  height: 85dvh;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
  font-family: "PlayfairDisplay";
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  font-style: italic;
  font-family: "PlayfairDisplay";
}

.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  text-decoration: none;
  border-radius: 0px;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  font-size: 1rem;
  line-height: 1;
  width: 100%;
  max-width: 400px;
}

.btn:hover {
  background-color: transparent;
  color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ghost-btn {
  background-color: transparent;
  color: var(--light-color);
}

.ghost-btn:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.bold {
  font-weight: 600;
  color: black;
}

/* Secciones */
.section {
  padding: 2rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
  color: var(--light-color);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  font-family: "PlayfairDisplay";
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0px;
}

.section-title span {
  font-family: "PlayfairDisplay";
  color: var(--primary-color);
}

/* Sección Menú */
#menu {
  background: var(--secondary-color);
}

.menu-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
  justify-items: center;
}

.menu-item {
  background-color: var(--light-color);
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 350px;
  width: 100%;
}

.menu-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.menu-item-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.menu-item-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item:hover .menu-item-img img {
  transform: scale(1.1);
}

.menu-item-content {
  padding: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-item-title {
  font-size: 1.8rem;
  color: var(--dark-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "PlayfairDisplay";
}

.menu-item-details {
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
}

.menu-item-details span {
  color: var(--dark-color);
  font-family: "PlayfairDisplay";
}

.menu-item-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
  background-color: var(--light-color);
  border-radius: 0px;
}

.menu-item-desc {
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
}

.menu-item-flag {
  position: absolute;
  top: -20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  padding: 5px 15px;
  border-radius: 0px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-item-content h4 {
  font-size: 1.4rem;
  color: var(--dark-color);
  font-family: "PlayfairDisplay";
}

.menu-item-content li {
  font-size: 1.3rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  color: var(--dark-color);
  font-family: "PlayfairDisplay";
}

/* Sección Ubicación */
#ubicacion {
  position: relative;
  overflow: hidden;
  background-color: var(--secondary-color);
}

#ubicacion .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.location-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 1.5rem;
}

.location-info {
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 10px;
}

.location-info h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.location-info p {
  font-size: 1.2rem;
  display: flex;
  gap: 15px;
}

.location-info a {
  color: var(--light-color);
}

.location-info p strong {
  margin-right: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.location-info ul {
  list-style: none;
}

.location-info ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.location-info ul li::before {
  content: "⚬";
  color: var(--primary-color);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.location-map {
  min-width: 300px;
  aspect-ratio: 3/2;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 3px solid var(--primary-color);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.9) contrast(1.1);
}
/* Sección Contacto */
.contact-card {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(145deg, #2c2c2c, #3a3a3a);
  color: var(--light-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.contact-image {
  width: 100%;
  aspect-ratio: 5/3;
  overflow: hidden;
  position: relative;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent);
  border-radius: 20px 20px 0 0;
}

.contact-links {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--light-color);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.4s ease;
}

.contact-link:hover::before {
  left: 100%;
}

.contact-link:hover {
  background: var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  width: 30px;
  height: 30px;
  color: var(--light-color);
  transition: transform 0.3s ease;
}

/* Footer */
footer {
  background: linear-gradient(to right, #1a1a1a, #2e2e2e);
  color: var(--light-color);
  padding: 80px 0 30px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.footer-logo {
  font-size: 2.5rem;
  background: var(--primary-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-family: "PlayfairDisplay";
  font-weight: bold;
}

.footer-slogan {
  font-style: italic;
  color: #aaa;
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: var(--light-color);
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  border-radius: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
  color: var(--light-color);
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--light-color);
  position: relative;
  display: inline-block;
  font-family: "PlayfairDisplay";
}

.footer-title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.footer-info p {
  margin-bottom: 15px;
  color: #aaa;
  display: flex;
  align-items: flex-start;
}

.footer-info i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 3px;
}

.opening-hours {
  list-style: none;
}

.opening-hours li {
  margin-bottom: 10px;
  color: #aaa;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #aaa;
}

.footer-bottom a:hover {
  color: var(--primary-color);
}

.footer-bottom .bold {
  font-weight: 700;
  color: var(--light-color);
  font-family: "PlayfairDisplay";
}

.so-logo {
  width: 24px;
  height: 24px;
}

.copyright {
  color: #777;
  font-size: 0.9rem;
  text-align: center;
}

/* Elementos Decorativos */

.oph {
  color: var(--primary-color) !important;
}

@media screen and (min-width: 700px) {
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .burger-menu {
    display: none;
  }

  .nav-bar {
    position: static;
    display: flex;
    flex-direction: row;
    overflow: visible;
    transform: none;
  }

  nav ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    align-items: center;
  }

  nav ul li {
    margin-left: 35px;
    margin-block: 0;
    position: relative;
  }

  nav ul li a {
    font-size: 1.1rem;
    display: inline-block;
  }

  nav ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
  }

  nav ul li a:hover::after {
    width: 100%;
  }

  .hero {
    height: 90vh;
  }

  .hero-content {
    padding: 20px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1.4rem;
  }

  .cta-section {
    flex-direction: row;
    justify-content: center;
  }

  .section-title {
    font-size: 3rem;
  }

  .menu-container {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  .menu-item {
    max-width: none;
  }

  #ubicacion .container {
    width: 90%;
  }

  .location-container {
    flex-direction: row;
    gap: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary-color);
    background-color: var(--dark-color);
  }

  .location-info {
    flex: 1;
    padding-left: 1rem;
  }

  .location-info p strong {
    min-width: 130px;
  }

  .location-map {
    flex: 1;
  }

  .social-contact {
    grid-template-columns: 1fr 1fr;
  }

  .social-image {
    height: 300px;
  }

  .social-links {
    gap: 20px;
  }

  .social-link {
    padding: 20px 30px;
  }

  .contact-card {
    max-width: 600px;
  }

  .contact-link {
    font-size: 1.1rem;
    padding: 12px 20px;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
  }
}
