:root {
    --hover-color: #a5a4a4;
}

html,
body {
    height: 100%;
}



.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}






.logo {
    font-family: cursive;
    font-size: 30px;
    font-weight: 600;
}

/* ===============================
   GLOBAL STYLES
=================================*/

.section-title {
    font-weight: 700;
    font-size: 28px;
}

/* ===============================
   HERO SECTION
=================================*/

.hero-wrapper {
    border-radius: 18px;
    overflow: hidden;
    background: #e6eef6;
}

.hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-text {
    font-size: 16px;
    color: #444;
}

.hero-arrow {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* ===============================
   RECIPE CARDS
=================================*/

.recipe-card,
.sweet-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.recipe-card:hover,
.sweet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.recipe-img img,
.sweet-img img {
    width: 100%;
    object-fit: cover;
    transition: .4s;
}

.recipe-img img {
    height: 200px;
}

.sweet-img img {
    height: 220px;
}

.recipe-card:hover img,
.sweet-card:hover img {
    transform: scale(1.07);
}

.recipe-body {
    padding: 15px;
}

.recipe-title,
.sweet-title {
    font-size: 18px;
    font-weight: 600;
}

.recipe-rating {
    color: #ff7a00;
    font-size: 14px;
    letter-spacing: 2px;
}

.sweet-body {
    padding: 14px;
    text-align: center;
}

/* ===============================
   CATEGORY SECTION
=================================*/

.category-item {
    transition: .3s;
}

.category-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
    padding: 3px;
    transition: .3s;
}

.category-name {
    margin-top: 10px;
    font-weight: 500;
}

.category-item:hover .category-img {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

/* ===============================
   NEWSLETTER SECTION
=================================*/

.newsletter-section {
    background: #fde3db;
    padding: 60px 20px;
    margin-top: 60px;
}

.newsletter-title {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 10px;
}

.newsletter-text {
    color: #555;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: auto;
    gap: 10px;
}

.newsletter-input {
    border-radius: 8px;
    padding: 12px;
}

.newsletter-btn {
    padding: 10px 22px;
    border-radius: 8px;
}

/* ===============================
   COLLECTION SECTION
=================================*/

.collection-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.collection-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .4s;
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, .7));
}

.collection-overlay h5 {
    margin: 0;
    font-weight: 600;
}

.collection-card:hover img {
    transform: scale(1.08);
}

/* ===============================
   RECIPE GRID
=================================*/

.recipe-grid-card {
    cursor: pointer;
}

.recipe-grid-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: .3s;
}

.recipe-grid-card:hover img {
    transform: scale(1.05);
}

.recipe-name {
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width:992px) {

    .hero-title {
        font-size: 34px;
    }

    .hero-content {
        padding: 30px;
    }

    .hero-image {
        height: 150px;
    }

    .sweet-img img {
        height: 200px;
    }

    .collection-card img {
        height: 220px;
    }

    .recipe-grid-card img {
        height: 160px;
    }

    .category-img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width:768px) {

    .newsletter-title {
        font-size: 26px;
    }
}

@media (max-width:576px) {

    .hero-title {
        font-size: 28px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-arrow {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .sweet-title {
        font-size: 16px;
    }

    .sweet-img img {
        height: 180px;
    }

    .collection-card img {
        height: 200px;
    }

    .collection-overlay h5 {
        font-size: 16px;
    }

    .recipe-grid-card img {
        height: 120px;
    }

    .recipe-name {
        font-size: 13px;
    }

    .category-img {
        width: 50px;
        height: 50px;
    }

    .category-name {
        font-size: 14px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}





/* CONTACT HERO */

.contact-hero {
    padding: 40px 20px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
}

.contact-text {
    color: #555;
    max-width: 600px;
    margin: auto;
}


/* CONTACT FORM */

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-card .form-control {
    border-radius: 8px;
    padding: 10px;
}


/* MOBILE */

@media(max-width:576px) {

    .contact-title {
        font-size: 28px;
    }

}



/* =============================================
About Page Styling start Here 
================================================
*/

.about-label {
    font-size: 18px;
    margin-bottom: 20px;
}

.about-heading {
    font-size: 42px;
    font-weight: 700;
    max-width: 700px;
    margin-bottom: 30px;
}

.about-main-img {
    border-radius: 12px;
    margin-bottom: 20px;
    width: 100%;
}

.about-text {
    color: #555;
    max-width: 700px;
}

.story-title {
    font-size: 36px;
    font-weight: 700;
}

.story-text {
    color: #555;
    margin-top: 15px;
}

.team-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.team-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-name {
    font-weight: 600;
    margin-bottom: 2px;
}

.team-role {
    font-size: 13px;
    color: #777;
}

.location-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.location-text {
    color: #555;
    max-width: 500px;
}

.social-icons i {
    font-size: 18px;
    margin-right: 15px;
    cursor: pointer;
}


/* ---------- Tablet ---------- */

@media (max-width: 992px) {

    .about-heading {
        font-size: 34px;
    }

    .story-title {
        font-size: 30px;
    }

    .team-title {
        font-size: 30px;
    }

    .team-img {
        width: 90px;
        height: 90px;
    }

}


/* ---------- Mobile ---------- */

@media (max-width: 576px) {

    .about-label {
        font-size: 16px;
    }

    .about-heading {
        font-size: 28px;
    }

    .about-text {
        font-size: 15px;
    }

    .story-title {
        font-size: 24px;
    }

    .story-text {
        font-size: 15px;
    }

    .team-title {
        font-size: 26px;
    }

    .team-img {
        width: 80px;
        height: 80px;
    }

    .location-text {
        font-size: 15px;
    }

    .social-icons i {
        font-size: 16px;
    }

}

/* =================================================
About Page Styling Ends here 
====================================================*/

/* =================================================
Menu Page Styling Start here 
====================================================*/


.menu-section {
    background: #f9f9f9;
}

.menu-title {
    font-size: 40px;
    font-weight: 700;
}

.menu-subtitle {
    color: #666;
    max-width: 600px;
    margin: auto;
}

.category-title {
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.menu-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    align-items: center;
    transition: 0.3s;
}

.menu-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.menu-img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.menu-details {
    flex: 1;
}

.menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-top h5 {
    font-weight: 600;
    margin: 0;
}

.menu-desc {
    color: #666;
    font-size: 14px;
    margin-top: 6px;
}

.price {
    font-weight: 600;
}

@media (max-width:768px) {

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-img {
        width: 100%;
        height: 180px;
    }

}

/* =================================================
menu Page Styling Ends here 
====================================================*/





/* Footer Section Styles */

.footer-link {
    text-decoration: none;
    color: #666;
    display: block;
    margin-bottom: 6px;
}

.footer-link:hover {
    color: var(--hover-color);
}

.social-icons i {
    font-size: 20px;
    color: #777;
    cursor: pointer;
}

.social-icons i:hover {
    color: var(--hover-color);
}