/* =====================================================
   EL DORADO RESTAURANT
   BREAKFAST PAGE
===================================================== */

/* =====================================================
   RESET
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* =====================================================
   BREAKFAST PAGE
===================================================== */

.breakfast-page {
  min-height: 100vh;

  background: linear-gradient(135deg, #fffaf0 0%, #f4e6c9 50%, #fff8e8 100%);

  color: #071a3d;
}

/* =====================================================
   MAIN
===================================================== */

.breakfast-main {
  width: 100%;
  min-height: 100vh;
}

/* =====================================================
   HEADER
===================================================== */

.breakfast-header {
  width: min(1200px, 92%);

  margin: 0 auto;

  padding: 25px 0 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =====================================================
   HOME BUTTON
===================================================== */

.breakfast-home {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 10px 17px;

  border: 2px solid #071a3d;

  color: #071a3d;

  background: rgba(255, 255, 255, 0.25);

  text-decoration: none;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1.5px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.breakfast-home:hover {
  background: #071a3d;

  color: #ffffff;

  transform: translateY(-2px);
}

/* =====================================================
   LOGO
===================================================== */

.breakfast-logo {
  display: block;

  width: 160px;
  height: auto;

  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.18));
}

/* =====================================================
   INTRO
===================================================== */

.breakfast-intro {
  width: min(900px, 90%);

  margin: 45px auto 55px;

  text-align: center;
}

/* GOOD MORNING */

.breakfast-small {
  display: block;

  margin-bottom: 10px;

  color: #b51d23;

  font-size: 13px;
  font-weight: 900;

  letter-spacing: 5px;

  animation: breakfastFade 0.8s ease both;
}

/* BREAKFAST */

.breakfast-intro h1 {
  margin: 0;

  color: #071a3d;

  font-size: clamp(52px, 9vw, 100px);

  font-weight: 900;

  line-height: 0.95;

  letter-spacing: 2px;

  animation: breakfastTitle 0.9s ease 0.15s both;
}

/* GOLD LINE */

.breakfast-line {
  width: 90px;
  height: 5px;

  margin: 20px auto;

  background: #d9a414;

  border-radius: 20px;

  animation: breakfastLine 0.8s ease 0.4s both;
}

/* SUBTITLE */

.breakfast-intro p {
  margin: 0 0 20px;

  color: #b51d23;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 26px;
  font-style: italic;
  font-weight: 700;
}

/* HOURS */

.breakfast-hours {
  display: inline-block;

  padding: 10px 18px;

  background: #071a3d;

  color: #ffffff;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1.3px;

  box-shadow: 0 5px 14px rgba(7, 26, 61, 0.15);
}

/* =====================================================
   BREAKFAST MENU
===================================================== */

.breakfast-menu {
  width: min(1200px, 92%);

  margin: 0 auto 70px;
}

/* =====================================================
   PRODUCT GRID
===================================================== */

.breakfast-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;
}

/* =====================================================
   PRODUCT CARD
===================================================== */

.breakfast-card {
  position: relative;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.78);

  border: 1px solid rgba(7, 26, 61, 0.12);

  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  animation: cardEntrada 0.8s ease both;
}

/* CARDS ENTER ONE BY ONE */

.breakfast-card:nth-child(1) {
  animation-delay: 0.1s;
}

.breakfast-card:nth-child(2) {
  animation-delay: 0.2s;
}

.breakfast-card:nth-child(3) {
  animation-delay: 0.3s;
}

.breakfast-card:nth-child(4) {
  animation-delay: 0.4s;
}

.breakfast-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.13);
}

/* =====================================================
   PRODUCT IMAGE
===================================================== */

.breakfast-image {
  position: relative;

  width: 100%;
  height: 260px;

  overflow: hidden;

  background: #ead8b5;
}

.breakfast-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.breakfast-card:hover .breakfast-image img {
  transform: scale(1.04);
}

/* =====================================================
   PRODUCT INFORMATION
===================================================== */

