/* Bridal Shower Decor Services - Ultra Modern Premium Design */

/* Theme Utilities */
.bs-text-muted {
    color: var(--text-muted) !important;
}

/* Hero Section - Ultra Premium */
.bs-hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: white;
}

.bs-hero-img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
    animation: cinematic-zoom 30s ease-in-out infinite alternate;
    filter: brightness(0.92) saturate(1.1);
}

@keyframes cinematic-zoom {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.bs-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top, rgba(212, 165, 116, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.8) 0%, transparent 60%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.bs-hero-content {
    z-index: 1;
    max-width: 1000px;
    padding: 40px;
    animation: elegant-fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes elegant-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bs-hero-title {
    font-family: 'Gallient', 'Playfair Display', serif;
    font-size: 5rem;
    margin-bottom: 2.5rem;
    color: white;
    line-height: 1.05;
    text-shadow:
        0 8px 40px rgba(0, 0, 0, 0.7),
        0 2px 10px rgba(212, 165, 116, 0.3);
    letter-spacing: -1px;
    font-weight: 400;
}

/* Intro Section - Elegant */
.bs-intro-section {
    padding: 140px 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-body) 0%, var(--bg-surface-alt) 100%);
    position: relative;
}

.bs-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color, #d4a574) 50%, transparent 100%);
    border-radius: 3px;
    box-shadow: 0 2px 20px rgba(212, 165, 116, 0.4);
}

.bs-intro-content {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.bs-intro-text {
    font-size: 1.25rem;
    line-height: 2.1;
    color: var(--text-main);
    margin-bottom: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.4px;
    opacity: 0.95;
}

.bs-intro-text:last-child {
    margin-bottom: 0;
}

/* Services Section - List Style */
.bs-services-section {
    padding: 100px 0;
    background-color: var(--bg-surface-alt);
}

.bs-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.bs-service-item {
    position: relative;
    height: 320px;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bs-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.bs-service-item:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.bs-service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.bs-service-item h3 {
    font-family: 'Gallient', serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: white;
    position: relative;
    z-index: 2;
}

.bs-service-item .bs-service-desc {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

/* Service Areas - Beautiful Location Grid */
.bs-areas-section {
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(212, 165, 116, 0.06) 0%, transparent 70%),
        linear-gradient(135deg, var(--bg-body) 0%, var(--bg-surface-alt) 100%);
    position: relative;
}

.bs-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.bs-location-card {
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: relative;
    overflow: hidden;
}

.bs-location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bs-location-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(212, 165, 116, 0.1);
    border-color: rgba(212, 165, 116, 0.3);
}

.bs-location-card:hover::before {
    opacity: 1;
}

.bs-location-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-radius: 12px;
    color: var(--primary-color, #d4a574);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.bs-location-card:hover .bs-location-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.25) 0%, rgba(212, 165, 116, 0.15) 100%);
}

.bs-location-name {
    font-family: 'Gallient', serif;
    font-size: 1.1rem;
    color: var(--text-main);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.bs-location-card:hover .bs-location-name {
    color: var(--primary-color, #d4a574);
}

/* Gallery - Premium Showcase */
.bs-gallery-section {
    padding: 140px 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.04) 0%, transparent 50%),
        var(--bg-body);
    position: relative;
}

.bs-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.bs-gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.bs-gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 165, 116, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.bs-gallery-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.18),
        0 15px 40px rgba(212, 165, 116, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
}

.bs-gallery-item:hover::before {
    opacity: 1;
}

.bs-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.95) saturate(1.05);
}

.bs-gallery-item:hover .bs-gallery-img {
    transform: scale(1.2) rotate(-2deg);
    filter: brightness(1) saturate(1.1);
}

.bs-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    transform: translateY(0);
    transition: all 0.6s ease;
    z-index: 3;
}

.bs-gallery-item:hover .bs-gallery-overlay {
    padding: 45px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.7) 80%, transparent 100%);
}

.bs-gallery-caption {
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.8px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
    transform: translateY(0);
    transition: transform 0.6s ease;
}

.bs-gallery-item:hover .bs-gallery-caption {
    transform: translateY(-5px);
}

/* Enhanced Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
    font-size: 2.8rem;
    letter-spacing: -0.8px;
    font-weight: 400;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color, #d4a574) 50%, transparent 100%);
    border-radius: 3px;
    box-shadow: 0 2px 15px rgba(212, 165, 116, 0.4);
}

.text-start .section-title::after {
    left: 0;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
    .bs-hero-title {
        font-size: 3rem;
    }

    .bs-hero-section {
        height: 80vh;
    }

    .bs-services-list {
        grid-template-columns: 1fr;
    }

    .bs-gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bs-intro-text {
        font-size: 1.1rem;
    }

    .bs-intro-section,
    .bs-services-section,
    .bs-areas-section,
    .bs-gallery-section {
        padding: 90px 0;
    }

    .bs-service-item {
        height: 280px;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .bs-hero-title {
        font-size: 2.4rem;
    }

    .bs-hero-section {
        height: 75vh;
    }

    .section-title {
        font-size: 1.9rem;
    }
}