@import url('https://fonts.googleapis.com/css2?family=Chocolate+Classical+Sans&family=Pacifico&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Chocolate Classical Sans", sans-serif;
}

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 6px 30px;
    display: flex;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.065);
    background-color: white;
}

.header .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 80%;
    flex-grow: 1;
}

.header .logo img {
    width: 130px;
    align-items: start;
}

.header .navbar {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 400;
    ;
}

.navbar .btn-contact-us {
    padding: 10px 15px;
    border: solid 1px #8f6a5e12;
    border-radius: 10px;
    background-color: #8f6a5e;
    ;
    color: white;
    margin-left: 50px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.065);
}

.navbar .btn-contact-us:hover {
    background-color: #bca493;
    ;
    transition: 0.3s;
}

a {
    text-decoration: none;
    color: #5c463e;
}



.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #4c3a34;
    border-radius: 2px;
}



.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 600px;

    background-image: url("../images/hero-image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
}


.hero .hero-headline {
    position: relative;
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 5rem;
    color: #ffffff;
    padding-top: 175px;
}


.hero .hero-subheadline {
    position: relative;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    color: #ffffff;
}



.products {
    margin: 0 auto;
    margin-bottom: 50px;
    padding-top: 100px;
    text-align: center;
}


.products-header h2 {
    font-size: 4rem;
    margin-bottom: 10px;
    font-family: "Pacifico", cursive;
    font-weight: 400;
    color: #8f6a5d;
}

.products-header p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.products-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 70px;
}


.products-filters button {
    padding: 8px 16px;
    border: 1px solid #8f6a5e;
    border-radius: 25px;
    background-color: #fcf0e8;
    cursor: pointer;
    font-family: "Chocolate Classical Sans", sans-serif;
}

.products-filters button:hover {
    background-color: #ebdacf;
    scale: 1.05;
    transition: 0.1s;
}


.products-filters button.active {
    background-color: #8f6a5e;
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 50px;
    margin: 0 auto;
    max-width: 1100px;
}

.product-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 0px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-bottom: 30px;
}

.product-card img,
.admin-product-image {
    cursor: zoom-in;
}


.product-card:hover {
    scale: 1.05;
    transition: 0.3s;
    cursor: pointer;
}

.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.image-modal.hidden {
    display: none;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    border-radius: 12px 12px 0px 0px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    padding: 0px 20px;
}

.product-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
    padding: 10px 30px;
}

.product-card .price {
    font-weight: bold;
    font-size: 1.5rem;
    color: #8f6a5e;

}




.faq {
    padding: 100px 30px;
    text-align: center;
}

.faq-header h2 {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    line-height: 3.5rem;
    font-size: 3rem;
    color: #8f6a5d;
    margin-bottom: 30px;
}

.faq-header p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #d8c7ba;
}

.faq-question {
    font-family: "Chocolate Classical Sans", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    text-align: left;
    border: none;
    background-color: #ffffff;
    color: #8f6a5d;
    cursor: pointer;
    outline: none;
    transition: background 0.3s;
    position: relative;
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    transition: transform 0.3s;
    display: inline-block;
}


.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
    padding: 0px 20px;
    margin-bottom: 15px;
}


.faq-answer p {
    margin: 0;
    color: #5c463e;
}




.site-footer {
    background-color: #fcf0e8;
    padding: 60px 30px 20px;
    color: #5c463e;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-about,
.footer-contact,
.footer-social {
    flex: 1 1 250px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #8f6a5e;
}

.footer-contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact input,
.footer-contact textarea::placeholder {
    font-family: "Chocolate Classical Sans", sans-serif;
}

.footer-contact input,
.footer-contact textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #8f6a5e33;
}

.footer-contact button {
    padding: 10px 15px;
    border-radius: 10px;
    background-color: #8f6a5e;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.footer-contact button:hover {
    background-color: #5c463e;
}

.footer-social .social-links {
    display: flex;
    align-items: center;
}

.footer-social img {
    width: 70px;
    transition: 0.3s;
}

.footer-social img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #5c463e99;
}


@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 3fr;
    }

    .hamburger {
        display: flex;
    }

    .header .logo img {
        width: 100px;
        align-items: start;
    }

    .header .nav-wrapper {
        max-width: 100%;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 2fr);
        gap: 50px;
        margin: 0 auto;
        max-width: 95%;
    }
}




@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }


    .header .logo img {
        width: 100px;
        align-items: start;
    }

    .header .nav-wrapper {
        max-width: 100%;
    }

    nav {
        position: absolute;
        top: 70px;
        right: 30px;
        background-color: #fcf0e8;
        border-radius: 12px;
        padding: 30px 20px;
        display: none;
        z-index: 100;
    }

    nav.active {
        display: block;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .header .navbar .btn-contact-us {
        margin-left: 0px;
        background-color: #8f6a5d;
        color: white;
    }

    .hero {
        height: 500px;
    }

    .hero .hero-headline {
        font-size: 3.5rem;
    }


    .hero .hero-subheadline {
        font-size: 1.5rem;
        text-align: center;
        padding: 0 35px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 0 12px;
    }

    .product-card p {
        padding: 0 8px;
        margin-bottom: 0px;
    }

    .products {
        margin: 0px;
        margin-bottom: 50px;
        padding-top: 0px;
    }

    .products-filters {
        flex-direction: column;
        gap: 10px;
        width: 70%;
        margin: auto;
        padding-bottom: 10px;
    }

    .products-filters button {
        font-size: 1em;
        color: #8f6a5d;
    }

    .products-header {
        margin: 50px;
    }

    .products-header h2 {
        font-size: 3rem;
        line-height: 3rem;
        margin-bottom: 50px;
    }

    .products-header p {
        font-size: 0.95rem;
    }

    .faq {
        padding-top: 50px;
        columns: #8f6a5d;
    }

    .faq-question {
        color: #8f6a5d
    }

    .faq-header h2 {
        margin-top: 0px;
        font-size: 3rem;
        line-height: 3.5rem;
    }

    .faq-header p {
        padding: 0px 20px;
    }


    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-about {
        flex: 1 1 175px;
    }

    .footer-contact form {
        align-items: center;
        padding-bottom: 20px;
    }

    .footer-contact input,
    .footer-contact textarea {
        width: 100%;
        max-width: 300px;
    }


    .footer-about,
    .footer-contact,
    .footer-social {
        flex: 1 1 100px;
    }

    .footer-social .social-links {
        justify-content: center;
    }
}