.breakfast-info {
  position: relative;

  padding: 22px 24px 25px;
}

.breakfast-info h2 {
  margin: 0 0 9px;

  color: #071a3d;

  font-size: 25px;
  font-weight: 900;
}

.breakfast-info p {
  margin: 0;

  max-width: 90%;

  color: #555555;

  font-size: 15px;

  line-height: 1.55;
}

/* =====================================================
   PRICE
===================================================== */

.breakfast-price {
  display: inline-block;

  margin-top: 17px;

  color: #b51d23;

  font-size: 27px;
  font-weight: 900;
}

/* =====================================================
   BOTTOM NAVIGATION
===================================================== */

.breakfast-navigation {
  width: 100%;

  padding: 20px;

  background: #071a3d;

  display: flex;

  justify-content: center;
  align-items: center;

  flex-wrap: wrap;

  gap: 10px;
}

.breakfast-navigation a {
  display: inline-block;

  padding: 9px 15px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  color: #ffffff;

  text-decoration: none;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 1.2px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.breakfast-navigation a:hover {
  background: #d9a414;

  border-color: #d9a414;

  color: #071a3d;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes breakfastFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes breakfastTitle {
  from {
    opacity: 0;

    transform: translateY(25px) scale(0.94);
  }

  to {
    opacity: 1;

    transform: translateY(0) scale(1);
  }
}

@keyframes breakfastLine {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 90px;
    opacity: 1;
  }
}

@keyframes cardEntrada {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   CELULAR
   0 - 600px
===================================================== */

@media (max-width: 600px) {
  .breakfast-header {
    width: 90%;

    padding: 18px 0 5px;
  }

  .breakfast-logo {
    width: 125px;
  }

  .breakfast-home {
    padding: 8px 11px;

    font-size: 10px;

    letter-spacing: 1px;
  }

  .breakfast-intro {
    width: 92%;

    margin: 35px auto 40px;
  }

  .breakfast-small {
    font-size: 10px;

    letter-spacing: 3.5px;
  }

  .breakfast-intro h1 {
    font-size: 48px;

    letter-spacing: 1px;
  }

  .breakfast-line {
    margin: 16px auto;
  }

  .breakfast-intro p {
    margin-bottom: 17px;

    font-size: 20px;
  }

  .breakfast-hours {
    padding: 9px 11px;

    font-size: 9px;

    letter-spacing: 0.8px;
  }

  /* ONE PRODUCT PER ROW */

  .breakfast-menu {
    width: 90%;

    margin-bottom: 50px;
  }

  .breakfast-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .breakfast-image {
    height: 210px;
  }

  .breakfast-info {
    padding: 17px 18px 20px;
  }

  .breakfast-info h2 {
    font-size: 21px;
  }

  .breakfast-info p {
    max-width: 100%;

    font-size: 14px;
  }

  .breakfast-price {
    margin-top: 13px;

    font-size: 24px;
  }

  .breakfast-navigation {
    padding: 16px 10px;

    gap: 7px;
  }

  .breakfast-navigation a {
    padding: 8px 9px;

    font-size: 9px;

    letter-spacing: 0.7px;
  }
}

/* =====================================================
   TABLETA
   601 - 1024px
===================================================== */

@media (min-width: 601px) and (max-width: 1024px) {
  .breakfast-header {
    width: 90%;
  }

  .breakfast-logo {
    width: 150px;
  }

  .breakfast-intro {
    margin-top: 45px;
  }

  .breakfast-intro h1 {
    font-size: 72px;
  }

  .breakfast-menu {
    width: 90%;
  }

  .breakfast-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
  }

  .breakfast-image {
    height: 230px;
  }
}

/* =====================================================
   LAPTOP / DESKTOP
   1025px +
===================================================== */

@media (min-width: 1025px) {
  .breakfast-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .breakfast-image {
    height: 280px;
  }
}

/* =====================================================
   ACCESSIBILITY
   REDUCE MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
