/* Baby Shower Page Specific CSS */

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
    background: var(--background-gray);
}

.packages-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.package-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--accent-color);
    position: relative;
}

.package-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Coverage Section */
.coverage-section {
    padding: 80px 0;
    background: white;
}

.coverage-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.coverage-card {
    text-align: center;
    padding: 30px 25px;
    background: var(--background-light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.coverage-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.coverage-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.coverage-card:hover .coverage-icon {
    background: var(--primary-color);
}

.coverage-icon i {
    font-size: 1.8rem;
    color: white;
}

.coverage-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.coverage-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Planning Section */
.planning-section {
    padding: 80px 0;
    background: var(--background-gray);
}

.planning-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tip-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tip-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
    font-size: 18px;
    padding: 18px 45px;
}

.cta .btn-primary:hover {
    background-color: var(--background-light-gray);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .package-card.featured {
        transform: none;
    }

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image img {
        height: 350px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .coverage-card {
        padding: 25px 20px;
    }
}