/* =====================================================
   EL DORADO RESTAURANT
   SPECIAL PLATES
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}


/* =====================================================
   PAGE
===================================================== */

.special-page {
  min-height: 100vh;

  background: linear-gradient(
    135deg,
    #2b0507 0%,
    #5d0b10 45%,
    #7b1016 100%
  );

  color: #ffffff;
}


/* =====================================================
   MAIN
===================================================== */

.special-main {
  width: 100%;
  min-height: 100vh;
}


/* =====================================================
   HEADER
===================================================== */

.special-header {
  width: min(1200px, 92%);

  margin: 0 auto;

  padding: 24px 0 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* =====================================================
   HOME BUTTON
===================================================== */

.special-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;
}

.special-home:hover {
  background: #e4b331;

  color: #2b0507;

  transform: translateY(-2px);
}


/* =====================================================
   LOGO
===================================================== */

.special-logo {
  width: 160px;
  height: auto;

  filter: drop-shadow(
    0 4px 7px rgba(0, 0, 0, 0.35)
  );
}


/* =====================================================
   INTRO
===================================================== */

.special-intro {
  width: min(900px, 90%);

  margin: 45px auto 55px;

  text-align: center;
}

.special-small {
  display: block;

  margin-bottom: 10px;

  color: #e4b331;

  font-size: 13px;
  font-weight: 900;

  letter-spacing: 4px;

  animation: specialFade 0.8s ease both;
}

.special-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:
    specialTitle 0.9s ease 0.15s both;
}


/* =====================================================
   GOLD LINE
===================================================== */

.special-line {
  width: 90px;
  height: 5px;

  margin: 20px auto;

  background: #e4b331;

  border-radius: 20px;
}


/* =====================================================
   INTRO TEXT
===================================================== */

.special-intro p {
  margin-bottom: 20px;

  color: #ffe4c5;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 26px;
  font-style: italic;
  font-weight: 700;
}


/* =====================================================
   SPECIAL MENU
===================================================== */

.special-menu {
  width: min(1200px, 92%);

  margin: 0 auto 70px;
}


/* =====================================================
   CATEGORY
===================================================== */

.special-category {
  width: 100%;

  margin: 0 0 70px;

  padding: 20px 0 10px;

  background: transparent;

  border-radius: 0;

  box-shadow: none;
}


/* =====================================================
   CATEGORY TITLE
===================================================== */

.category-title {
  text-align: center;

  margin-bottom: 28px;
}

.category-title span {
  display: block;

  margin-bottom: 8px;

  color: #e4b331;

  font-size: 0.75rem;
  font-weight: 900;

  letter-spacing: 4px;
}

.category-title h2 {
  margin: 0;

  color: #ffffff;

  font-size: 2rem;
  font-weight: 900;

  text-transform: uppercase;

  text-shadow:
    0 3px 8px rgba(0, 0, 0, 0.25);
}

.category-title .special-line {
  width: 65px;
  height: 4px;

  margin: 14px auto 0;

  background: #e4b331;

  border-radius: 10px;
}


/* =====================================================
   GRID
===================================================== */

.special-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 24px;
}


/* =====================================================
   CLICKABLE CATEGORY LINK
===================================================== */

.category-card-link {
  display: block;

  text-decoration: none;

  color: inherit;

  min-width: 0;
}

.category-card-link .special-card {
  height: 100%;
}

.category-card-link:focus-visible {
  outline: 3px solid #e4b331;

  outline-offset: 5px;
}


/* =====================================================
   CARDS
===================================================== */

.special-card {
  overflow: hidden;

  background: #f7f3ec;

  border-radius: 18px;

  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.28);

  color: #2d1112;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  animation:
    specialCard 0.8s ease both;
}

.special-card:nth-child(1) {
  animation-delay: 0.1s;
}

.special-card:nth-child(2) {
  animation-delay: 0.2s;
}

.special-card:nth-child(3) {
  animation-delay: 0.3s;
}

.special-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.35);
}


/* =====================================================
   IMAGE
===================================================== */

.special-image {
  width: 100%;
  height: 260px;

  overflow: hidden;

  background: #efe4d7;
}

.special-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.5s ease;
}

.special-card:hover
.special-image img {
  transform: scale(1.04);
}


/* =====================================================
   CARD INFO
===================================================== */

.special-info {
  padding: 22px 24px 25px;

  background: #f7f3ec;
}

.special-info h2 {
  margin-bottom: 9px;

  color: #6b0d14;

  font-size: 25px;
  font-weight: 900;
}

.special-info p {
  margin: 0;

  color: #333333;

  font-size: 15px;

  line-height: 1.55;
}


/* =====================================================
   CATEGORY DIVIDER
===================================================== */

