/* Birthday Page Specific Styles */

/* Active Navigation Link */
.nav-menu li a.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Birthday Hero Section */
.birthday-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 12rem 2rem 8rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.birthday-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.05);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0" /></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(%23g)" /></svg>') center/300px;
    opacity: 0.3;
    pointer-events: none;
}

/* Birthday Services Section */
.birthday-services {
    padding: 8rem 0;
    background: #f8fafc;
}

.birthday-services h2 {
    text-align: center;
    font-size: 3rem;
    color: #000;
    margin-bottom: 5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.service-card p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    color: #4a5568;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card ul li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Packages Section */
.packages-section {
    padding: 8rem 0;
    background: #000;
    color: white;
}

.packages-section h2 {
    text-align: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.package-card.popular {
    transform: scale(1.05);
    border: 3px solid #ffd700;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 255, 255, 0.2);
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ffd700;
    color: #000;
    padding: 0.5rem 3rem;
    font-weight: 600;
    font-size: 0.9rem;
    transform: rotate(45deg);
    z-index: 1;
}

.package-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: #f8fafc;
    color: #000;
}

.package-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5rem;
}

.package-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.package-features {
    padding: 2rem;
    color: #000;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.package-features .fa-check {
    color: #10b981;
    font-size: 1.1rem;
}

.package-features .fa-times {
    color: #ef4444;
    font-size: 1.1rem;
}

.package-btn {
    width: 100%;
    padding: 1.2rem;
    background: #000;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.package-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.package-card.popular .package-btn {
    background: #ffd700;
    color: #000;
}

.package-card.popular .package-btn:hover {
    background: #ffed4a;
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.gallery-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #000;
    margin-bottom: 5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: #000;
    color: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 1rem;
}

/* Birthday CTA Section */
.birthday-cta {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    color: white;
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
}

.birthday-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.05);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0" /></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(%23g)" /></svg>') center/400px;
    opacity: 0.3;
}

.birthday-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.birthday-cta p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 1.5rem 4rem;
}

/* Birthday Contact Form */
.birthday-contact-form {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.birthday-contact-form input,
.birthday-contact-form select,
.birthday-contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.birthday-contact-form input:focus,
.birthday-contact-form select:focus,
.birthday-contact-form textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.birthday-contact-form input::placeholder,
.birthday-contact-form textarea::placeholder {
    color: #94a3b8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .birthday-hero {
        padding: 10rem 2rem 6rem;
        background-attachment: scroll;
    }

    .birthday-hero h1 {
        font-size: 2.5rem;
    }

    .birthday-hero p {
        font-size: 1.2rem;
    }

    .services-grid,
    .packages-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-card.popular {
        transform: none;
    }

    .package-card.popular:hover {
        transform: translateY(-10px);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .birthday-services h2,
    .packages-section h2,
    .gallery-section h2,
    .testimonials-section h2,
    .birthday-cta h2 {
        font-size: 2.5rem;
    }

    .birthday-contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .birthday-hero {
        padding: 8rem 1rem 4rem;
    }

    .birthday-hero h1 {
        font-size: 2rem;
    }

    .birthday-hero p {
        font-size: 1.1rem;
    }

    .service-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .birthday-services h2,
    .packages-section h2,
    .gallery-section h2,
    .testimonials-section h2,
    .birthday-cta h2 {
        font-size: 2rem;
    }

    .price {
        font-size: 2rem;
    }

    .cta-button.large {
        font-size: 1.1rem;
        padding: 1.2rem 2.5rem;
    }
}

/* Animation for birthday elements */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.service-icon:hover {
    animation: bounce 1s infinite;
}

/* Birthday themed colors */
.birthday-hero .cta-button.secondary {
    border-color: #ffd700;
    color: #ffd700;
}

.birthday-hero .cta-button.secondary:hover {
    background: #ffd700;
    color: #000;
}