h1{
    margin-block-start: 0;
    margin-block-end: 0;
}

/* topcontent */
.beverages-section {
    width: 100%;
    background-color: var(--light-yellow-color);
    /* Light creamy beige background */
    padding: 0;
    margin: 0;
    position: relative;
    /* top: -80px; */
}

.beverages-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 40px 60px; */
    background-color: var(--light-yellow-color);
    /* Light creamy beige background */
    /* min-height: 400px; */
}

.beverages-text {
    flex: 1;
    max-width: 50%;
    padding-right: 40px;
}
/* Categories - Active state underline and primary color */
.beverages-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.beverages-categories .category-item {
    font-family: var(--font-roboto);
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--primary-color-2);
    padding-bottom: 6px;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.beverages-categories .category-item:hover {
    color: var(--primary-color);
}

.beverages-categories .category-item.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.beverages-heading {
    font-size: 50px;
    font-weight: bold;
    color: var(--brown-color-3);
    /* Dark brown text color */
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.beverages-description {
    font-size: 30px;
    color: var(--brown-color-3);
    /* Dark brown text color */
    line-height: 1.8;
    margin: 0;
    max-width: 90%;
}

.beverages-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eatery-image {
    max-width: 100%;
    height: auto;
    /* max-height: 350px; */
    object-fit: contain;
}

.beverages-categories {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-brown-color-3);
    padding: 20px 0;
    gap: 40px;
    flex-wrap: wrap;
}

.category-item {
    font-size: 30px;
    color: var(--primary-color-2);
    /* Dark brown text color */
    font-style: italic;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 0;
    /* Remove border radius */
    background: none;
    /* Remove background */
}

.category-item:hover {
    transform: scale(1.1);
    /* Only scale the text, no background */
    background: none;
    /* Ensure no background on hover */
}

.category-item.active {
    transform: scale(1.05);
    /* Slightly smaller scale for active state */
    background: none;
    /* No background for active state */
}

.no-categories {
    font-size: 30px;
    color: var(--brown-color-3);
    font-style: italic;
}

/* Eateries Grid Styles */
.eateries-grid-container {
    background-color: white;
    padding: 60px 40px;
    min-height: 500px;
}

.eateries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin:20px  auto;
}

/* Exact card styling to match the image perfectly */
.eatery-card {
    background: var(--light-blue-color);
    /* Light off-white background matching the image */
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
    border: none;
    position: relative;
}

.eatery-card.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.eatery-image-container {
    width: 90%;
    height: 280px;
    justify-self: center;
    overflow: hidden;
    position: relative;
    background: var(--light-blue-color);
    margin-top:10px;
}

.eatery-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.eatery-info {
    padding: 20px;
    background: var(--light-blue-color);
    position: relative;
}

.eatery-name-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    border-bottom: 1px solid var(--brown-color-3);
    padding-bottom: 5px;
}

.eatery-name {
    font-size: 36px;
    font-weight: 600;
    color: var(--brown-color-3);
    /* Dark grey text */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-style: italic;
    line-height: 0.5;
}

.price-tag {
    font-family: var(--font-roboto);
    background-color: var(--brown-color-3);
    color: var(--white-color);
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    min-width: 78px;
    text-align: center;
    text-decoration: none;
    margin-top: 4%;
}

.eatery-ingredients-like {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
}

.eatery-ingredients {
    font-family: var(--font-roman);
    font-size: 12px;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
    line-height: 1.7;
    font-style: italic;
}

.like-button {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.like-button:hover {
    background-color: rgba(51, 41, 40, 0.1);
}

.like-button i {
    color: var(--brown-color-3);
    /* Dark grey heart icon */
    font-size: 30px;
    transition: all 0.3s ease;
    font-weight: 300;
    /* Light weight for outline effect */
}

.like-button.liked i {
    color: var(--red-color);
    transform: scale(1.1);
    font-weight: 900;
    /* Bold when liked */
}

.like-button.loading i {
    animation: pulse 1s infinite;
}

.like-count {
    font-size: 30px;
    color: var(--brown-color-3);
    /* Dark grey text */
    font-weight: 500;
    transition: all 0.3s ease;
}

.like-button.liked .like-count {
    color: var(--red-color);
    font-weight: 600;
}

.no-eateries {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--grey-color);
    font-size: 30px;
}

/* Loading animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Toast notification styles */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--brown-color-3);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 300px;
    word-wrap: break-word;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.success {
    background: var(--green-color-6);
}

.toast.error {
    background: var(--red-color-2);
}

