/* =====================================================
   EL DORADO RESTAURANT
   GENERAL MENU / CHICKEN STYLE
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}


/* =====================================================
   PAGE
===================================================== */

.chicken-page {
  min-height: 100vh;

  background: linear-gradient(
    135deg,
    #2b0507 0%,
    #5d0b10 45%,
    #7b1016 100%
  );

  color: #ffffff;
}


/* =====================================================
   MAIN
===================================================== */

.chicken-main {
  width: 100%;
  min-height: 100vh;
}


/* =====================================================
   HEADER
===================================================== */

.chicken-header {
  width: min(1000px, 92%);

  margin: 0 auto;

  padding: 24px 0 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;
}


/* =====================================================
   BACK BUTTON
===================================================== */

.chicken-back {
  display: inline-block;

  padding: 10px 17px;

  border: 2px solid #e4b331;

  background: rgba(0, 0, 0, 0.18);

  color: #ffffff;

  text-decoration: none;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 1.2px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.chicken-back:hover {
  background: #e4b331;

  color: #2b0507;

  transform: translateY(-2px);
}


/* =====================================================
   LOGO
===================================================== */

.chicken-logo {
  display: block;

  width: 160px;
  height: auto;

  filter: drop-shadow(
    0 4px 7px rgba(0, 0, 0, 0.35)
  );
}


/* =====================================================
   INTRO
===================================================== */

.chicken-intro {
  width: min(850px, 90%);

  margin: 45px auto 50px;

  text-align: center;
}

.chicken-small {
  display: block;

  margin-bottom: 10px;

  color: #e4b331;

  font-size: 13px;
  font-weight: 900;

  letter-spacing: 4px;

  animation: chickenFade 0.8s ease both;
}

.chicken-intro h1 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(58px, 10vw, 100px);

  line-height: 0.95;

  font-weight: 900;

  letter-spacing: 3px;

  text-shadow:
    0 6px 18px rgba(0, 0, 0, 0.35);

  animation:
    chickenTitle 0.9s ease 0.15s both;
}


/* =====================================================
   GOLD LINE
===================================================== */

.chicken-line {
  width: 90px;
  height: 5px;

  margin: 20px auto;

  background: #e4b331;

  border-radius: 20px;
}


/* =====================================================
   INTRO TEXT
===================================================== */

.chicken-intro p {
  max-width: 600px;

  margin: 0 auto;

  color: #ffe4c5;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 23px;
  font-style: italic;
  font-weight: 700;

  line-height: 1.4;
}


/* =====================================================
   MENU
===================================================== */

.chicken-menu {
  width: min(900px, 90%);

  margin: 0 auto;

  padding: 8px 0 20px;

  border-top:
    1px solid rgba(228, 179, 49, 0.45);
}


/* =====================================================
   MENU ITEM
===================================================== */

.chicken-item {
  width: 100%;

  min-height: 82px;

  padding: 20px 5px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 25px;

  border-bottom:
    1px solid rgba(228, 179, 49, 0.42);

  animation: chickenItem 0.65s ease both;
}


/* =====================================================
   ITEM ANIMATION DELAYS
===================================================== */

.chicken-item:nth-child(1) {
  animation-delay: 0.05s;
}

.chicken-item:nth-child(2) {
  animation-delay: 0.1s;
}

.chicken-item:nth-child(3) {
  animation-delay: 0.15s;
}

.chicken-item:nth-child(4) {
  animation-delay: 0.2s;
}

.chicken-item:nth-child(5) {
  animation-delay: 0.25s;
}

.chicken-item:nth-child(6) {
  animation-delay: 0.3s;
}

.chicken-item:nth-child(7) {
  animation-delay: 0.35s;
}

.chicken-item:nth-child(8) {
  animation-delay: 0.4s;
}

.chicken-item:nth-child(9) {
  animation-delay: 0.45s;
}

.chicken-item:nth-child(10) {
  animation-delay: 0.5s;
}

.chicken-item:nth-child(11) {
  animation-delay: 0.55s;
}


/* =====================================================
   ITEM TEXT
===================================================== */

.chicken-item-text {
  min-width: 0;

  flex: 1;
}

.chicken-item-text h2 {
  margin: 0;

  color: #ffffff;

  font-size: 20px;
  font-weight: 900;

  line-height: 1.25;

  letter-spacing: 0.4px;
}


/* =====================================================
   OPTIONAL DESCRIPTION
===================================================== */

.chicken-item-text p,
.item-description {
  margin-top: 6px;

  max-width: 420px;

  color: #0c0c0c;

  font-size: 13px;

  line-height: 1.4;
}


