.hero-section {
    position: relative;
    height: 100%;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('../images/menu.png');
    background-size: cover;
    background-position: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1f5c3fde;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 80px;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.2;
    color: #E1D19D;
    margin-bottom: 20px;
    text-align: center;
}

.hero-text{
    font-size: 24px;
    margin-top: 10px;
    text-align: center;
    color: #fff;
    width: 70%;
    line-height: 1.5;
    margin: 0 auto;
    font-family: Tenor sans, sans-serif;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.hero-btn {
  background: #e1d19d;
  color: #205c40;
  cursor: pointer;
  font-size: 20px;
  width: fit-content;
  padding: 20px 30px;
  border-radius: 10px;
  font-weight: 600;
  border: 2px solid #e1d19d;
  font-family: "Raleway", sans-serif;
}

@media (max-width: 1200px) {
.hero-title {
    font-size: 50px;
}
}

@media (max-width: 767px) {
.hero-title {
    font-size: 30px;
}

.hero-text {
    font-size: 18px;
    width: 90%;
}
}

/* Category section  */
.menu-categories-section {
    position: relative;
}

.categories-container {
    width: min(1200px, 92%);
  margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
}

.menu-card {
    background: #205c40;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0px 14px rgba(0, 0, 0, 0.6);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.menu-card-title {
    color: #e1d19d;
    font-size: 18px;
    font-weight: 700;
    padding: 20px;
    font-family: "Raleway", sans-serif;
}

.menu-card-image {
    width: 100%;
    height: 255px;
    overflow: hidden;
    position: relative;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-card-image-explore{
     width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.menu-card-footer {
    padding: 20px;
}

.menu-btn:hover {
    background: #f0e0a9;
    color: #154b31;
}

.explore-card {
    position: relative;
    padding: 0;
}

.explore-card .explore-link {
    display: block;
    width: 100%;
    height: 100%;
}

.explore-card .menu-card-image {
    height: 100%;
    min-height: 355px;
}


.explore-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.explore-overlay h3 {
    color: #dbc98d;
    font-size: 56px;
    line-height: 0.95;
    font-weight: 700;
    margin: 0;
}

.menu-note {
    text-align: center;
    margin-top: 28px;
    color: #205C40;
    font-size: 20px;
    font-weight: 400;
    font-family: Tenor sans, sans-serif;
}

/* Center last row items like screenshot */
.menu-grid > .menu-card:nth-child(5) {
    grid-column: 2 / 3;
}

.menu-grid > .menu-card:nth-child(6) {
    grid-column: 3 / 4;
}

/* Tablet */
@media (max-width: 991px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-grid > .menu-card:nth-child(5),
    .menu-grid > .menu-card:nth-child(6) {
        grid-column: auto;
    }

    .explore-card .menu-card-image {
        min-height: 280px;
    }

    .explore-overlay h3 {
        font-size: 44px;
    }

    .menu-note {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-card-image {
        height: 220px;
    }

    .explore-card .menu-card-image {
        min-height: 220px;
    }

    .explore-overlay h3 {
        font-size: 36px;
    }

    .menu-btn {
        min-width: 140px;
        font-size: 15px;
        padding: 10px 22px;
    }

    .menu-note {
        font-size: 16px;
    }
}