/* Responsive Design */
/* Large tablets / small desktops */
@media (max-width: 1200px) {
    .eateries-grid {
        gap: 24px;
    }

    .eatery-image-container {
        height: 260px;
    }

    .category-item {
        font-size: 26px;
    }

    .eatery-name {
        font-size: 42px;
    }





    .like-button i,
    .like-count {
        font-size: 24px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .beverages-categories {
        gap: 24px;
        row-gap: 14px;
    }

    .eateries-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .eatery-image-container {
        height: 240px;
    }

    .eatery-name {
        font-size: 36px;
    }





    .like-button i,
    .like-count {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .beverages-content {
        flex-direction: column;
        /* padding: 30px 20px; */
        text-align: center;
    }

    .beverages-text {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .beverages-heading {
        font-size: 3.6rem;
    }

    .beverages-description {
        font-size: 1.26rem;
        max-width: 100%;
    }

    .beverages-categories {
        gap: 16px;
        padding: 15px 10px;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        padding-left: 16px;
    }

    .category-item {
        font-size: 1.12rem;
        padding: 6px 12px;
        display: inline-block;
    }

    .eateries-grid-container {
        padding: 40px 20px;
    }

    .eateries-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .eatery-name {
        font-size: 16px;
    }



    .eatery-ingredients {
        font-size: 0.98rem;
    }

    .eatery-image-container {
        height: 220px;
    }

    .like-button i,
    .like-count {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .beverages-heading {
        font-size: 2.88rem;
    }

    .beverages-categories {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0;
        row-gap: 0;
        padding: 14px 16px;
        position: relative;
        border-bottom: 1px solid var(--black-color);
        border-top: 1px solid var(--black-color);
    }

    .category-item {
        font-size: 0.98rem;
        flex: 0 0 33.33%;
        text-align: center;
        padding: 8px 6px;
        position: relative;
    }


    .eateries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .eatery-image-container {
        height: 150px;
    }

    .eatery-name {
        font-size: 16px;
    }

    .price-tag {
        padding: 6px;
        font-size: 12px;
        min-width: 64px;
        margin-top: -7%;
    }

    .eatery-ingredients {
        font-size: 10px;
    }
}

/* activity */

.upcoming-activities-section {
    background-color: var(--light-brown-color-3);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activities-content {
    text-align: center;
    max-width: 1400px;
    z-index: 2;
    position: relative;
}

.activities-heading {
    font-family: var(--font-palmer-lake-print);
    font-size: 80px;
    font-weight: bold;
    color: var(--brown-color-3);
    margin-bottom: 20px;
    line-height: 1.2;
}

.activities-description {
    font-family: var(--font-roboto);
    font-size: 18px;
    color: var(--brown-color-3);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.explore-button {
    font-family: var(--font-palmer-lake-print);
    padding: 3px 24px 10px 24px;
    font-size: 35px;
    font-weight: 600;
    background-color: var(--white-color);
    color: var(--brown-color-3);
    border: none;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(51, 41, 40, 0.1);
}

.explore-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 41, 40, 0.15);
}

/* Left side circles */
.circles-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Right side circles */
.circles-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.circle {
    background-color: rgba(51, 41, 40, 0.08);
    border-radius: 50%;
    position: absolute;
}

/* Left side circle positions */
.circles-left .circle-1 {
    width: 200px;
    height: 200px;
    top: -200px;
    left: 0;
}

.circles-left .circle-2 {
    width: 200px;
    height: 200px;
    top: -92px;
    left: 167px;
}

.circles-left .circle-3 {
    width: 200px;
    height: 200px;
    top: 0px;
    left: -7px;
}

/* Right side circle positions */
.circles-right .circle-1 {
    width: 150px;
    height: 150px;
    top: -60px;
    right: 40px;
}

.circles-right .circle-2 {
    width: 150px;
    height: 150px;
    top: 90px;
    right: 40px;
}

.circles-right .circle-3 {
    width: 150px;
    height: 150px;
    top: 15px;
    right: -90px;
}

/* Responsive design */
@media (max-width: 768px) {
    .activities-heading {
        font-size: 40px;
    }

    .activities-description {
        font-size: 15px;
        padding: 0 20px;
    }

    /* .circles-left,
    .circles-right {
        display: none;
    } */
    .circles-left .circle-1 {
        width: 100px;
        height: 100px;
        top: -135px;
        left: -10px;
    }

    .circles-left .circle-2 {
        width: 100px;
        height: 100px;
        top: -110px;
        left: 90px;
    }

    .circles-left .circle-3 {
        width: 100px;
        height: 100px;
        top: -30px;
        left: 25px;;
    }

    /* Right side circle positions */
    .circles-right .circle-1 {
        width: 80px;
        height: 80px;
        top: 39px;
        right: 40px;
    }

    .circles-right .circle-2 {
        width: 80px;
        height: 80px;
        top: 121px;
        right: 30px;
    }

    .circles-right .circle-3 {
        width: 80px;
        height: 80px;
        top: 70px;
        right: -35px;
    }

    .upcoming-activities-section {
        padding: 40px 0;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .activities-heading {
        font-size: 40px;
    }

    .explore-button {
        font-size: 25px;
    }

    .upcoming-activities-section {
        min-height: 250px;
    }
}
