:root {
    --cream: #FFF8F0;
    --brown: #5C4033;
    --rose: #D98C8C;
    --beige: #F5E6D3;
    --white: #FFFFFF;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    body {
    font-family: "Trebuchet MS", sans-serif;
    color: var(--brown);
    background-color: var(--white);
}
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: var(--cream);
}

.logo {
   .logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--brown);
}
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    nav a {
    text-decoration: none;
    color: var(--brown);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--rose);
}
}
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 8%;
    background: linear-gradient(
        120deg,
        #fff8f0 0%,
        #f5e6d3 100%
    );
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    color: #d98c8c;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    color: #5c4033;
    font-size: 68px;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero-description {
    color: #6b5a50;
    font-size: 18px;
    line-height: 1.8;
    max-width: 550px;
    margin-bottom: 35px;
}

.hero-button {
    display: inline-block;
    padding: 16px 34px;
    background-color: #5c4033;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #d98c8c;
    transform: translateY(-3px);
}.about {
    padding: 100px 60px;
    background-color: #ffffff;
}

.about-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.section-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.about h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.about p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-button {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 28px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 30px;
}
.menu {
    padding: 100px 60px;
    background-color: #fff8f0;
}

.menu-heading {
    text-align: center;
    margin-bottom: 50px;
}

.menu-heading h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.menu-heading > p:last-child {
    font-size: 17px;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.product-info span {
    font-size: 20px;
    font-weight: bold;
}
@media (max-width: 768px) {
        .navbar {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .navbar nav {
        display: none;
        width: 100%;
    }

    .navbar nav.active {
        display: block;
    }

    .navbar nav ul {
        flex-direction: column;
        align-items: center;
    }
        .footer {
        padding: 60px 20px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .whatsapp-button {
        right: 15px;
        bottom: 15px;
        padding: 12px 18px;
        font-size: 14px;
    }

    .navbar {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 70vh;
        padding: 50px 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    .about {
        padding: 70px 20px;
    }

    .about h2 {
        font-size: 34px;
    }

    .menu {
        padding: 70px 20px;
    }

    .menu-heading h2 {
        font-size: 34px;
    }

    .product-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}
.offers {
    padding: 80px 60px;
    background-color: #f5e6d3;
    text-align: center;
}

.offer-content {
    max-width: 700px;
    margin: 0 auto;
}

.offer-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.offer-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.offer-content > p:not(.offer-subtitle) {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.offer-button {
    display: inline-block;
    padding: 15px 32px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.offer-button:hover {
    transform: scale(1.05);
}
.contact {
    padding: 100px 60px;
    background-color: #ffffff;
}

.contact-heading {
    text-align: center;
    margin-bottom: 50px;
}

.contact-heading h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-heading > p:last-child {
    font-size: 17px;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-info h3:nth-of-type(2) {
    margin-top: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 15px;
    border: none;
    border-radius: 30px;
    background-color: #333;
    color: white;
    font-size: 16px;
    cursor: pointer;
}
.whatsapp-button {
    position: fixed;
    right: 25px;
    bottom: 25px;
    padding: 14px 22px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    z-index: 1000;
}

.footer {
    padding: 70px 60px 20px;
    background-color: #333;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer h2 {
    margin-bottom: 15px;
}

.footer h3 {
    margin-bottom: 20px;
}

.footer p {
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 20px;
    border-top: 1px solid #555;
    text-align: center;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}