body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 1.6;
}

:root {
    --primary-color: #4A90E2;
    --secondary-color: #F5A623;
    --text-color: #333333;
    --background-color: #F9F9F9;
    --header-height: 4rem;
    --menu-width: 15rem;
    --transition-speed: 0.3s;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo {
    max-height: 2.5rem;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

.hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: all var(--transition-speed) ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: var(--menu-width);
    height: 100vh;
    background-color: white;
    box-shadow: 2px 0 4px rgba(0,0,0,0.1);
    transition: left var(--transition-speed) ease;
    z-index: 999;
}

.menu.active {
    left: 0;
}

.menu ul {
    list-style-type: none;
    padding: calc(var(--header-height) + 1rem) 0 0 0;
    margin: 0;
}

.menu li {
    padding: 0.75rem 1.5rem;
}

.menu a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: color var(--transition-speed) ease;
}

.menu a:hover {
    color: var(--primary-color);
}

main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: calc(var(--header-height) + 1rem) 1rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Home page styles */
.home-page main {
    height: calc(100vh - var(--header-height));
    align-items: center;
}

.home-logo {
    max-width: 80%;
    max-height: 60vh;
    width: auto;
    height: auto;
}

/* Lemonade page styles */
.lemonade-page {
    background-color: #FFFACD;
}

.lemonade-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lemonade-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.lemon-decoration {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.lemonade-slogan {
    font-family: 'Indie Flower', cursive;
    font-size: 1.5rem;
    color: #32CD32;
    margin-bottom: 2rem;
    text-align: center;
}

.call-to-action {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: #FF4500;
    margin: 1rem 0;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 80%;
}

.lemonade-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    width: 100%;
}

.feature {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 1.5rem;
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 250px;
    max-width: 350px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature h2 {
    font-family: 'Fredoka One', cursive;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature p {
    font-family: 'Indie Flower', cursive;
    color: var(--text-color);
}

.map-container {
    width: 100%;
    height: 450px;
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .lemonade-title {
        font-size: 2rem;
    }

    .lemonade-slogan {
        font-size: 1.2rem;
    }

    .call-to-action {
        font-size: 1.1rem;
        max-width: 90%;
    }

    .feature {
        flex: 1 1 100%;
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .lemonade-title {
        font-size: 1.8rem;
    }

    .lemonade-slogan {
        font-size: 1rem;
    }

    .call-to-action {
        font-size: 1rem;
        max-width: 100%;
    }

    .feature h2 {
        font-size: 1.2rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    .map-container {
        height: 300px;
    }
}