/* Fonts */

@font-face {
  font-family: 'NexaLight';
  src: url('https://cooking-ina-website-i68r.vercel.app/fonts/nexalight.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NexaHeavy';
  src: url('https://cooking-ina-website-i68r.vercel.app/fonts/nexaheavy.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Boorsook';
  src: url('https://cooking-ina-website-i68r.vercel.app/fonts/boorsok.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MoreSugar';
  src: url('https://cooking-ina-website-i68r.vercel.app/fonts/MoreSugar-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MoreSugarThin';
  src: url('https://cooking-ina-website-i68r.vercel.app/fonts/MoreSugar-Thin.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
}

:root {
    --bg-color: #FFF4E8; 
    --text-color: #221314;
    --main-color: #37ABB0;
    --second-color: #FFD35C;
    --yellow-color: #fee191;
    --darkyellow-color: #DFA700;
    --big-font: 6rem;
    --small-font: 1.2rem;
    --h2-font: 3rem;
    --p-font: 1.1rem;
    --pp-font: 1.4rem;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px; 
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg,  #FFD971, #39BABF);
    border-radius: 8px; 
  }
  
  
  ::-moz-scrollbar {
    width: 8px; 
  }
  
  ::-moz-scrollbar-thumb {
    background: linear-gradient(45deg,  #FFD971, #39BABF);
    border-radius: 8px; 
  }

/* NAVBAR */
header {
    background: var(--main-color);
    padding: 30px 18px;
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    align-items: center;
    justify-content: space-between;
    transition: ease .40s;
}
header.sticky {
    background: var(--main-color);
    box-shadow: rgba(255, 255, 255, 0.2) 0px 10px 10px -10px;
}
.sup-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Boorsook';
    margin-left: 60px;
    padding: 0;
    list-style: none;
    position: relative;
    flex-wrap: nowrap;
}

.sup-logo-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sup-logo img {
    display: block;
    max-width: 100px;
}

.sup-menu {
    list-style-type: none;
    margin: 0;
    display: flex;
    align-items: center;
    color: var(--main-color);
    font-size: var(--pp-font);
    font-weight: 500;
    padding: 10px;
    border-radius: 4px;
    transition: ease .40s;
    gap: 60px; 
}

.sup-menu a {
    margin-right: 20px;
    color: var(--bg-color);
    font-size: var(--pp-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 7px;
    border-radius: 4px;
    transition: ease .40s;
}

.sup-menu a img {
    margin-left: 7px; 
}

.sup-menu li a {
    text-align: right;
    color: var(--bg-color);
    text-decoration: none;
}

.sup-menu img {
    height: 30px;
    width: 30px;
    margin-right: 5px;
    transition: ease .40s;
}
.sup-icons {
    display: flex;
    align-items: center;
    gap: 60px; 
    padding-right: 40px;
}

.sup-icons a {
    color: var(--bg-color);
    font-size: var(--pp-font);
    display: flex;
    align-items: center;
    padding: 7px;
    border-radius: 4px;
    transition: ease .40s;
}

.sup-icons img {
    height: 30px;
    width: 30px;
    margin-right: 5px;
}

.sup-menu a:hover,
.sup-icons a:hover {
    background: var(--main-color);
    color: var(--bg-color);
    box-shadow: 5px 10px 30px rgba(255, 253, 253, 0.194);
    border-radius: 5px;
}

 /* BURGER NAVBAR */
 .sup-burger-menu {
    display: none;
    cursor: pointer;
    margin-left: auto;
}

.sup-burger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--bg-color);
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.sup-burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.sup-burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.sup-burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.sup-burger-icons {
    display: none;
    cursor: pointer;
    margin-left: auto;
}

.sup-burger-icons span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--bg-color);
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.sup-burger-icons.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.sup-burger-icons.active span:nth-child(2) {
    opacity: 0;
}

.sup-burger-icons.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}
   
@media (max-width: 1024px) {
    .sup-burger-menu {
        display: block;
    }

    .sup-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 10px 0; 
        background-color: #FFEAB0;
        gap: 10px; 
    }

    .sup-menu.show {
        display: flex;
    }

    .sup-burger-icons {
        display: block;
    }

    .sup-icons {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 10px 0;  
        background-color: #FFEAB0;
        gap: 10px; 
    }

    .sup-icons.show {
        display: flex;
    }
}

.sup-dropdown {
    position: relative; 
}

.sup-dropdown-menu {
    display: none; 
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: var(--main-color); 
    border: 1px solid #1f6365;
    border-radius: 5px;
    list-style: none;
    padding: 0; 
    width: 160px;
    z-index: 999; 
}

.sup-dropdown-menu li {
    padding: 8px 12px; 
    text-align: left; 
}

.sup-dropdown-menu li a {
    text-decoration: none;
    color: var(--bg-color);
    display: block;
    padding: 5px 0; 
    margin: 0; 
    text-align: left; 
}

.sup-dropdown-menu li a:hover {
    background-color: var(--main-color);
    color: var(--yellow-color);
}

.sup-dropdown:hover .sup-dropdown-menu {
    display: block; 
}

.sup-dropdown:hover .sup-dropdown-arrow {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
@media (max-width: 1024px) {

    .sup-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--main-color);
    }

    .sup-menu.show {
        display: flex;
    }

    .sup-icons {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--main-color);
    }

    .sup-icons.show {
        display: flex;
    }
}
 /* FOOTER */
 .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(https://cooking-ina-website-i68r.vercel.app/img/footer.png); 
    background-size: 100% 100%; 
    background-position: bottom; 
    background-repeat: no-repeat;
    position: relative;
    padding: 20px 20px; 
    width: 100%;
    min-height: 60vh;  
    height: auto;
    box-sizing: border-box;
    z-index: 0;
}

