/* General body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #cab9ac;
    text-align: center;
}

/* Header styling */
header {
    background-color: #774A28;
    padding: 20px;
    color: white;
}

/* Logo styling */
.logo {
    width: 175px;
    height: auto;
    padding: 20px;
}

/* Desktop navigation styling */
.desktop-nav {
    display: flex;
    align-items: center;
}

/* Desktop navigation list styling */
.desktop-nav ul {
    list-style: none;
    padding: 1rem;
    display: flex;
    gap: 15px;
    margin: 0;
}

/* Desktop navigation list item styling */
.desktop-nav ul li {
    display: inline;
    padding: 15px;
}

/* Desktop navigation links styling */
.desktop-nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    font-family: 'Twinkle Star';
}

/* Desktop navigation links hover effect */
.desktop-nav ul li a{
    color: #EC207A;
    background: #F0D3F7;
    padding: 15px;
    border-radius: 5px;
}


/* Mobile navigation styling */
.mobile-nav {
    display: none;
    justify-content: space-between;
    align-items: center;
}

/* Hamburger menu button styling */
.hamburger {
    font-size: 40px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Mobile menu styling */
#mobile-menu {
    display: none;
    background-color: #F0D3F7;
    position: absolute;
    width: 40%;
    top: 50px;
}

/* Mobile menu list styling */
#mobile-menu ul {
    list-style: none;
    padding: 10px;
    margin: 0;
}

/* Mobile menu list item styling */
#mobile-menu ul li {
    padding: 20px;
}

/* Mobile menu links styling */
#mobile-menu ul li a {
    color: #EC207A;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Twinkle Star';
}

/* Mobile menu links hover effect */
#mobile-menu ul li a:hover {
    color: #F0D3F7;
    background-color: #EC207A;
    padding: 5px;
    border-radius: 5px;
}

/* Section links styling */
.section-links {
    justify-content: space-around;
    padding: 20px;
    color: #774A28;
}

/* Section link styling */
.section-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section link image styling */
.section-link img {
    width: 700px; /* Set a fixed width to make images rectangular */
    height: 200px; /* Set a fixed height to make images rectangular */
    object-fit: cover; /* Ensure the image covers the area without distortion */
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Section link h2 styling */
.section-link h2 {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #EC207A; /* Use one of your other colors */
    font-size: 2.5rem; /* Increased font size */
    text-align: center; /* Center the text */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    pointer-events: none; /* Ensure the text does not interfere with clicking the image */
    background-color: white; /* Add a white background */
    padding: 10px; /* Add some padding */
    border-radius: 10px; /* Rounded edges */
    font-family: 'Caveat Brush', cursive; /* Use a fun font */
}

/* Responsive section link image styling for smaller screens */
@media (max-width: 768px) {
    .section-link img {
        width: 300px;
        height: 150px;
        object-fit: cover; /* Ensure the image covers the area without distortion */
        border-radius: 10px;
        margin-bottom: 20px;
    }
}

/* Hero section styling */
.hero {
    padding: 5px; /* Add padding for space around the text */
    margin: 20px auto; /* Center the box and add margin for spacing */
    max-width: 40%; /* Limit the width to ensure it doesn't touch the edges of the screen */
    color: #EC207A;
    font-size: 2rem;
    font-family: 'Caveat Brush', cursive;
    background-color: #F0D3F7; /* Add background color */
    border-radius: 10px; /* Add rounded edges */
}

/* Flavors section styling */
.flavors {
    padding: 20px;
    color: #774A28;
}

/* Flavor grid paragraph styling */
.flavor-grid p {
    font-family: 'Fredericka the Great';
    font-size: 1.2rem;
    color: #774A28;
}

/* Flavor grid styling */
.flavor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Flavor item styling */
.flavor {
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

/* Responsive flavor grid styling for larger screens */
@media (min-width: 600px) {
    .flavor-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Flavor image styling */
.flavor img {
    width: 100%;
    border-radius: 10px;
}

/* Footer styling */
footer {
    background-color: #774A28;
    color: white;
    padding: 20px;
    margin-top: 20px;
}

/* Social media icons styling */
.socials img {
    width: 60px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

/* Social media icons hover effect */
.socials img:hover {
    transform: scale(1.1);
}

/* Footer info links styling */
.footerinfo a {
    color: white;
    text-decoration: none;
}

/* Footer info links hover effect */
.footerinfo a:hover {
    color: #EC207A;
    text-decoration: none;
}

/* Responsive styling for mobile navigation */
@media (max-width: 1130px) {
    .desktop-nav {
        display: none;
    }
    .mobile-nav {
        display: flex;
    }
    #mobile-menu.hidden {
        display: none;
    }
    #mobile-menu {
        display: block;
    }
    .logo {
        width: 100px;
    }
}

/*about us styling*/
#about-us {
    padding: 20px;
}
#about-us h2{
    color: #774A28;
    font-family: 'Caveat Brush', cursive;
}

