body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: none;
    color: #333;
}

/* Navigation bar */
nav.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav .logo img {
    height: 50px;
}

nav .nav-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}

nav .nav-links a:hover {
    color: #000000;
}

/* Hero banner */
section.hero-banner {
    position: relative;
    text-align: center;
    color: white;
}

section.hero-banner img {
    width: 100%;
    height: auto;
    opacity: 0.8;
    border-radius: 75px;
}

section.hero-banner .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

section.hero-banner .button {
    background-color: #6a1b9a;
    color: #fff;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: medium;
    border-radius: 30px;
}

section.hero-banner p {
    color: #6b3a76;
    font-size: 1.2em;
}

/* Products section menu */
section.products {
    padding: 50px 20px;
    text-align: center;
}

section.products h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #6a1b9a;
}

section.products .product-images {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

section.products .product-thumbnail {
    text-align: center;
    flex: 0 0 auto;
}

section.products .product-thumbnail img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
}

section.products .product-thumbnail p {
    margin-top: 10px;
    font-size: 1.1em;
    color: #6a1b9a;
}

/* Sampler packs */
.sampler-packs {
    max-width: 100%;
    margin: 40px auto; 
    text-align: center;
    font-size: larger;
    color: #6a1b9a;
}

.sampler-packs-thumbnails {
    display: inline-block; 
    text-align: center; 
    margin: 20px 20px; 
    vertical-align: top; 
    width: 30%;
}

.sampler-packs-thumbnails img {
    max-width: 50%; 
    height: auto; 
}

.sampler-packs-thumbnails p {
    margin-top: 5px; 
    font-weight: bold; 
}

/* Menu gallery */
.menu-gallery {
    text-align: center;
    font-size: larger;
    color: #6a1b9a;
    padding: 20px; 
}

.menu-gallery h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.gallery-row img {
    max-width: 20%; 
    height: auto;
    flex: 1 1 calc(25% - 60px);
    box-sizing: border-box;
    margin: 20px;
}

/* Footer */
.footer {
    background-color: #7A5085;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 5px 0;
}

.footer a:hover {
    text-decoration: underline;
}

.quick-links,
.social-links,
.google-maps,
.copyright {
    flex: 1;
}

/* Quick links styling */
.quick-links {
    display: flex;
    flex-direction: column;
}

.quick-links a {
    margin-bottom: 10px;
}

/* Social links styling */
.footer-contact {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-social-icons {
    display: flex;
    justify-content: space-between;
    width: 150px;
}

.footer-social-icons img {
    width: 24px;
    height: 24px;
}

/* Google Maps styling */
.google-maps-footer {
    width: 200px;
    height: auto;
    border-radius: 30px;
}

/* Copyright styling */
.footer-copyright {
    font-size: 12px;
    text-align: center;
    flex-basis: 100%;
    margin-top: 20px;
}

/* Media Queries */

/* Mobile (up to 576px) */
@media (max-width: 576px) {
    section.hero-banner img {
        border-radius: 0;
    }
    section.products .product-images {
        flex-direction: column;
        align-items: center;
    }
    section.products .product-thumbnail {
        flex: 0 0 auto;
        width: 80%;
    }
    .sampler-packs-thumbnails {
        width: 80%;
    }
    .sampler-packs-thumbnails img {
        max-width: 80%;
    }
    .image-gallery {
        flex-direction: column;
    }
    .gallery-row img {
        width: 80%;
        margin: 10px;
    }
    .footer {
        flex-direction: column;
        text-align: center;
    }
}

/* Tablet (up to 768px) */
@media (max-width: 768px) {
    section.hero-banner img {
        border-radius: 0;
    }
    section.products .product-images {
        flex-direction: column;
        align-items: center;
    }
    section.products .product-thumbnail {
        flex: 0 0 auto;
        width: 80%;
    }
    .sampler-packs-thumbnails {
        width: 50%;
    }
    .sampler-packs-thumbnails img {
        max-width: 70%;
    }
    .image-gallery {
        flex-direction: column;
    }
    .gallery-row img {
        width: 40%;
        margin: 10px;
    }
    .footer {
        flex-direction: column;
        text-align: center;
    }
}
