/* ===================================
   CATERING HOME - LANDING PAGE
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
  background: #f9fafb;
  overflow-x: hidden;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
  background-color: #0a0a0a;
  background-image:
    /* Textura de ruido fino para simular concreto */
    repeating-radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.01) 0px,
      transparent 1px,
      transparent 2px
    ),
    repeating-radial-gradient(
      circle at 60% 70%,
      rgba(255, 255, 255, 0.008) 0px,
      transparent 1px,
      transparent 3px
    ),
    repeating-radial-gradient(
      circle at 80% 10%,
      rgba(0, 0, 0, 0.3) 0px,
      transparent 1px,
      transparent 2px
    ),
    /* Vetas sutiles como asfalto */
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.015) 0%,
      transparent 30%,
      transparent 70%,
      rgba(255, 255, 255, 0.01) 100%
    ),
    /* Base negra */
    linear-gradient(to bottom, #0d0d0d 0%, #080808 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    /* Manchas irregulares para efecto de concreto desgastado */
    radial-gradient(ellipse at 10% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 25%),
    radial-gradient(ellipse at 90% 80%, rgba(0, 0, 0, 0.3) 0%, transparent 30%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.008) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(0, 0, 0, 0.2) 0%, transparent 20%);
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Capa adicional de ruido/grano para textura de concreto */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.035"/></svg>');
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  padding: 20px 0;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #e5e7eb;
  font-weight: 400;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(145deg, #EB0029, #FF5252);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow:
    0 10px 30px rgba(235, 0, 41, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 40px rgba(235, 0, 41, 0.5),
    0 6px 16px rgba(0, 0, 0, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  max-height: 450px;
}

.hero-image img {
  width: 100%;
  height: 450px;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* ===================================
   MENU SECTION
   =================================== */

.menu-section {
  padding: 80px 20px;
  background: #ffffff;
}

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

.menu-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 50px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.menu-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 32px rgba(15, 23, 42, 0.15),
    0 0 0 1px rgba(235, 0, 41, 0.1);
}

.menu-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.05);
}

.menu-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  padding: 16px 16px 8px;
  line-height: 1.3;
}

.menu-card-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #EB0029;
  padding: 0 16px 8px;
  letter-spacing: -0.02em;
}

.menu-card-description {
  font-size: 0.875rem;
  color: #6b7280;
  padding: 0 16px 16px;
  line-height: 1.5;
}

/* Menu CTA */
.menu-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
  background: #1a1a1a;
  color: #9ca3af;
  text-align: center;
  padding: 24px 20px;
  font-size: 0.875rem;
}

/* ===================================
   RESPONSIVE
   =================================== */

/* Tablet */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-section {
    padding: 50px 20px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .hero-image {
    max-height: 350px;
  }

  .hero-image img {
    height: 350px;
  }

  .menu-section {
    padding: 60px 20px;
  }

  .menu-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .menu-card-image {
    height: 200px;
  }

  .menu-card-title {
    font-size: 1.05rem;
  }

  .menu-card-price {
    font-size: 1.3rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-section {
    padding: 32px 16px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 20px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    padding: 15px 24px;
    font-size: 0.95rem;
  }

  .hero-image {
    max-height: 280px;
    border-radius: 16px;
  }

  .hero-image img {
    height: 280px;
  }

  .menu-section {
    padding: 40px 16px;
  }

  .menu-title {
    font-size: 1.65rem;
    margin-bottom: 24px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-card {
    border-radius: 12px;
  }

  .menu-card-image {
    height: 220px;
  }

  .menu-card-title {
    font-size: 1.05rem;
    padding: 14px 14px 8px;
  }

  .menu-card-price {
    font-size: 1.35rem;
    padding: 0 14px 8px;
  }

  .menu-card-description {
    font-size: 0.85rem;
    padding: 0 14px 14px;
    line-height: 1.45;
  }

  .menu-cta {
    margin-top: 32px;
  }

  .footer {
    font-size: 0.8rem;
    padding: 20px 16px;
  }
}
