/* =========================================================
   PALADAR GOURMET - DARK LUXURY STYLESHEET
   ========================================================= */

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background-color: #0b0f14;
  color: #f5f1e8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- Fondo amaderado (textura de madera) ---------- */
body {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, transparent 7%, transparent 93%, rgba(0, 0, 0, 0.22) 100%),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.12) 0px,
      rgba(0, 0, 0, 0.12) 1px,
      rgba(255, 255, 255, 0.03) 1px,
      rgba(255, 255, 255, 0.03) 3px,
      rgba(0, 0, 0, 0.08) 3px,
      rgba(0, 0, 0, 0.08) 4px,
      rgba(255, 255, 255, 0.04) 4px,
      rgba(255, 255, 255, 0.04) 7px,
      rgba(0, 0, 0, 0.06) 7px,
      rgba(0, 0, 0, 0.06) 9px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.06) 0px,
      rgba(0, 0, 0, 0.06) 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 5px,
      rgba(0, 0, 0, 0.05) 5px,
      rgba(0, 0, 0, 0.05) 6px,
      rgba(255, 255, 255, 0.02) 6px,
      rgba(255, 255, 255, 0.02) 9px
    ),
    linear-gradient(180deg, #2a1d12 0%, #3a2817 30%, #2e2013 60%, #241a10 100%);
  background-attachment: fixed;
  background-size: auto, auto, auto, cover;
}

/* Layout container */
.lux-main-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ---------- Header & Nav ---------- */
.lux-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 20, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  width: 100%;
}

.lux-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.lux-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #f5f1e8;
}

.lux-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d4af37, #a8842c);
  color: #0b0f14;
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.lux-brand-text {
  font-family: Georgia, "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lux-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lux-nav a {
  color: rgba(245, 241, 232, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.lux-nav a:hover {
  color: #d4af37;
}

/* ---------- Botones ---------- */
.lux-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.lux-btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.lux-btn-gold {
  background: linear-gradient(135deg, #10b981, #0d9668);
  color: #f5f1e8;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.lux-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
}

.lux-btn-ghost {
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #d4af37;
  background: transparent;
}

.lux-btn-ghost:hover {
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-3px);
}

/* ---------- Hero ---------- */
.lux-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  background: radial-gradient(circle at top center, rgba(212, 175, 55, 0.12) 0%, transparent 65%), #0b0f14;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  width: 100%;
}

.lux-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.lux-hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 22px;
}

.lux-hero-media {
  flex: 0 0 auto;
  max-width: 420px;
  width: 100%;
}

.lux-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.7);
}

.lux-eyebrow {
  display: inline-block;
  color: #d4af37;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  padding: 6px 16px;
}

.lux-hero-title {
  font-family: Georgia, "Playfair Display", serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: #f5f1e8;
}

.lux-hero-title em {
  font-style: italic;
  color: #d4af37;
}

.lux-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245, 241, 232, 0.8);
  margin: 0;
  max-width: 640px;
  line-height: 1.6;
}

.lux-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.lux-hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: rgba(245, 241, 232, 0.7);
  font-size: 0.9rem;
  margin-top: 12px;
}

.lux-star {
  color: #d4af37;
  font-weight: 800;
}

.lux-dot {
  opacity: 0.5;
}

/* ---------- Secciones Genéricas ---------- */
.lux-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.lux-section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lux-section-head h2 {
  font-family: Georgia, "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0;
  color: #f5f1e8;
}

.lux-section-head p {
  color: rgba(245, 241, 232, 0.7);
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- Categorías y Menú ---------- */
.lux-categories {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.lux-category {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lux-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Playfair Display", serif;
  font-size: 1.6rem;
  margin: 0;
  color: #f5f1e8;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  padding-bottom: 14px;
}

.lux-cat-icon {
  font-size: 1.4rem;
}

.lux-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ---------- Tarjetas de Menú ---------- */
.lux-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 20px;
  background: linear-gradient(160deg, #151c24, #10151c);
  padding: 28px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  transition: all 0.25s ease;
}

.lux-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.7);
}

.lux-card h4 {
  font-family: Georgia, "Playfair Display", serif;
  font-size: 1.25rem;
  margin: 0;
  color: #f5f1e8;
}

.lux-card p {
  margin: 0;
  color: rgba(245, 241, 232, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.lux-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.lux-price {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #d4af37;
}

.lux-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #b8912e);
  color: #0b0f14;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.lux-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.lux-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #b8912e);
  color: #0b0f14;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lux-badge-pop {
  background: linear-gradient(135deg, #10b981, #0d9668);
  color: #f5f1e8;
}

/* ---------- Beneficios ---------- */
.lux-benefits {
  padding-top: 40px;
}

.lux-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.lux-benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 20px;
  background: linear-gradient(160deg, #151c24, #10151c);
  padding: 36px 24px;
  transition: all 0.25s ease;
}

.lux-benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.7);
}

.lux-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.14);
  font-size: 1.8rem;
}

.lux-benefit-card h4 {
  font-family: Georgia, "Playfair Display", serif;
  font-size: 1.2rem;
  margin: 0;
  color: #f5f1e8;
}

.lux-benefit-card p {
  margin: 0;
  color: rgba(245, 241, 232, 0.7);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ---------- Contacto ---------- */
.lux-contact-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 24px;
  background: linear-gradient(150deg, #151c24, #0e1319);
  padding: 48px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 0 auto;
}

.lux-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lux-contact-info h2 {
  font-family: Georgia, "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin: 0;
  color: #f5f1e8;
}

.lux-contact-info p {
  margin: 0;
  color: rgba(245, 241, 232, 0.75);
  line-height: 1.6;
}

.lux-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0;
}

.lux-contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 241, 232, 0.85);
  font-size: 1rem;
}

.lux-contact-detail strong {
  color: #d4af37;
}

.lux-contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

/* ---------- Footer ---------- */
.lux-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 50px 24px 32px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  width: 100%;
}

.lux-footer-brand {
  font-family: Georgia, "Playfair Display", serif;
  font-size: 1.4rem;
  color: #f5f1e8;
}

.lux-footer p {
  margin: 0;
  color: rgba(245, 241, 232, 0.65);
  font-size: 0.92rem;
  line-height: 1.6;
}

.lux-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.lux-footer-links a {
  color: rgba(245, 241, 232, 0.75);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.25s ease;
}

.lux-footer-links a:hover {
  color: #d4af37;
}

.lux-footer-copy {
  color: rgba(245, 241, 232, 0.45);
  font-size: 0.85rem;
  margin-top: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .lux-header-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 16px;
  }
  .lux-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .lux-hero {
    padding: 60px 20px;
  }
  .lux-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .lux-hero-actions .lux-btn {
    width: 100%;
  }
  .lux-section {
    padding: 50px 20px;
  }
  .lux-menu-grid, .lux-benefits-grid {
    grid-template-columns: 1fr;
  }
  .lux-contact-card {
    padding: 32px 20px;
  }
  .lux-contact-cta .lux-btn {
    width: 100%;
  }
}