.special-category:not(:last-child)::after {
  content: "";

  display: block;

  width: 120px;
  height: 1px;

  margin: 65px auto 0;

  background:
    rgba(228, 179, 49, 0.55);
}


/* =====================================================
   TODAY'S SPECIAL LUNCH
   ESTE BLOQUE SE CONSERVA
===================================================== */

.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;
}


/* =====================================================
   SPECIAL LUNCH BUTTON
===================================================== */

.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 NAVIGATION
===================================================== */

.special-navigation {
  width: 100%;

  padding: 20px;

  background: #220305;

  display: flex;

  justify-content: center;
  align-items: center;

  flex-wrap: wrap;

  gap: 10px;
}

.special-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;
}

.special-navigation a:hover {
  background: #e4b331;

  color: #3a0608;

  border-color: #e4b331;
}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes specialFade {
  from {
    opacity: 0;

    transform:
      translateY(15px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }
}

@keyframes specialTitle {
  from {
    opacity: 0;

    transform:
      translateY(25px)
      scale(0.94);
  }

  to {
    opacity: 1;

    transform:
      translateY(0)
      scale(1);
  }
}

@keyframes specialCard {
  from {
    opacity: 0;

    transform:
      translateY(28px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .special-header {
    width: 90%;

    padding: 18px 0 5px;
  }


  /* LOGO */

  .special-logo {
    width: 125px;
  }


  /* HOME */

  .special-home {
    padding: 8px 11px;

    font-size: 10px;
  }


  /* INTRO */

  .special-intro {
    width: 90%;

    margin: 35px auto 45px;
  }

  .special-small {
    font-size: 10px;

    letter-spacing: 3px;
  }

  .special-intro h1 {
    font-size: 55px;

    line-height: 0.9;
  }

  .special-intro p {
    font-size: 20px;

    line-height: 1.25;
  }


  /* MENU */

  .special-menu {
    width: 90%;

    margin-bottom: 50px;
  }


  /* CATEGORY */

  .special-category {
    margin-bottom: 45px;

    padding-top: 10px;
  }

  .category-title {
    margin-bottom: 24px;
  }

  .category-title span {
    font-size: 10px;

    letter-spacing: 3px;
  }

  .category-title h2 {
    font-size: 30px;
  }

  .category-title
  .special-line {
    width: 65px;

    margin-top: 14px;
  }


  /* GRID */

  .special-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }


  /* IMAGE */

  .special-image {
    height: 210px;
  }


  /* CARD INFO */

  .special-info {
    padding: 18px 18px 20px;
  }

  .special-info h2 {
    font-size: 21px;
  }

  .special-info p {
    font-size: 14px;
  }


  /* DIVIDER */

  .special-category:not(:last-child)::after {
    margin-top: 45px;

    width: 90px;
  }


  /* SPECIAL LUNCH */

  .daily-lunch {
    margin-top: 45px;

    padding: 32px 20px;
  }

  .daily-lunch h2 {
    font-size: 35px;
  }

  .daily-lunch-btn {
    width: 100%;

    padding: 13px 10px;
  }


  /* NAVIGATION */

  .special-navigation {
    gap: 7px;

    padding: 16px 10px;
  }

  .special-navigation a {
    padding: 8px 9px;

    font-size: 9px;
  }
}


/* =====================================================
   TABLET
===================================================== */

@media
(min-width: 601px)
and
(max-width: 1024px) {

  .special-menu {
    width: 90%;
  }

  .special-grid {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 20px;
  }

  .special-image {
    height: 230px;
  }

  .category-title h2 {
    font-size: 34px;
  }
}

/* =====================================================
   TABLET - SPECIAL PLATES
   ===================================================== */

@media (min-width: 700px) and (max-width: 1100px) {

  .special-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 28px 60px;
  }

  .special-category {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .category-title {
    min-height: 155px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .category-title span {
    font-size: 0.8rem;
    letter-spacing: 4px;
  }

  .category-title h2 {
    min-height: 78px;
    display: flex;
    font-size: 1.7rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.85rem;
    line-height: 1.15;
    margin: 8px 0 12px;
  }

  .special-grid {
    width: 100%;
    display: block;
  }

  .category-card-link {
    display: block;
    width: 100%;
    text-decoration: none;
  }

  .special-card {
    width: 100%;
    margin: 0;
  }

  .special-image {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
  }

  .special-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .daily-lunch {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 720px;
    margin: 40px auto 0;
  }
}

@media (min-width: 700px) and (max-width: 1100px) {

  .special-category:nth-of-type(5) {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    justify-self: center;
  }

}
/* =====================================================
   LAPTOP / DESKTOP
===================================================== */

@media (min-width: 1025px) {

  .special-grid {
    grid-template-columns:
      repeat(3, 1fr);
  }

  .special-image {
    height: 260px;
  }

  .category-title h2 {
    font-size: 38px;
  }
}


/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }
}