body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #fff9e6, #fff0c2);
    overflow-x: hidden;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 5rem;
    color: #ffcc00;
    text-shadow: 3px 3px 0 #ff9900, 6px 6px 0 rgba(0,0,0,0.1);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.tagline {
    font-size: 1.5rem;
    color: #ff6600;
    margin-bottom: 30px;
}

.lemonade-glass {
    width: 200px;
    height: 300px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0 0 50px 50px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    animation: sway 5s ease-in-out infinite;
}

.liquid {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(to bottom, #fff176, #ffeb3b);
    border-radius: 0 0 50px 50px;
    animation: wave 8s linear infinite;
}

.ice-cubes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ice {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    animation: float 4s ease-in-out infinite;
}

.lemon-slice {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #ffeb3b;
    border-radius: 50%;
    border: 2px solid #fbc02d;
    animation: float 6s ease-in-out infinite;
}

.lemon-slice:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 5px;
    left: 5px;
}

.mint-leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #81c784;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: rotate 8s linear infinite;
}

.people-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 60px 0;
}

.person {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    animation: bounce 3s ease-in-out infinite;
}

.person:after {
    content: "🍋";
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.message {
    text-align: center;
    font-size: 1.8rem;
    margin: 40px 0;
    color: #ff6600;
    font-weight: bold;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.social-icon {
    font-size: 2rem;
    margin: 0 15px;
    color: #ff9900;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #ff6600;
    transform: scale(1.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes sway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

@keyframes wave {
    0% { transform: skewX(0deg); }
    50% { transform: skewX(5deg); }
    100% { transform: skewX(0deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.lemon-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.lemon-drop {
    position: absolute;
    font-size: 1.5rem;
    animation: fall linear infinite;
}

@keyframes fall {
    to { transform: translateY(100vh); }
}

@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .lemonade-glass {
        width: 150px;
        height: 225px;
    }
}