/* =====================================================
   EL DORADO RESTAURANT
   DINNER PAGE
===================================================== */

/* =====================================================
   RESET
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* =====================================================
   DINNER PAGE
===================================================== */

.dinner-page {
  min-height: 100vh;

  background: radial-gradient(
    circle at top,
    #252525 0%,
    #121212 45%,
    #080808 100%
  );

  color: #ffffff;
}

/* =====================================================
   MAIN
===================================================== */

.dinner-main {
  width: 100%;
  min-height: 100vh;
}

/* =====================================================
   HEADER
===================================================== */

.dinner-header {
  width: min(1200px, 92%);

  margin: 0 auto;

  padding: 24px 0 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =====================================================
   HOME BUTTON
===================================================== */

.dinner-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 17px;

  border: 2px solid #d8a928;

  background: rgba(0, 0, 0, 0.3);

  color: #ffffff;

  text-decoration: none;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1.4px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.dinner-home:hover {
  background: #d8a928;

  color: #111111;

  transform: translateY(-2px);
}

/* =====================================================
   LOGO
===================================================== */

.dinner-logo {
  display: block;

  width: 160px;
  height: auto;

  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.65));
}

/* =====================================================
   INTRO
===================================================== */

.dinner-intro {
  width: min(900px, 90%);

  margin: 45px auto 55px;

  text-align: center;
}

/* SMALL TITLE */

.dinner-small {
  display: block;

  margin-bottom: 10px;

  color: #d8a928;

  font-size: 13px;
  font-weight: 900;

  letter-spacing: 4px;

  animation: dinnerFade 0.8s ease both;
}

/* DINNER */

.dinner-intro h1 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(58px, 10vw, 110px);

  font-weight: 900;

  line-height: 0.92;

  letter-spacing: 4px;

  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.75);

  animation: dinnerTitle 0.9s ease 0.15s both;
}

/* GOLD LINE */

.dinner-line {
  width: 90px;
  height: 4px;

  margin: 21px auto;

  background: linear-gradient(90deg, #9c7112, #f1cf68, #9c7112);

  border-radius: 20px;

  animation: dinnerLine 0.8s ease 0.4s both;
}

/* SUBTITLE */

.dinner-intro p {
  margin: 0 0 20px;

  color: #e9d9b5;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 26px;
  font-style: italic;

  line-height: 1.4;
}

/* HOURS */

.dinner-hours {
  display: inline-block;

  padding: 10px 18px;

  border: 1px solid #d8a928;

  background: rgba(216, 169, 40, 0.1);

  color: #f1cf68;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1.3px;
}

/* =====================================================
   MENU
===================================================== */

.dinner-menu {
  width: min(1200px, 92%);

  margin: 0 auto 75px;
}

/* =====================================================
   GRID
===================================================== */

.dinner-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;
}

/* =====================================================
   CARD
===================================================== */

.dinner-card {
  position: relative;

  overflow: hidden;

  background: linear-gradient(145deg, #1e1e1e, #111111);

  border: 1px solid rgba(216, 169, 40, 0.32);

  border-radius: 16px;

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;

  animation: dinnerCard 0.8s ease both;
}

.dinner-card:nth-child(1) {
  animation-delay: 0.1s;
}

.dinner-card:nth-child(2) {
  animation-delay: 0.2s;
}

.dinner-card:nth-child(3) {
  animation-delay: 0.3s;
}

.dinner-card:nth-child(4) {
  animation-delay: 0.4s;
}

.dinner-card:nth-child(5) {
  animation-delay: 0.5s;
}

.dinner-card:nth-child(6) {
  animation-delay: 0.6s;
}

.dinner-card:hover {
  transform: translateY(-6px);

  border-color: #d8a928;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

/* =====================================================
   IMAGE
===================================================== */

.dinner-image {
  position: relative;

  width: 100%;
  height: 260px;

  overflow: hidden;

  background: #181818;
}

.dinner-image::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 45%;

  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.35));

  pointer-events: none;
}

.dinner-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.dinner-card:hover .dinner-image img {
  transform: scale(1.04);
}

/* =====================================================
   PRODUCT INFO
===================================================== */

