:root {
  --turquoise: #1b9db3;   /* Turquesa del logo */
  --blue: #0b3d5c; /* Azul profundo elegante */
  --orange: #ff6b2d; /* Naranja coral del logo */
  --white: #ffffff;
  --soft: rgba(255, 255, 255, 0.08);
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #061b27;
  font-family: "Montserrat", sans-serif;
  color: white;
  line-height: 1.5;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(6, 27, 39, 0.88);
  backdrop-filter: blur(10px);
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 42px;
}

.brand-text {
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  font-weight: 600;
  opacity: 0.85;
  transition: 0.3s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--turquoise);
}

.nav-links a.active {
  color: var(--orange);
  opacity: 1;
}

.menu-btn {
  display: none;
  background: none;
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(6, 27, 39, 0.98);
  padding: 12px;
}

.mobile-menu a {
  padding: 12px;
  font-weight: 600;
  border-radius: 10px;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* HERO */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 27, 39, 0.5), rgba(6, 27, 39, 0.95));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 70px;
  letter-spacing: 3px;
}

.highlight {
  color: var(--orange);
}

.subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-top: 10px;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
}

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0px 10px 30px rgba(255, 107, 45, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-3px);
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.03);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  opacity: 0.8;
  margin-top: 10px;
  margin-bottom: 40px;
}

/* GRIDS */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* CARD */
.card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 10px 30px var(--shadow);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card-body p {
  font-size: 14px;
  opacity: 0.8;
}

.price {
  display: inline-block;
  margin-top: 12px;
  font-weight: 800;
  color: var(--orange);
}

/* CATEGORIES */
.categories {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cat-item {
  background: rgba(255, 255, 255, 0.07);
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s;
}

.cat-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

/* LOCATION */
.location-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.location-info h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.location-info p {
  margin-bottom: 8px;
  opacity: 0.9;
}

.location-map iframe {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  border: none;
}

/* MENU PAGE */
.menu-hero {
  padding: 90px 0 40px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(15, 95, 122, 0.55), rgba(6, 27, 39, 0.95));
}

.menu-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 50px;
}

.menu-hero p {
  opacity: 0.85;
  margin-top: 10px;
}

.search-bar {
  margin-top: 28px;
  padding: 14px;
  width: 100%;
  max-width: 600px;
  border-radius: 14px;
  border: none;
  outline: none;
  font-size: 15px;
}

.menu-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.menu-item {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.menu-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.menu-item p {
  opacity: 0.8;
  font-size: 14px;
}

/* CONTACT */
.contact-box {
  max-width: 600px;
  margin: auto;
  background: rgba(255, 255, 255, 0.06);
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0px 10px 30px var(--shadow);
}

.contact-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  margin-bottom: 14px;
}

.contact-box p {
  margin-bottom: 10px;
  opacity: 0.9;
}

.contact-box .btn {
  margin-top: 15px;
}

/* FOOTER */
.footer {
  padding: 40px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-mini {
  opacity: 0.7;
  margin-top: 8px;
  font-size: 13px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.whatsapp-float.disabled {
  opacity: 0.85;
}

/* RESPONSIVE */
@media(max-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .location-box {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 48px;
  }
}
