:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-color: #ffe66d;
    --dark-color: #2d3436;
    --light-color: #ffffff;
    --font-playful: 'Bubblegum Sans', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

body {
    background: linear-gradient(135deg, #fdf30a 0%, #fbf7bd 100%);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.balloon-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.balloon {
    position: absolute;
    width: 60px;
    height: 75px;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    animation: float 15s ease-in-out infinite;
    box-shadow: inset -5px -5px 15px rgba(0, 0, 0, 0.1);
    bottom: -100px;
    opacity: 0.8;
}

.balloon::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 15px;
    background: #ccc;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

header {
    text-align: center;
    padding: 1rem 0 0 0;
}

h1 {
    font-family: var(--font-playful);
    font-size: 4rem;
    color: var(--primary-color);
    text-shadow: 3px 3px 0 var(--accent-color);
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

h3 {
    font-family: var(--font-playful);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

h4 {
    font-family: var(--font-playful);
    font-size: 1.5rem;
    color: var(--primary-color);
}

section {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px dashed var(--accent-color);
}

.coming-soon {
    text-align: center;
}

.coming-soon p {
    margin-bottom: 1rem;
}

/* Event card styles removed */

.contact-us {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

input {
    padding: 1rem;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-size: 1rem;
}

button {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-playful);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.5);
    margin-top: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icon {
    font-size: 1.5rem;
    text-decoration: none;
}

/* Animations */
.bounce {
    animation: bounce 2s ease infinite;
}

.wiggle {
    animation: wiggle 3s ease-in-out infinite;
}

.pop-in {
    animation: popIn 1s ease-out;
}

.bounce-button:hover {
    animation: bounce 0.5s ease infinite;
}

#confirmation {
    animation: popIn 1s ease-out;
    display: none;
    margin-top: 1rem;
    text-align: center;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-300px) rotate(10deg);
    }
    100% {
        transform: translateY(-600px) rotate(0deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .event-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .event-card {
        width: 100%;
        max-width: 300px;
    }
}