.dinner-info {
  position: relative;

  padding: 22px 24px 26px;
}

.dinner-info h2 {
  margin: 0 0 9px;

  color: #f0c857;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 26px;
  font-weight: 700;
}

.dinner-info p {
  margin: 0;

  max-width: 92%;

  color: #d3d3d3;

  font-size: 15px;

  line-height: 1.55;
}

/* =====================================================
   PRICE
===================================================== */

.dinner-price {
  display: inline-block;

  margin-top: 17px;

  color: #ffffff;

  font-size: 27px;
  font-weight: 900;
}

/* LITTLE GOLD DETAIL */

.dinner-price::before {
  content: "";

  display: inline-block;

  width: 18px;
  height: 2px;

  margin-right: 9px;

  vertical-align: middle;

  background: #d8a928;
}

/* =====================================================
   BOTTOM NAVIGATION
===================================================== */

.dinner-navigation {
  width: 100%;

  padding: 20px;

  background: #050505;

  border-top: 1px solid rgba(216, 169, 40, 0.25);

  display: flex;

  justify-content: center;
  align-items: center;

  flex-wrap: wrap;

  gap: 10px;
}

.dinner-navigation a {
  display: inline-block;

  padding: 9px 15px;

  border: 1px solid rgba(216, 169, 40, 0.4);

  color: #ffffff;

  text-decoration: none;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 1.1px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.dinner-navigation a:hover {
  background: #d8a928;

  border-color: #d8a928;

  color: #111111;

  transform: translateY(-2px);
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes dinnerFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dinnerTitle {
  from {
    opacity: 0;

    transform: translateY(25px) scale(0.94);
  }

  to {
    opacity: 1;

    transform: translateY(0) scale(1);
  }
}

@keyframes dinnerLine {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 90px;
    opacity: 1;
  }
}

@keyframes dinnerCard {
  from {
    opacity: 0;

    transform: translateY(30px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* =====================================================
   CELULAR
   0 - 600px
===================================================== */

@media (max-width: 600px) {
  .dinner-header {
    width: 90%;

    padding: 18px 0 5px;
  }

  .dinner-logo {
    width: 125px;
  }

  .dinner-home {
    padding: 8px 11px;

    font-size: 10px;
  }

  .dinner-intro {
    width: 92%;

    margin: 35px auto 40px;
  }

  .dinner-small {
    font-size: 10px;

    letter-spacing: 3px;
  }

  .dinner-intro h1 {
    font-size: 51px;

    letter-spacing: 2px;
  }

  .dinner-line {
    margin: 17px auto;
  }

  .dinner-intro p {
    margin-bottom: 17px;

    font-size: 20px;
  }

  .dinner-hours {
    padding: 9px 11px;

    font-size: 9px;

    letter-spacing: 0.8px;
  }

  /* ONE CARD PER ROW */

  .dinner-menu {
    width: 90%;

    margin-bottom: 50px;
  }

  .dinner-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .dinner-image {
    height: 215px;
  }

  .dinner-info {
    padding: 18px 18px 21px;
  }

  .dinner-info h2 {
    font-size: 22px;
  }

  .dinner-info p {
    max-width: 100%;

    font-size: 14px;
  }

  .dinner-price {
    margin-top: 14px;

    font-size: 24px;
  }

  .dinner-navigation {
    padding: 16px 10px;

    gap: 7px;
  }

  .dinner-navigation a {
    padding: 8px 9px;

    font-size: 9px;

    letter-spacing: 0.7px;
  }
}

/* =====================================================
   TABLETA
   601 - 1024px
===================================================== */

@media (min-width: 601px) and (max-width: 1024px) {
  .dinner-header {
    width: 90%;
  }

  .dinner-logo {
    width: 150px;
  }

  .dinner-intro h1 {
    font-size: 76px;
  }

  .dinner-menu {
    width: 90%;
  }

  .dinner-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
  }

  .dinner-image {
    height: 235px;
  }
}

/* =====================================================
   LAPTOP / DESKTOP
   1025px +
===================================================== */

@media (min-width: 1025px) {
  .dinner-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dinner-image {
    height: 260px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
