/* VARIABLE OBLIGATORIA */
:root {  
  --monster-color: #76c8ff;
}
/* FUENTES OBLIGATORIAS */
@font-face {  
  font-family: "YouMurderer";  
  src: url("assets/fonts/youmurderer-bb.ttf");
}
@font-face {  
  font-family: "Allan";  
  src: url("assets/fonts/Allan-Regular.ttf");
}
@font-face {  
  font-family: "AllanBold";  
  src: url("assets/fonts/Allan-Bold.ttf");
}
/* RESET BÁSICO */
*, *::before, *::after {  
  margin: 0;  
  padding: 0;  
  box-sizing: border-box;
}
/* BODY GENERAL */
body {  
  min-height: 100vh;  
  background-color: #000000;  
  background-image: radial-gradient(circle at top, #0b1120 0%, #020617 40%, #000000 100%);  
  color: #f5f5f5;  
  font-family: "Allan";  
  line-height: 1.5;
}

/* TIPOGRAFÍA GENERAL */
h1, h2, h3 {  
  font-family: "YouMurderer";  
  color: var(--monster-color);  
  text-shadow:
    0 0 6px rgba(118, 200, 255, 0.8),
    0 0 14px rgba(118, 200, 255, 0.7);
}
p {  
  font-family: "Allan";
}
strong, b {  
  font-family: "AllanBold";
}
/* HEADER / HERO */
.hero {
  position: relative;
  height: 30vh;            /* header bajo, como lo tienes */
  min-height: 5vh;
  background-image: url("assets/img/imagenfondo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.85));
}

.hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TÍTULO DEL HEADER */
.hero-title {
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1;
  letter-spacing: 0.08em;
}

.hero-title span {
  display: block;
  color: #ffffff;   /* MONS13R BURGERS en blanco */
  font-size: 5.8rem;
  text-shadow: none;
}

/* Subtítulo */
.hero-subtitle {
  margin-top: 0.2rem;
  font-size: 2.8rem;
  color: #f5f5f5;
}

/* Imagen Monsty */
.hero-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-monsty {
  height: 80%;         /* tamaño base desktop */
  max-height: 44vh;
  width: auto;
  display: block;
}

/* CONTENIDO PRINCIPAL */
main {
  padding: 2.5rem 1.5rem 3.5rem;
}

/* TÍTULOS DE SECCIÓN */
.section-title {
  font-size: clamp(10rem, 20vw, 10.4rem);
  text-align: center;
  margin-bottom: 2rem;
  color: #f5f5f5;
}

.section-title2 {
  font-size: clamp(8rem, 18vw, 7.2rem);
  text-align: center;
  margin-bottom: 2rem;
  color: #f5f5f5;
}

/* SECCIÓN MENÚ */
.menu-section {
  max-width: 1120px;
  margin: 0 auto 3.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: rgba(10, 12, 18, 0.9);
  border-radius: 18px;
  border: 1px solid rgba(118, 200, 255, 0.25);
  padding: 1.75rem 1.5rem 2rem;
  text-align: center;
  box-shadow:
    0 0 14px rgba(0, 0, 0, 0.9),
    0 0 18px rgba(118, 200, 255, 0.18);
}

.menu-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 1.25rem;
}

.menu-name {
  font-size: 4.6rem;
  margin-bottom: 0.75rem;
  color: #f5f5f5;
}

.menu-desc {
  font-size: 2rem;
}

/* SECCIÓN DELIVERY */
/* === DELIVERY: MOTO IZQUIERDA / BOTONES DERECHA === */
.delivery-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 0;
  width: 100%;
}
.delivery-img {
  max-width: 180px;
  width: 60%;
}
.delivery-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  background: rgba(5, 7, 12, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(118, 200, 255, 0.25);
  padding: 2rem 1.5rem;
  box-shadow:
    0 0 16px rgba(0, 0, 0, 0.9),
    0 0 24px rgba(118, 200, 255, 0.2);
}

.delivery-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.delivery-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: flex-start;
}

.delivery-btn {
  display: inline-block;
  padding: 1rem 1.4rem;
  border-radius: 12px;
  font-family: "AllanBold";
  font-size: 2.2rem;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid rgba(118, 200, 255, 0.4);
  background: rgba(118, 200, 255, 0.15);
  transition: 0.2s ease;
}

.delivery-btn:hover {
  background: rgba(118, 200, 255, 0.35);
}

.maps-btn { color: #76c8ff; }
.whatsapp-btn { color: #25D366; }

@media (max-width: 768px) {
  .delivery-flex {
    flex-direction: column;
  }
  .delivery-right {
    align-items: center;
  }
}


/* FOOTER */
.site-footer {
  margin-top: 3rem;
  padding: 1.75rem 1.5rem 2.25rem;
  text-align: center;
  border-top: 1px solid rgba(118, 200, 255, 0.35);
  font-size: 0.9rem;
  color: #e5e5e5;
}

/* ========================================================== */
/*                        TABLET 769–1024px                   */
/* ========================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  body {background-color: white; }
  .section-title {
    color: red ;
  }
}






/* ========================================================== */
/*                        CELULAR <768px                      */
/* ========================================================== */
@media (max-width: 768px) {

  /* MONSTER BURGERS → 50% del tamaño base */
  .hero-title span {
    font-size: calc(5.8rem * 0.50) ;
  }

  /* Subtítulo “Sabores monstruosamente buenos” → 30% del tamaño base */
  .hero-subtitle {
    font-size: calc(2.8rem * 0.30) ;
    line-height: 1.1;
  }

  /* Monsty → 40% (más chico para que no tape todo) */
  .hero-monsty {
    height: 40%;
    max-height: 40vh ;
  }

  /* ELIGE TU MONS13R → 25% (más pequeño en mobile) */
  .section-title {
    font-size: calc(10.4rem * 0.25) ;
  }

  /* DELIVERY MONSTRUOSO → 80% del tamaño base */
  .section-title2 {
    font-size: calc(7.2rem * 0.80) !important;
  }
}

@media (max-width: 768px) {

  .delivery-right {
    width: 100%;
    display: flex;
    flex-direction: column;   /* uno abajo del otro */
    align-items: center;      /* centrados */
    gap: 1.2rem;              /* espacio entre ellos */
  }

  .delivery-btn {
    width: 80%;               /* evita que se estiren o se amontonen */
    text-align: center;       /* texto centrado */
  }
}