/* =====================================================
   PRICES
===================================================== */

.chicken-prices {
  flex-shrink: 0;

  display: flex;
  flex-direction: column;

  align-items: flex-end;

  gap: 3px;

  text-align: right;

  font-size: 13px;
  font-weight: 700;

  color: #ffffff;
}

.chicken-prices span {
  white-space: nowrap;
}

.chicken-prices strong {
  color: #e4b331;

  font-size: 16px;
  font-weight: 900;
}


/* =====================================================
   ADD TO CART
   OFFICIAL EL DORADO BUTTON
===================================================== */

.add-to-cart {
  flex-shrink: 0;

  min-width: 115px;

  padding: 8px 13px;

  border: none;
  border-radius: 7px;

  background: #ffffff;
  color: #7a0d12;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 12px;
  font-weight: 800;

  line-height: 1.2;

  text-align: center;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.add-to-cart:hover {
  transform: translateY(-1px);

  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.18);
}

.add-to-cart:active {
  transform: scale(0.97);
}

.add-to-cart.added {
  background: #ffffff;

  color: #267447;
}


/* =====================================================
   HOVER - DESKTOP
===================================================== */

@media (hover: hover) and (pointer: fine) {

  .chicken-item {
    transition:
      background 0.25s ease,
      padding 0.25s ease;
  }

  .chicken-item:hover {
    padding-left: 15px;
    padding-right: 15px;

    background:
      rgba(255, 255, 255, 0.045);
  }

}


/* =====================================================
   HEADER NAV + CART
===================================================== */

.chicken-header-nav {
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 15px;
}

.cart-header-link {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 6px;

  margin-right: 25px;

  padding: 7px 12px;

  background: #ffffff;
  color: #6b0d14;

  border: 2px solid #6b0d14;
  border-radius: 20px;

  font-size: 0.8rem;
  font-weight: 700;

  text-decoration: none;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.cart-header-link:hover {
  background: #6b0d14;

  color: #ffffff;
}

.cart-count {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 21px;
  height: 21px;

  padding: 0 5px;

  background: #6b0d14;
  color: #ffffff;

  border-radius: 50%;

  font-size: 0.72rem;
  font-weight: 800;
}


/* =====================================================
   CART TOAST
===================================================== */

.cart-toast {
  position: fixed;

  left: 50%;
  bottom: 20px;

  transform: translateX(-50%);

  width: min(400px, 88%);

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 10px;

  padding: 12px 15px;

  background: #222;
  color: #ffffff;

  border-radius: 9px;

  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.25);

  opacity: 0;
  visibility: hidden;

  z-index: 2000;

  transition:
    opacity 0.25s ease,
    bottom 0.25s ease;
}

.cart-toast.show {
  opacity: 1;
  visibility: visible;

  bottom: 30px;
}

.cart-toast a {
  color: #ffffff;

  font-weight: 700;

  white-space: nowrap;
}


/* =====================================================
   RETURN TO DINNER / SPECIAL PLATES
===================================================== */

.chicken-return {
  width: min(900px, 90%);

  margin: 50px auto 65px;

  text-align: center;
}