#about-us h1{
    color: #774A28;
    font-family: 'Caveat Brush', cursive;
    font-size: 2.5rem;
}

#about-us img{
    width: 70%;
    border-radius: 10px;
}

#about-us p{
    font-family: 'Fredericka the Great';
    font-size: 1.2rem;
    color: #774A28;
    line-height: 1.8rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}
#about-us ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
#about-us ul li{
    padding: 10px;
    color: #774A28;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Twinkle Star';
}

/* Locations Styling*/
.location-info {
    text-align: center;
    padding: 2rem;
    line-height: 1.5rem;
}

.location-info h1 {
    font-size: 2.5rem;
    color:#EC207A; 
    margin-bottom: 1.5rem;
    padding:10px;
}

.map-container {
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.map-container iframe {
    border-radius: 8px;
    width: 100%;
    height: 450px;
}

.locations {
    background: rgba(240, 211, 247, 0.8); /* Soft colored background for all locations with 80% transparency */
    padding: 2rem;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Display 2 items in a row */
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .locations {
        grid-template-columns: 1fr; /* Switch to one item in a row for mobile */
    }
}

.location {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.location h2 {
    font-size: 1.8rem;
    color: #EC207A;
    margin-bottom: 0.5rem;
    padding: 5px;
}

.location p {
    color: #774A28;
    margin: 0.2rem 0;
    font-weight: bold;
}

/* Hover effect for each location */
.location:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 600px) {
    .location-info h1 {
        font-size: 2rem;
    }

    .location h2 {
        font-size: 1.5rem;
    }
}

/* Contact form styling */
#contact-form {
    width: 90%;
    max-width: 500px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 2rem auto;
    font-family: 'Fredericka the Great';
}

#contact-form h2 {
    text-align: center;
    color: #774A28;
    margin-bottom: 1.5rem;
    font-family: 'Caveat Brush', cursive;
    font-size: 2rem;
}

#contact-form form {
    display: flex;
    flex-direction: column;
}

#contact-form label {
    margin-bottom: 0.3rem;
    color: #774A28;
    padding: 0.3rem;
    font-size: 1.1rem;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    padding: 0.6rem;
    font-size: 1rem;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1rem;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: #EC207A;
    outline: none;
}

#contact-form button {
    padding: 0.8rem;
    font-size: 1rem;
    color: #fff;
    background: #EC207A;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#contact-form button:hover {
    background: #774A28;
}

/* Responsive Styling */
@media (max-width: 768px) {
    #contact-form {
        padding: 1rem;
        width: 95%;
    }
    
    #contact-form h2 {
        font-size: 1.8rem;
    }

    #contact-form label {
        font-size: 1rem;
    }

    #contact-form input[type="text"],
    #contact-form input[type="email"],
    #contact-form textarea {
        font-size: 0.9rem;
    }

    #contact-form button {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
}

