/* Header */
.header {
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all var(--transition-normal);
}

.header-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition-fast);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px var(--clr-gold-glow));
}

.logo h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--clr-gold);
  background: linear-gradient(135deg, #fff 0%, var(--clr-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Main Container */
.container {
  max-width: 1280px;
  margin: 3rem auto;
  padding: 0 5%;
  min-height: 60vh;
}

/* Grilla de Tarjetas */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  perspective: 1000px;
}

/* Hero Featured Section */
.hero-featured {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 4rem;
  display: flex;
  min-height: 400px;
  background: var(--clr-bg-surface);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
}

.hero-img-container {
  flex: 1;
  position: relative;
}

.hero-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(to right, transparent, var(--clr-bg-surface));
}

.hero-content {
  flex: 1;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--clr-text-main);
}

.hero-desc {
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero-featured {
    flex-direction: column;
  }
  .hero-img-container {
    height: 250px;
    flex: none;
  }
  .hero-img-container::after {
    background: linear-gradient(to top, var(--clr-bg-surface), transparent);
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
  }
  .hero-content {
    padding: 2rem;
  }
  .hero-title {
    font-size: 2rem;
  }
}

/* Footer Section */
.site-footer {
  background: rgba(10, 10, 12, 0.95);
  border-top: 1px solid var(--clr-border);
  padding: 3rem 0;
  margin-top: 4rem;
  text-align: center;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  color: var(--clr-gold);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.social-links a {
  color: var(--clr-text-muted);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--clr-border);
}

.social-links a:hover {
  color: var(--clr-gold);
  border-color: var(--clr-gold);
  transform: translateY(-3px);
  background: rgba(212, 175, 55, 0.1);
}

.footer-copy {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  opacity: 0.7;
}
