/* =====================================================
   EL DORADO RESTAURANT
   LUNCH PAGE
===================================================== */

/* =====================================================
   RESET
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* =====================================================
   PAGE
===================================================== */

.lunch-page {
  min-height: 100vh;

  background: linear-gradient(135deg, #2b0507 0%, #5d0b10 45%, #7b1016 100%);

  color: #ffffff;
}

/* =====================================================
   MAIN
===================================================== */

.lunch-main {
  width: 100%;
  min-height: 100vh;
}

/* =====================================================
   HEADER
===================================================== */

.lunch-header {
  width: min(1200px, 92%);

  margin: 0 auto;

  padding: 24px 0 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lunch-home {
  padding: 10px 17px;

  border: 2px solid #e4b331;

  color: #ffffff;

  background: rgba(0, 0, 0, 0.18);

  text-decoration: none;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1.4px;

  transition: 0.25s;
}

.lunch-home:hover {
  background: #e4b331;

  color: #2b0507;

  transform: translateY(-2px);
}

.lunch-logo {
  width: 160px;
  height: auto;

  filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.35));
}

/* =====================================================
   INTRO
===================================================== */

.lunch-intro {
  width: min(900px, 90%);

  margin: 45px auto 55px;

  text-align: center;
}

.lunch-small {
  display: block;

  margin-bottom: 10px;

  color: #e4b331;

  font-size: 13px;
  font-weight: 900;

  letter-spacing: 4px;

  animation: lunchFade 0.8s ease both;
}

.lunch-intro h1 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(58px, 10vw, 110px);

  line-height: 0.9;

  font-weight: 900;

  letter-spacing: 3px;

  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);

  animation: lunchTitle 0.9s ease 0.15s both;
}

.lunch-line {
  width: 90px;
  height: 5px;

  margin: 20px auto;

  background: #e4b331;

  border-radius: 20px;
}

.lunch-intro p {
  margin-bottom: 20px;

  color: #ffe4c5;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 26px;
  font-style: italic;
  font-weight: 700;
}

.lunch-hours {
  display: inline-block;

  padding: 10px 18px;

  background: #e4b331;

  color: #3a0608;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1.2px;
}

/* =====================================================
   MENU
===================================================== */

.lunch-menu {
  width: min(1200px, 92%);

  margin: 0 auto 70px;
}

.lunch-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;
}

/* =====================================================
   CARDS
===================================================== */

.lunch-card {
  overflow: hidden;

  background: rgba(255, 255, 255, 0.96);

  border-radius: 16px;

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);

  color: #2d1112;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  animation: lunchCard 0.8s ease both;
}

.lunch-card:nth-child(1) {
  animation-delay: 0.1s;
}

.lunch-card:nth-child(2) {
  animation-delay: 0.2s;
}

.lunch-card:nth-child(3) {
  animation-delay: 0.3s;
}

.lunch-card:nth-child(4) {
  animation-delay: 0.4s;
}

.lunch-card:nth-child(5) {
  animation-delay: 0.5s;
}

.lunch-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

/* =====================================================
   IMAGE
===================================================== */

.lunch-image {
  width: 100%;
  height: 260px;

  overflow: hidden;

  background: #efe4d7;
}

.lunch-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.lunch-card:hover .lunch-image img {
  transform: scale(1.04);
}

/* =====================================================
   INFO
===================================================== */

.lunch-info {
  padding: 22px 24px 25px;
}

.lunch-info h2 {
  margin-bottom: 9px;

  color: #5d0b10;

  font-size: 25px;
  font-weight: 900;
}

.lunch-info p {
  margin: 0;

  color: #5a5050;

  font-size: 15px;

  line-height: 1.55;
}

.lunch-price {
  display: inline-block;

  margin-top: 16px;

  color: #b40d15;

  font-size: 28px;
  font-weight: 900;
}

/* =====================================================
   TODAY'S SPECIAL
===================================================== */

.daily-lunch {
  max-width: 850px;

  margin: 65px auto 0;

  padding: 42px 28px;

  text-align: center;

  background: linear-gradient(135deg, #fff7e8, #ead6ad);

  color: #4e090c;

  border-radius: 18px;

  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);

  border: 3px solid #e4b331;
}

.daily-lunch span {
  color: #9b1118;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 2px;
}

.daily-lunch h2 {
  margin: 10px 0 12px;

  font-size: clamp(35px, 6vw, 60px);

  color: #4e090c;

  font-weight: 900;
}

.daily-lunch p {
  max-width: 500px;

  margin: 0 auto 25px;

  color: #5d4d4d;

  font-size: 16px;

  line-height: 1.5;
}

.daily-lunch-btn {
  display: inline-block;

  padding: 14px 24px;

  background: #5d0b10;

  color: #ffffff;

  border: 2px solid #5d0b10;

  text-decoration: none;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1.3px;

  transition: 0.25s;
}

.daily-lunch-btn:hover {
  background: #e4b331;

  color: #4e090c;

  border-color: #e4b331;

  transform: translateY(-2px);
}

/* =====================================================
   BOTTOM NAV
===================================================== */

.lunch-navigation {
  width: 100%;

  padding: 20px;

  background: #220305;

  display: flex;

  justify-content: center;
  align-items: center;

  flex-wrap: wrap;

  gap: 10px;
}

.lunch-navigation a {
  padding: 9px 15px;

  border: 1px solid rgba(255, 255, 255, 0.3);

  color: #ffffff;

  text-decoration: none;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 1.1px;

  transition: 0.25s;
}

.lunch-navigation a:hover {
  background: #e4b331;

  color: #3a0608;

  border-color: #e4b331;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes lunchFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lunchTitle {
  from {
    opacity: 0;

    transform: translateY(25px) scale(0.94);
  }

  to {
    opacity: 1;

    transform: translateY(0) scale(1);
  }
}

@keyframes lunchCard {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 600px) {
  .lunch-header {
    width: 90%;

    padding: 18px 0 5px;
  }

  .lunch-logo {
    width: 125px;
  }

  .lunch-home {
    padding: 8px 11px;

    font-size: 10px;
  }

  .lunch-intro {
    margin: 35px auto 40px;
  }

  .lunch-small {
    font-size: 10px;

    letter-spacing: 3px;
  }

  .lunch-intro h1 {
    font-size: 55px;
  }

  .lunch-intro p {
    font-size: 20px;
  }

  .lunch-hours {
    padding: 9px 12px;

    font-size: 9px;
  }

  .lunch-menu {
    width: 90%;

    margin-bottom: 50px;
  }

  .lunch-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .lunch-image {
    height: 210px;
  }

  .lunch-info {
    padding: 18px 18px 20px;
  }

  .lunch-info h2 {
    font-size: 21px;
  }

  .lunch-price {
    font-size: 24px;
  }

  .daily-lunch {
    margin-top: 45px;

    padding: 32px 20px;
  }

  .daily-lunch h2 {
    font-size: 35px;
  }

  .daily-lunch-btn {
    width: 100%;

    padding: 13px 10px;
  }

  .lunch-navigation {
    gap: 7px;

    padding: 16px 10px;
  }

  .lunch-navigation a {
    padding: 8px 9px;

    font-size: 9px;
  }
}

/* =====================================================
   TABLETA
===================================================== */

@media (min-width: 601px) and (max-width: 1024px) {
  .lunch-menu {
    width: 90%;
  }

  .lunch-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
  }

  .lunch-image {
    height: 230px;
  }
}

/* =====================================================
   LAPTOP
===================================================== */

@media (min-width: 1025px) {
  .lunch-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lunch-image {
    height: 260px;
  }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
