/* 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%;
    }
  }
  
/* BREADCRUMB CONTAINER */
.sup-breadcrumb-container {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: 3rem; 
    margin-left: 6rem; 
}
.sup-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem; 
    font-family: 'Boorsook';
}

.sup-home-icon {
    font-size: 2rem;
    color: var(--main-color);
}

.sup-chevron {
    font-size: 1.2rem;
    color: rgba(156, 163, 175, 1);
}

.sup-current-page {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(156, 163, 175, 1);
}

/* RESPONSIVENESS */
@media (max-width: 1024px) {
    .sup-breadcrumb-container {
        margin-top: 4rem; 
        margin-left: 5rem;
        padding: 0.8rem 1.5rem;
    }

    .sup-home-icon {
        font-size: 1.8rem;
    }

    .sup-chevron {
        font-size: 1rem;
    }

    .sup-current-page {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .sup-breadcrumb-container {
        margin-top: 4rem; 
        margin-left: 5.3rem;
        padding: 0.7rem 1.2rem;
    }

    .sup-home-icon {
        font-size: 1.6rem;
    }

    .sup-chevron {
        font-size: 0.9rem;
    }

    .sup-current-page {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .sup-breadcrumb-container {
        margin-top: 3rem; 
        margin-left: 4rem;
        padding: 0.6rem 1rem;
    }

    .sup-home-icon {
        font-size: 1.2rem;
    }

    .sup-chevron {
        font-size: 0.65rem;
    }

    .sup-current-page {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .sup-breadcrumb-container {
        margin-top: 3rem;
        margin-left: 2rem;
        padding: 0.6rem 1rem;
    }

    .sup-home-icon {
        font-size: 1.3rem;
    }

    .sup-chevron {
        font-size: 0.8rem;
    }

    .sup-current-page {
        font-size: 1rem;
    }
}

/* TITLE & IMAGE CONTAINER */
.sup-title-container {
    display: flex;
    align-items: center;
    justify-content:center; 
    margin-top: 2rem;
    margin-left: 6rem;
    margin-right: 6rem;
}

.sup-title {
    font-family: 'Boorsook';
    font-size: 3rem;
    color: #37ABB0;
    font-weight: bold;
}

.sup-title-img {
    max-width: 200px; 
    height: auto;
}

@media (max-width: 1024px) {
    .sup-title-container {
        margin-left: 4rem;
        margin-right: 4rem;
    }

    .sup-title {
        font-size: 2.5rem;
    }

    .sup-title-img {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .sup-title-container {
        flex-direction:row;
        align-items: center;
        text-align: center;
        justify-content: center ;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .sup-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .sup-title-img {
        max-width: 120px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 580px) {
    .sup-title-container {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .sup-title {
        font-size: 1.4rem;
    }

    .sup-title-img {
        max-width: 60px;
    }
}

/* SEARCH CONTAINER */
.sup-search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    width: 100%;
}
.sup-search-bar {
    width: 70%;
    display: flex;
    align-items: center;
    background: #FFDA77;
    border-radius: 35px;
    position: relative;
}

.sup-search-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.7rem;
    font-family: 'MoreSugar';
    color: #37ABB0;
    padding: 20px;
    margin-left: 2%;
}

.sup-search-input::placeholder {
    color: #37ABB0;
    font-family: 'MoreSugar';
}

.sup-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #37ABB0;
    color: #FFDA77;
    font-family: 'MoreSugar';
    height: 82px;
    width: 250px;
    font-size: 1.8rem;
    padding: 12px 20px;
    border-radius: 35px;
    cursor: pointer;
    transition: 0.3s ease;
    border: none;
    position: relative;
}

.sup-search-btn img {
    width: 40px;
    height: 40px;
    margin-right: 8px;
}

.sup-filter-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFDA77;
    border-radius: 32px;
    display: none;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.sup-search-bar:hover .sup-filter-dropdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.sup-filter-column {
    flex: 1;
    min-width: 120px;
    padding: 20px;
}

.sup-filter-title {
    font-size: 1.5rem;
    font-family: 'MoreSugar', sans-serif;
    color: #37ABB0;
    margin-bottom: 10px;
}

.sup-filter-checkbox {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-family: 'MoreSugarThin', sans-serif;
    color: #37ABB0;
    gap: 8px;
    margin-bottom: 8px;
}

.sup-filter-checkbox input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #37ABB0;
    border-radius: 7px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.sup-filter-checkbox input:checked {
    background: #37ABB0;
    border-color: #37ABB0;
}

.sup-selected-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 70%;
    margin-top: 25px;
    justify-content: center;
}

.sup-filter-tag {
    background-color: #37ABB0;
    color: #FFDA77;
    font-family: 'MoreSugar';
    font-size: 1.2rem;
    padding: 8px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.sup-filter-tag i {
    font-size: 1rem;
    color: #FFDA77;
    cursor: pointer;
}

.sup-filter-tag i:hover {
    color: #feada4;
}

@media (max-width: 1568px) {
    .sup-search-bar {
        width: 80%;
    }

    .sup-selected-filters {
        width: 80%;
    }

    .sup-filter-title {
        font-size: 1.2rem;
    }

    .sup-filter-checkbox {
        font-size: 1.1rem;
    }

    .sup-filter-checkbox input {
        width: 14px;
        height: 14px;
        border-radius: 5px;
    }
}

@media (max-width: 1208px) {
    .sup-search-bar {
        width: 80%;
    }

    .sup-selected-filters {
        width: 80%;
    }

    .sup-filter-tag {
        font-size:small;
        gap: 5px;
    }

    .sup-filter-tag i {
        font-size: small;

    }
    .sup-filter-title {
        font-size: 1.1rem;
    }

    .sup-filter-checkbox {
        font-size: 1rem;
    }

    .sup-filter-checkbox input {
        width: 12px;
        height: 12px;
        border-radius: 5px;
    }
}

@media (max-width: 1024px) {
    .sup-search-bar {
        width: 70%;
    }

    .sup-selected-filters {
        width: 70%;
    }

    
    .sup-filter-tag {
        font-size:small;
        gap: 5px;
    }

    .sup-filter-tag i {
        font-size: small;

    }

    .sup-search-input {
        font-size: 1.1rem;
        padding: 8px;
    }

    .sup-search-btn {
        font-size: 1.2rem;
        height: 55px;
        width: 160px;
        padding: 8px 7px;
        border-radius: 25px;
    }

    .sup-search-btn img {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }

    .sup-filter-title {
        font-size: 1rem;
    }

    .sup-filter-checkbox {
        font-size: 0.7rem;
    }

    .sup-filter-checkbox input {
        width: 10px;
        height: 10px;
        border-radius: 5px;
    }
}

@media (max-width: 768px) {
    .sup-search-bar {
        width: 70%;
    }

    .sup-selected-filters {
        width: 70%;
    }

    
    .sup-filter-tag {
        font-size:x-small;
        gap: 5px;
    }

    .sup-filter-tag i {
        font-size: x-small;

    }

    .sup-search-input {
        font-size: 1rem;
        padding: 8px;
    }

    .sup-search-btn {
        font-size: 1.1rem;
        height: 50px;
        width: 150px;
        padding: 8px 7px;
        border-radius: 25px;
    }

    .sup-search-btn img {
        width: 25px;
        height: 25px;
        margin-right: 8px;
    }

    .sup-filter-dropdown {
        flex-direction: column;
        padding: 15px;
    }

    .sup-filter-column {
        width: 100%;
    }
}

@media (max-width: 580px) {
    .sup-search-bar {
        width: 70%;
        height: 45px;
        border-radius: 25px;
    }

    .sup-selected-filters {
        width: 70%;
    }

    .sup-filter-tag {
        font-size:x-small;
        gap: 5px;
    }

    .sup-filter-tag i {
        font-size: x-small;

    }

    .sup-search-input {
        font-size: 0.9rem;
        padding: 8px;
    }

    .sup-search-btn {
        font-size: 1rem;
        height: 45px;
        width: 150px;
        padding: 8px 7px;
        border-radius: 25px;
    }

    .sup-search-btn img {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    .sup-filter-title {
        font-size: 1.1rem;
    }

    .sup-filter-checkbox {
        font-size: 0.9rem;
    }

    .sup-filter-checkbox input {
        width: 14px;
        height: 14px;
    }
}

.sup-food-container {
    display: flex;
    justify-content: center;
    gap: 30px; 
    flex-wrap: wrap;
    margin: 4rem auto 4rem;
    width: 90%;
    max-width: 1600px;
}

.sup-food-card {
    color: var(--main-color);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    width: 30%; 
}


.sup-food-card:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.recipe-card {
    color: var(--main-color);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    width: 30%;
}

.recipe-card:hover {
    transform: scale(1.05);
    cursor: pointer;
}


.sup-food-img {
    width: 100%;
    height: 230px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sup-food-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.sup-food-rating {
    font-size: 1.5rem;
    color: #f5c344;
    margin: 10px 0;
    text-align: center;
}

.sup-food-title {
    font-size: 1.7rem;
    font-family: 'MoreSugar';
    color: #37ABB0;
    margin-bottom: 8px;
}

.sup-food-info {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    font-size: 1.2rem;
    font-family: 'MoreSugar';
    color: #37ABB0;
    margin-top: 8px;
    padding: 0 10px; 
}

.sup-food-location,
.sup-food-meal {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sup-food-info i {
    color: #f5c344; 
    font-size: 1.3rem;
}


@media (max-width: 1024px) {
    .sup-food-card {
        width: 48%;
    }
    .sup-food-title {
        font-size: 1.5rem;
    }
    .sup-food-rating {
        font-size: 1.3rem;
    }
    .sup-food-details {
        font-size: 1.2rem;
        justify-content: space-evenly;
    }
}

@media (max-width: 768px) {
    .sup-food-card {
        width: 100%; 
    }
    .sup-food-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .sup-food-container {
        flex-direction: column;
        gap: 1rem;
    }
    .sup-food-card {
        width: 100%;
    }
    .sup-food-title {
        font-size: 1.3rem;
    }
    .sup-food-rating {
        font-size: 1.2rem;
    }
    .sup-food-details {
        font-size: 1rem;
        flex-direction: column; 
        gap: 5px;
    }
}
.dscmeals-title-container {
    display: flex;
    align-items: center;
    justify-content:center; 
    margin-top: 2rem;
    margin-left: 6rem;
    margin-right: 6rem;
}

.dscmeals-title {
    font-family: 'Boorsook';
    font-size: 3rem;
    color: #358D33;
    font-weight: bold;
}

.dscmeals-title-img  {
    max-width: 100px; 
    height: auto;
}


@media (max-width: 1024px) {
    .dscmeals-title-container {
        margin-left: 4rem;
        margin-right: 4rem;
    }

    .dscmeals-title {
        font-size: 2.5rem;
    }

    .dscmeals-title-img {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .dscmeals-title-container {
        flex-direction: row;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .dscmeals-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .dscmeals-title-img {
        max-width:40px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 580px) {
    .dscmeals-title-container {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .dscmeals-title {
        font-size: 1.4rem;
    }

    .dscmeals-title-img {
        max-width: 30px;
    }
}

/* Meals Food Container */
.dscmeals-food-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px; 
    margin: 4rem auto;
    width: 90%;
    max-width: 1600px;
}

.dscmeals-food-card {
    background: #358D33;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 28%; 
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
}

.dscmeals-food-card:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.dscmeals-food-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.dscmeals-food-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dscmeals-food-title {
    font-size: 1.8rem;
    font-family: 'MoreSugar', sans-serif;
    color: #FFF4E8; 
    padding: 15px 0;
}

@media (max-width: 1024px) {
    .dscmeals-food-card {
        width: 45%; 
    }
}

@media (max-width: 768px) {
    .dscmeals-food-container {
        gap: 20px; 
    }
    .dscmeals-food-card {
        width: 100%; 
    }
}

/* Ingredients Food Container */
.dscingre-food-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px; /* Increased gap between cards */
    margin: 4rem auto;
    width: 90%;
    max-width: 1600px;
}

/* Individual Food Card */
.dscingre-food-card {
    background: #255699;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 28%; /* Slightly smaller width for more spacing */
    transition: transform 0.3s ease-in-out;
    overflow: hidden; /* Ensures the image stays inside */
}

/* Hover Effect */
.dscingre-food-card:hover {
    transform: scale(1.05);
    cursor: pointer;
}

/* Food Image */
.dscingre-food-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.dscingre-food-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Food Title */
.dscingre-food-title {
    font-size: 1.8rem;
    font-family: 'MoreSugar', sans-serif;
    color: #FFF4E8; /* Text contrasts with dark blue background */
    padding: 15px 0;
}

/* RESPONSIVENESS */
@media (max-width: 1024px) {
    .dscingre-food-card {
        width: 45%; /* Two cards per row */
    }
}

@media (max-width: 768px) {
    .dscingre-food-container {
        gap: 20px; /* Adjust gap for smaller screens */
    }
    .dscingre-food-card {
        width: 100%; /* One card per row */
    }
}
.dscingre-title-container {
    display: flex;
    align-items: center;
    justify-content:center; 
    margin-top: 2rem;
    margin-left: 6rem;
    margin-right: 6rem;
}

.dscingre-title {
    font-family: 'Boorsook';
    font-size: 3rem;
    color: #255699;
    font-weight: bold;
}

.dscingre-title-img  {
    max-width: 100px; 
    height: auto;
}


@media (max-width: 1024px) {
    .dscingre-title-container {
        margin-left: 4rem;
        margin-right: 4rem;
    }

    .dscingre-title {
        font-size: 2.5rem;
    }

    .dscingre-title-img {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .dscingre-title-container {
        flex-direction: row;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .dscingre-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .dscingre-title-img {
        max-width:40px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 580px) {
    .dscingre-title-container {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .dscingre-title {
        font-size: 1.4rem;
    }

    .dscingre-title-img {
        max-width: 30px;
    }
}

/* REGIONS */
.dscregions-title-container {
    display: flex;
    align-items: center;
    justify-content:center; 
    margin-top: 2rem;
    margin-left: 6rem;
    margin-right: 6rem;
}

.dscregions-title {
    font-family: 'Boorsook';
    font-size: 3rem;
    color: #F7BF35;
    font-weight: bold;
}

.dscregions-title-img  {
    max-width: 100px; 
    height: auto;
}


@media (max-width: 1024px) {
    .dscregions-title-container {
        margin-left: 4rem;
        margin-right: 4rem;
    }

    .dscregions-title {
        font-size: 2.5rem;
    }

    .dscregions-title-img {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .dscregions-title-container {
        flex-direction: row;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .dscregions-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .dscregions-title-img {
        max-width:40px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 580px) {
    .dscregions-title-container {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .dscregions-title {
        font-size: 1.4rem;
    }

    .dscregions-title-img {
        max-width: 30px;
    }
}

.dscregions-food-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 4rem auto;
    width: 90%;
    max-width: 1600px;
}


.dscregions-food-card {
    background: #F7BF35; 
    border-radius: 15px;
    padding: 0;
    transition: transform 0.3s ease-in-out;
    width: 28%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
}

.dscregions-food-card:hover {
    transform: scale(1.05);
}

.dscregions-food-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.dscregions-food-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dscregions-food-title {
    font-size: 2rem;
    font-family: 'MoreSugar', sans-serif;
    color: #FFF4E8;
    padding: 15px 0;
    text-align: center;
    width: 100%;
}

@media (max-width: 1024px) {
    .dscregions-food-card {
        width: 45%; 
    }
}

@media (max-width: 768px) {
    .dscregions-food-container {
        gap: 25px;
    }
    .dscregions-food-card {
        width: 100%; 
    }
}

.error-message {
    color: var(--darkyellow-color);
    font-style: italic;
    font-family: 'NexaHeavy';
}
    