.footer-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    position: absolute;
    bottom: 80px; 
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    z-index: 1;
}

.footer-logo {
    width: 100px;
    margin-right: 20px;
}

.vertical-line {
    width: 2px;
    height: 100px;
    background-color: #fff;
    margin: 0 40px;
}

@media (max-width: 1024px) {
  .vertical-line {
      display: none;
  }
}

.footer-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}

.quick-links, .developed-by {
  display: flex;
  flex-direction: column;
  gap: 10px;  
}

.quick-links h4, .developed-by h4 {
    font-family: 'Boorsook';
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: var(--bg-color);
  }
  
  .quick-links ul, .developed-by ul {
    list-style: none;
    padding: 0;
    font-family: 'NexaLight';
    -webkit-text-stroke: 1px #f0edeb;
  }
  
  .quick-links a, .developed-by a {
    color: #f0edeb;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative; 
  z-index: 2; 
  }
  
  .quick-links a:hover, .developed-by a:hover {
    color: var(--second-color);
    -webkit-text-stroke: 1px;
  }
  
  .developed-by li {
    font-family: 'NexaLight';
    -webkit-text-stroke: 1px #f0edeb;
    margin: 0;
    color: #f0edeb; 
    position: relative;
  z-index: 2;
  }
  
  .end-text {
    font-family: 'NexaLight';
    -webkit-text-stroke: 1px #f0edeb;
    text-align: center;
    font-size: 14px;
    color: #fff;
    position: absolute;
    bottom: 15px;
    width: 100%;
    z-index: 0; 
  }
  
  @media (max-width: 768px) {
    .footer {
      min-height: 50vh;  
      padding: 10px 15px;
    }
  
    .footer-container {
        flex-direction: column;
        bottom: 50px; 
    }
  
    .footer-logo {
        display: none;
    }
  
    .quick-links h4, .developed-by h4 {
      margin-top: 0;
        font-size: 20px;
    }
  
    .developed-by li, .quick-links a {
      font-size: 14px;
    }
  
    .end-text {
      font-size: 12px;
      bottom: 3%;
    }
  }
  
  @media (max-width: 480px) {
    .footer {
      min-height: 40vh;
      padding: 5px 10px;
    }
  
    .footer-logo {
      display: none;
    }
  
    .footer-container {
        bottom: 20px;
        gap: 20px;
    }
  
    .developed-by li, .quick-links a {
      font-size: 12px;
    }
  
    .end-text {
      position: relative;
      margin-top: 15px;
      bottom: 3%;
    }
  }
.recireq-full-image {
    width: 100%;
    height: 400px; 
    overflow: hidden;
    position: relative;
}

.recireq-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recireq-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%; 
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 244, 232, 1) 100%);
}


@media (max-width: 1024px) {
    .recireq-full-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .recireq-full-image {
        height: 250px;
    }
}

@media (max-width: 580px) {
    .recireq-full-image {
        height: 200px;
    }
}

/* DISH REQUEST SECTION */
.recireq-dish-request {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 4rem auto;
    width: 80%;
    max-width: 800px;
}

.recireq-title {
    font-family: 'MoreSugar';
    font-size: 3.5rem;
    color: #37ABB0; 
    font-weight: bold;
    margin-bottom: 1rem;
}

.recireq-description {
    font-family: 'MoreSugar';
    font-size: 1.8rem;
    color: #37ABB0;
    margin-bottom: 2rem;
}

.recireq-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.recireq-input, 
.recireq-textarea {
    width: 100%;
    padding: 12px;
    font-size: 1.3rem;
    font-family: 'MoreSugar';
    border: none;
    background: #D5E4DC; 
    border-radius: 8px;
    outline: none;
    color: var(--main-color);
}
.recireq-textarea {
    height: 150px;
    resize: none;
}

.recireq-submit {
    width: 200px;
    padding: 12px;
    font-size: 1.4rem;
    font-family: 'MoreSugar';
    color: var(--second-color);
    background: #37ABB0;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: 0.3s ease-in-out;
    align-self: center;
    margin-top: 1.5rem;
}

.recireq-submit:hover {
    background: #2e9094;
}

@media (max-width: 768px) {
    .recireq-dish-request {
        width: 90%;
    }

    .recireq-title {
        font-size: 2rem;
    }

    .recireq-description {
        font-size: 1.2rem;
    }

    .recireq-input, 
    .recireq-textarea {
        font-size: 1.2rem;
        padding: 10px;
    }

    .recireq-submit {
        font-size: 1.2rem;
        width: 180px;
        padding: 10px;
    }
}

@media (max-width: 580px) {
    .recireq-title {
        font-size: 1.8rem;
    }

    .recireq-description {
        font-size: 1.1rem;
    }

    .recireq-input, 
    .recireq-textarea {
        font-size: 1.1rem;
        padding: 8px;
    }

    .recireq-submit {
        font-size: 1rem;
        width: 160px;
        padding: 8px;
    }
}
