/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #080808;
  color: #ffffff;
}

/* =========================================
   HEADER
========================================= */

.main-header {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 20;
}

.header-container {
  width: min(1200px, 92%);

  margin: auto;

  min-height: 110px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-logo {
  width: 210px;
  max-width: 45%;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: #ffffff;

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;

  transition: 0.25s;
}

.main-nav a:hover {
  color: #f5b51b;
}

/* =========================================
   HERO
========================================= */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 25px 70px;
  background-image: url("../img/portada.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.04) 55%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 850px;
  transform: translateY(145px);
}

.hero-small {
  color: #f5b51b;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 6px;
  margin-bottom: 12px;
}

.hero h1 {
  color: #f5b51b;
  font-size: clamp(70px, 10vw, 140px);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  line-height: 0.9;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero h2 {
  font-size: clamp(28px, 5vw, 58px);
  letter-spacing: 6px;
  margin-top: 20px;
  color: #ffffff;
}

.hero-description {
  max-width: 650px;
  margin: 20px auto 0;
  font-size: 20px;
  line-height: 1.6;
  color: #f2f2f2;
}

.hero-logo {
  display: block;
  width: min(520px, 85vw);
  height: auto;
  margin: 0 auto 40px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.65));
}

/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-btn {
  min-width: 130px;
  padding: 11px 18px;
  border: 2px solid #f5b51b;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.38);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #f5b51b;
  color: #111;
}

.happy-btn {
  background: rgba(0, 0, 0, 0.38);
  border-color: #f5b51b;
}

.happy-btn:hover {
  background: #f5b51b;
  color: white;
}

/* =========================================
   TEMP SECTIONS
========================================= */

/* =====================================================
   SECCIÓN DESAYUNOS
===================================================== */

.desayuno-section {
  position: relative;

  width: 100%;

  padding: 90px 25px;

  background: linear-gradient(135deg, #fffaf0 0%, #f5ead6 100%);

  color: #071a3d;

  overflow: hidden;
}

.desayuno-container {
  width: min(1200px, 100%);

  margin: 0 auto;
}

/* =====================================================
   CABECERA DESAYUNO
===================================================== */

.desayuno-header {
  max-width: 760px;

  margin: 0 auto 60px;

  text-align: center;
}

.section-eyebrow {
  display: block;

  margin-bottom: 8px;

  color: #b51d23;

  font-size: 14px;
  font-weight: 900;

  letter-spacing: 4px;
}

.desayuno-header h2 {
  margin: 0;

  color: #071a3d;

  font-size: clamp(48px, 8vw, 90px);

  font-weight: 900;

  line-height: 1;

  letter-spacing: 2px;
}

.desayuno-line {
  width: 85px;
  height: 5px;

  margin: 18px auto;

  background: #e5a900;

  border-radius: 20px;
}

.desayuno-header p {
  margin: 0 0 20px;

  color: #b51d23;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 27px;
  font-style: italic;
  font-weight: 700;
}

.desayuno-horario {
  display: inline-block;

  padding: 10px 18px;

  background: #071a3d;

  color: #ffffff;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 1px;

  border-radius: 4px;
}

/* =====================================================
   GRID DE PRODUCTOS
===================================================== */

.desayuno-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}
.temp-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================
   MOBILE
========================================= */

/* =====================================================
   CELULAR
   0px - 600px
===================================================== */

@media (max-width: 600px) {
  .hero {
    min-height: 100svh;
    padding: 40px 18px 25px;
    background-position: center center;
  }

  /* LOGO + BOTONES */

  .hero-content {
    width: 100%;
    max-width: 360px;
    transform: translateY(135px);
  }

  /* LOGO */

  .hero-logo {
    width: 58vw;
    max-width: 245px;
    height: auto;
    margin: 0 auto 24px;
    animation: logoEntrada 1.2s ease-out both;
  }

  @keyframes logoEntrada {
    0% {
      opacity: 0;
      transform: translateY(30px) scale(0.88);
      filter: blur(5px);
    }
    60% {
      opacity: 1;
      transform: translateY(-4px) scale(1.03);
      filter: blur(0);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }
  }

  /* CONTENEDOR BOTONES */

  .hero-buttons {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  /* BOTONES */

  .hero-btn {
    opacity: 0;
    animation: botonEntrada 0.7s ease-out forwards;
  }

  .hero-btn:nth-child(1) {
    animation-delay: 0.45s;
  }

  .hero-btn:nth-child(2) {
    animation-delay: 0.6s;
  }

  .hero-btn:nth-child(3) {
    animation-delay: 0.75s;
  }

  .hero-btn:nth-child(4) {
    animation-delay: 0.9s;
  }

  @keyframes botonEntrada {
    from {
      opacity: 0;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-btn:hover {
    background: #f5b51b;
    color: #111;
    transform: translateY(-2px);
  }

  .hero-btn:active {
    transform: scale(0.97);
  }
  /* HAPPY HOUR IGUAL A LOS DEMÁS */

  .happy-btn {
    background: rgba(0, 0, 0, 0.42);
    border-color: #f5b51b;
    color: #ffffff;
  }
}

.desayuno-section {
    padding: 65px 18px;
}

.desayuno-header {
    margin-bottom: 40px;
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
}

.desayuno-header h2 {
    font-size: 46px;
}

.desayuno-header p {
    font-size: 21px;
}

.desayuno-horario {
    font-size: 11px;

    padding: 9px 13px;
}

.desayuno-grid {
    grid-template-columns: 1fr;

    gap: 18px;
}
/* =====================================================
   TABLETA
   601px - 1024px
===================================================== */

@media (min-width: 601px) and (max-width: 1024px) {
  .hero {
    min-height: 100vh;
    padding: 60px 30px;
    background-position: center center;
  }

  /* LOGO + BOTONES */

  .hero-content {
    width: 100%;
    max-width: 650px;
    transform: translateY(110px);
  }

  /* LOGO */

  .hero-logo {
    width: 340px;
    max-width: 50vw;
  }

  /* BOTONES */

  .hero-buttons {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-btn {
    width: 100%;
    padding: 13px 15px;
    font-size: 13px;
    background: rgba(0, 0, 0, 0.42);
    border: 2px solid #f5b51b;
    color: #ffffff;
  }

  .happy-btn {
    background: rgba(0, 0, 0, 0.42);
    border-color: #f5b51b;
    color: #ffffff;
  }

  .desayuno-grid {
    grid-template-columns:
        repeat(2, 1fr);
}
}

/* =====================================================
   LAPTOP / DESKTOP
   1025px EN ADELANTE
===================================================== */

@media (min-width: 1025px) {
  .hero {
    min-height: 100vh;
    padding: 70px 40px;
    background-position: center center;
  }

  /* LOGO + BOTONES */

  .hero-content {
    width: 100%;
    max-width: 850px;
    transform: translateY(80px);
  }

  /* LOGO */

  .hero-logo {
    width: 400px;
  }

  /* BOTONES */

  .hero-buttons {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .hero-btn {
    width: 100%;
    padding: 12px 15px;
    font-size: 13px;
    background: rgba(0, 0, 0, 0.42);
    border: 2px solid #f5b51b;
    color: #ffffff;
  }

  .happy-btn {
    background: rgba(0, 0, 0, 0.42);
    border-color: #f5b51b;
    color: #ffffff;
  }
  .desayuno-grid {
    grid-template-columns:
        repeat(3, 1fr);
}
}
