* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Colorful Geometric Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        linear-gradient(135deg, #74ebd5 0%, #74ebd5 25%, transparent 25%),
        linear-gradient(225deg, #ACB6E5 0%, #ACB6E5 25%, transparent 25%),
        linear-gradient(45deg, #ffd89b 0%, #ffd89b 25%, transparent 25%),
        linear-gradient(315deg, #a8edea 0%, #a8edea 25%, transparent 25%);
    background-size: 400px 400px;
    background-position: 0 0, 200px 0, 200px 200px, 0 200px;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        linear-gradient(60deg, #f093fb 0%, transparent 50%),
        linear-gradient(120deg, #4facfe 0%, transparent 50%),
        linear-gradient(180deg, #43e97b 0%, transparent 50%),
        linear-gradient(240deg, #fa709a 0%, transparent 50%),
        linear-gradient(300deg, #fee140 0%, transparent 50%);
    opacity: 0.6;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1000;
    display: flex;
    gap: 20px;
}

.navbar a {
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar a:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 50px 50px;
    text-align: center;
    position: relative;
}

.hero-content {
    margin-bottom: 50px;
}

.hero-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 80px;
    color: #fff;
    text-shadow: 
        4px 4px 0 #ff6b9d,
        -2px -2px 0 #4facfe,
        2px -2px 0 #ffd93d,
        -2px 2px 0 #6bcf7f;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 28px;
    color: #2c3e50;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 40px;
    border-radius: 50px;
    display: inline-block;
}

.hero-image {
    max-width: 900px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 8px solid rgba(255, 255, 255, 0.9);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Section */
.services-section {
    padding: 100px 50px;
    position: relative;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.pricing-card h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 38px;
    color: #ff6b9d;
    margin-bottom: 35px;
    text-align: center;
    text-transform: uppercase;
}

.rate-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 25px;
    border-radius: 18px;
    margin-bottom: 18px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.rate-item:hover {
    transform: translateY(-5px);
}

.rate-item:last-of-type {
    margin-bottom: 30px;
}

.duration {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #ffd93d;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.safety-info {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #6bcf7f 0%, #4facfe 100%);
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.8;
    color: white;
    text-align: center;
    box-shadow: 0 8px 20px rgba(107, 207, 127, 0.3);
}

.safety-info p {
    margin: 8px 0;
}

.safety-info strong {
    color: white;
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

/* Photo Gallery */
.photo-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.photo-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.9);
}

/* Birthday Packages */
.party-duration {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 600;
}

.package-pricing {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.price-option {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 20px 25px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.price-option:hover {
    transform: translateY(-3px);
}

.package-info {
    background: linear-gradient(135deg, #6bcf7f 0%, #4facfe 100%);
    padding: 25px;
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.8;
    color: white;
    text-align: center;
    box-shadow: 0 8px 20px rgba(107, 207, 127, 0.3);
}

.package-info p {
    margin: 12px 0;
}

.package-info strong {
    color: white;
    font-size: 17px;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

/* Add-On Services */
.addon-services {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 50px;
    border-radius: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.addon-services h3 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 28px;
    margin-bottom: 15px;
}

.addon-services p {
    font-size: 18px;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 50px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.contact-section h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 48px;
    color: #ff6b9d;
    margin-bottom: 40px;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.address,
.phone {
    font-size: 22px;
    margin: 20px 0;
    color: #2c3e50;
    font-weight: 600;
}

.phone a {
    color: #4facfe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone a:hover {
    color: #ff6b9d;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .photo-gallery {
        flex-direction: row;
    }
    
    .photo-gallery img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 50px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .navbar {
        right: 15px;
        top: 15px;
    }
    
    .navbar a {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .services-section {
        padding: 60px 20px;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .photo-gallery {
        flex-direction: column;
    }
}