.chicken-return-btn {
  display: inline-block;

  padding: 14px 24px;

  border: 2px solid #e4b331;

  background: #e4b331;

  color: #3a0608;

  text-decoration: none;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 1.2px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.chicken-return-btn:hover {
  background: transparent;

  color: #ffffff;

  transform: translateY(-2px);
}


/* =====================================================
   BOTTOM NAVIGATION
===================================================== */

.chicken-navigation {
  width: 100%;

  padding: 20px 15px;

  background: #220305;

  display: flex;
  justify-content: center;
  align-items: center;

  flex-wrap: wrap;

  gap: 10px;
}

.chicken-navigation a {
  padding: 9px 15px;

  border:
    1px solid rgba(255, 255, 255, 0.3);

  color: #ffffff;

  text-decoration: none;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 1px;

  transition: 0.25s;
}

.chicken-navigation a:hover {
  background: #e4b331;

  border-color: #e4b331;

  color: #3a0608;
}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes chickenFade {

  from {
    opacity: 0;

    transform: translateY(15px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }

}

@keyframes chickenTitle {

  from {
    opacity: 0;

    transform:
      translateY(25px)
      scale(0.94);
  }

  to {
    opacity: 1;

    transform:
      translateY(0)
      scale(1);
  }

}

@keyframes chickenItem {

  from {
    opacity: 0;

    transform: translateY(15px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  /* HEADER */

  .chicken-header {
    width: 90%;

    padding: 18px 0 5px;

    gap: 12px;
  }


  /* LOGO */

  .chicken-logo {
    width: 120px;
  }


  /* BACK BUTTON */

  .chicken-back {
    padding: 8px 10px;

    font-size: 9px;

    letter-spacing: 0.8px;
  }


  /* INTRO */

  .chicken-intro {
    width: 90%;

    margin: 35px auto 38px;
  }

  .chicken-small {
    font-size: 10px;

    letter-spacing: 3px;
  }

  .chicken-intro h1 {
    font-size: 52px;
  }

  .chicken-line {
    width: 70px;
    height: 4px;

    margin: 16px auto;
  }

  .chicken-intro p {
    font-size: 18px;

    line-height: 1.35;
  }


  /* MENU */

  .chicken-menu {
    width: 90%;
  }


  /* MENU ITEM */

  .chicken-item {
    padding-top: 22px;
    padding-bottom: 22px;

    gap: 12px;

    align-items: center;
  }

  .chicken-item-text h2 {
    font-size: 16px;

    line-height: 1.25;
  }

  .chicken-item-text p,
  .item-description {
    font-size: 12px;
  }


  /* PRICES */

  .chicken-prices {
    min-width: 100px;

    font-size: 12px;
  }

  .chicken-prices strong {
    font-size: 15px;
  }


  /* ADD TO CART */

  .add-to-cart {
    min-width: 105px;

    padding: 7px 10px;

    font-size: 11px;
  }


  /* CART HEADER */

  .cart-header-link {
    margin-right: 0;

    padding: 7px 10px;

    font-size: 0.75rem;
  }


  /* CART TOAST */

  .cart-toast {
    width: 90%;

    font-size: 0.8rem;
  }


  /* RETURN */

  .chicken-return {
    width: 90%;

    margin: 40px auto 50px;
  }

  .chicken-return-btn {
    width: 100%;

    padding: 13px 10px;

    font-size: 10px;
  }


  /* NAVIGATION */

  .chicken-navigation {
    padding: 16px 10px;

    gap: 7px;
  }

  .chicken-navigation a {
    padding: 8px 9px;

    font-size: 9px;
  }

}


/* =====================================================
   VERY SMALL PHONES
===================================================== */

@media (max-width: 380px) {

  .chicken-logo {
    width: 105px;
  }

  .chicken-back {
    padding: 7px 8px;

    font-size: 8px;
  }

  .chicken-intro h1 {
    font-size: 45px;
  }

  .chicken-item {
    gap: 8px;
  }

  .chicken-item-text h2 {
    font-size: 15px;
  }

  .chicken-prices {
    min-width: 92px;
  }

  .chicken-prices strong {
    font-size: 14px;
  }

  .add-to-cart {
    min-width: 96px;

    padding: 7px 8px;

    font-size: 10px;
  }

}


/* =====================================================
   TABLET
===================================================== */

@media (min-width: 601px) and (max-width: 1024px) {

  .chicken-menu {
    width: 86%;
  }

  .chicken-item {
    padding: 21px 8px;
  }

  .chicken-item-text h2 {
    font-size: 19px;
  }

}


/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }

}

/* =====================================================
   BREAKFAST THEME
   Beige background + dark text
===================================================== */

.chicken-page {
  background: #f7efdf;
  color: #111111;
}

.chicken-main {
  background: #f7efdf;
}

.chicken-header {
  background: #f7efdf;
}

.chicken-intro {
  background: #f7efdf;
}

.chicken-intro h1,
.chicken-item-text h2,
.breakfast-category {
  color: #111111;
}

.chicken-intro p {
  color: #8b1e1e;
}

.chicken-small {
  color: #b8860b;
}

.chicken-line {
  background: #d4a514;
}

.chicken-menu {
  background: #f7efdf;
}

.chicken-item {
  border-bottom: 1px solid #d6b76d;
}

.chicken-prices {
  color: #111111;
}

.chicken-prices strong {
  color: #8b1e1e;
}

.add-to-cart {
  background: #ffffff;
  color: #8b1e1e;
  border: 2px solid #8b1e1e;
}

.add-to-cart:hover {
  background: #8b1e1e;
  color: #ffffff;
}

.breakfast-category {
  border-bottom: 2px solid #d6b76d;
}

.chicken-back {
  color: #071a3d;
  border-color: #071a3d;
}

.cart-header-link {
  background: #ffffff;
  color: #8b1e1e;
  border-color: #8b1e1e;
}

.cart-count {
  background: #8b1e1e;
  color: #ffffff;
}