/* Stage Decor Detail Page Styles */

/* Hero Section Specifics */
.stage-hero-section {
    position: relative;
    height: 100vh;
    /* Increased height for impact */
    min-height: 600px;
    background-color: var(--charcoal);
    /* Fallback */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 0;
    overflow: hidden;
}

.stage-hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.stage-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: brightness(0.6);
    /* Slightly darker for legibility */
    border: none;
}

/* Fallback image if video fails or on load */
.stage-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Wedding%20Decor/stage%20decor%2082.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.stage-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.stage-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    padding: 0 20px;
    margin-top: 15vh;
}

.stage-hero-title {
    font-family: 'Gallient', serif;
    font-size: 5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.stage-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 30px;
    letter-spacing: 1px;
    line-height: 1.6;
    opacity: 0.9;
}

.stage-hero-desc {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: .8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
}

/* Breadcrumb */
.custom-breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.custom-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: var(--gold);
}

.custom-breadcrumb .breadcrumb-item.active {
    color: var(--gold);
}

.custom-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* Modern Intro Section */
.intro-section {
    padding: 200px 0 10px;
    overflow: hidden;
    background: var(--bg-body);
    position: relative;
}

.intro-content-wrapper {
    max-width: 900px;
    margin: 0 auto 10px;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Enhanced Typography */
.intro-super-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
    font-weight: 500;
}

.intro-super-heading::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 1px;
    background: var(--gold);
    top: 50%;
    right: -70px;
    opacity: 0.6;
}

.intro-super-heading::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 1px;
    background: var(--gold);
    top: 50%;
    left: -70px;
    opacity: 0.6;
}

.intro-main-title {
    font-family: 'Gallient', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 35px;
    color: var(--charcoal);
}

.intro-lead-text {
    font-size: 1.25rem;
    font-family: 'Gallient', serif;
    color: var(--gold);
    margin-bottom: 30px;
    line-height: 1.5;
}

.intro-desc-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
}

/* Dynamic Scrolling Images (Marquee) */
.marquee-container {
    padding-bottom: 40px;
    position: relative;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transform: rotate(-3deg) scale(1.05);
    /* Stylish Tilt */
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    gap: 25px;
    width: max-content;
}

.marquee-item {
    width: 400px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    transition: all 0.6s ease;
}

.marquee-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.marquee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Animations */
.marquee-left {
    animation: scrollLeft 60s linear infinite;
}

.marquee-right {
    animation: scrollRight 65s linear infinite;
}

/* Pause on hover for interaction */
.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Decorative Elements */
.intro-decoration-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    top: -100px;
    left: -150px;
    opacity: 0.1;
    z-index: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .intro-main-title {
        font-size: 3rem;
    }

    .marquee-wrapper {
        transform: rotate(0deg) scale(1);
    }

    .marquee-item {
        width: 300px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .intro-main-title {
        font-size: 2.5rem;
    }

    .intro-super-heading::before,
    .intro-super-heading::after {
        display: none;
    }

    .marquee-item {
        width: 260px;
        height: 180px;
    }
}

/* Compact Process Timeline */
.compact-process-section {
    padding: 100px 0;
    background-color: var(--ivory);
    position: relative;
    overflow: hidden;
}

.process-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.process-step-card {
    flex: 1;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 380px;
}

.process-step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.process-icon-box {
    width: 80px;
    height: 80px;
    background: var(--bg-body);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    position: relative;
    z-index: 2;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.process-step-card:hover .process-icon-box {
    background: var(--gold);
    color: white;
    transform: rotateY(180deg);
}

.process-icon-box i {
    transition: transform 0.4s ease;
}

.process-step-card:hover .process-icon-box i {
    transform: rotateY(-180deg);
    /* Counter for icon readability */
}

/* Number Badge */
.process-step-number {
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 3.5rem;
    font-family: 'Gallient', serif;
    color: var(--bg-body);
    text-shadow: -1px -1px 0 var(--gold), 1px -1px 0 var(--gold), -1px 1px 0 var(--gold), 1px 1px 0 var(--gold);
    line-height: 1;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.process-step-card:hover .process-step-number {
    opacity: 1;
    color: var(--gold);
    text-shadow: none;
    transform: scale(1.1);
}

.process-card-title {
    font-family: 'Gallient', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.process-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Connector Lines (Desktop) */
.process-wrapper {
    position: relative;
}

.process-wrapper::before {
    content: '';
    position: absolute;
    top: 80px;
    /* Aligns with icon center */
    left: 15%;
    right: 15%;
    height: 1px;
    border-top: 2px dashed rgba(212, 175, 55, 0.3);
    /* Gold dashed */
    z-index: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .process-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .process-wrapper::before {
        display: none;
        /* Hide connector on mobile */
    }

    .process-step-card {
        width: 100%;
        max-width: 500px;
    }
}


/* Venue Specific Section */
.venue-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.venue-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.venue-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.venue-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.venue-card:hover img {
    transform: scale(1.1);
}

.venue-card:hover .venue-overlay {
    transform: translateY(0);
}

.venue-title {
    font-family: 'Gallient', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}


/* Related Services Section (Modern Upgrade) */
.related-services-section {
    padding: 100px 0;
    background-color: var(--ivory);
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.related-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    /* Taller for elegance */
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.related-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.related-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    /* Bottom aligned */
    padding: 30px;
    transition: all 0.4s ease;
    opacity: 0.9;
}

.related-content {
    width: 100%;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.related-subtitle {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.1s;
}

.related-title {
    color: white;
    font-family: 'Gallient', serif;
    font-size: 2rem;
    margin-bottom: 0;
    line-height: 1.1;
    transition: transform 0.4s ease;
}

.related-btn {
    margin-top: 15px;
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.related-btn i {
    font-size: 0.8rem;
    color: var(--gold);
}

/* Hover Effects */
.related-card:hover img {
    transform: scale(1.1);
}

.related-card:hover .related-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.related-card:hover .related-content {
    transform: translateY(-5px);
}

.related-card:hover .related-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.related-card:hover .related-btn {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Block - Adjusted */
.booking-cta-block {
    background: var(--charcoal);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://i.pinimg.com/1200x/0f/ea/18/0fea18eeada1267c6f05c8c1e8746aca.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.booking-cta-block .section-title:after {
    border-bottom-color: rgba(255, 255, 255, 0.3);
    /* Fix separator color */
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .stage-hero-title {
        font-size: 3.5rem;
    }

    .image-grid-3,
    .process-grid,
    .venue-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .stage-hero-content {
        margin-top: 12vh;
    }
}

@media (max-width: 768px) {
    .stage-hero-title {
        font-size: 2.0rem;
    }

    .image-grid-3,
    .process-grid,
    .venue-grid,
    .related-services-grid {
        grid-template-columns: 1fr;
    }

    .process-card-detail {
        margin-bottom: 20px;
    }

    .stage-hero-content {
        margin-top: 100px;
    }
}

/* =========================================
   Dark Theme Configuration
   ========================================= */
[data-theme="dark"] {
    --bg-body: #121212;
    --bg-card: #1e1e1e;
    --text-main: #f5f5f5;
    --text-muted: #b0b0b0;
    --border-color: #333;
    --shadow-color: rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] body {
    background-color: var(--bg-body);
    color: var(--text-main);
}

/* Section Backgrounds */
[data-theme="dark"] .intro-section,
[data-theme="dark"] .compact-process-section,
[data-theme="dark"] .venue-section,
[data-theme="dark"] .related-services-section {
    background-color: var(--bg-body);
}

/* Text Colors */
[data-theme="dark"] .intro-main-title,
[data-theme="dark"] .section-title,
[data-theme="dark"] .process-card-title,
[data-theme="dark"] .venue-title,
[data-theme="dark"] .stage-hero-title,
[data-theme="dark"] .title-text {
    color: var(--text-main);
}

[data-theme="dark"] .intro-desc-text,
[data-theme="dark"] .process-card-desc,
[data-theme="dark"] .detail-text,
[data-theme="dark"] .text-muted {
    color: var(--text-muted) !important;
}

/* Process Cards */
[data-theme="dark"] .process-step-card {
    background-color: var(--bg-card);
    border-color: var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-color);
}

[data-theme="dark"] .process-step-card:hover {
    background-color: #252525;
    border-color: var(--gold);
}

[data-theme="dark"] .process-icon-box {
    background-color: #2c2c2c;
    border-color: var(--border-color);
}

[data-theme="dark"] .process-step-number {
    color: #2a2a2a;
    text-shadow: -1px -1px 0 var(--gold), 1px -1px 0 var(--gold), -1px 1px 0 var(--gold), 1px 1px 0 var(--gold);
    opacity: 0.1;
}

[data-theme="dark"] .process-step-card:hover .process-step-number {
    color: var(--gold);
    opacity: 1;
}

/* Decorative Elements */
[data-theme="dark"] .intro-decoration-circle {
    border-color: rgba(212, 175, 55, 0.15);
}

[data-theme="dark"] .process-wrapper::before {
    border-top-color: rgba(212, 175, 55, 0.2);
}

/* Marquee Images */
[data-theme="dark"] .marquee-item {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Breadcrumbs */
[data-theme="dark"] .custom-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .custom-breadcrumb .breadcrumb-item.active {
    color: var(--gold);
}

/* Venue Overlay */
[data-theme="dark"] .venue-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
}

/* Related Services Overlay */
[data-theme="dark"] .related-overlay {
    background: rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .related-card:hover .related-overlay {
    background: rgba(0, 0, 0, 0.7);
}

/* Process Section Rows */
.process-rows-wrapper {
    margin-top: 60px;
}

.process-row {
    position: relative;
}

.process-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.process-image-container:hover {
    transform: translateY(-10px);
}

.process-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.process-image-container:hover .process-img {
    transform: scale(1.05);
}

.process-number-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    color: var(--gold);
    font-family: 'Gallient', serif;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-icon-small {
    font-size: 1.8rem;
    color: var(--gold);
}

@media (max-width: 991px) {
    .process-content {
        text-align: center;
        padding: 0 !important;
    }

    .process-content .d-flex {
        justify-content: center;
    }
}

/* Process Grid Layout (3 Cols) */
.process-grid-3 {
    margin-top: 50px;
}

.process-col-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-col-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-image-top {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.process-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.process-col-card:hover .process-image-top img {
    transform: scale(1.1);
}

.process-number-float {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: white;
    font-family: 'Gallient', serif;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.process-text-body {
    padding: 40px 30px 30px;
    text-align: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    margin: -10px auto 20px;
    /* Offset to align visually */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--charcoal);
    background: var(--bg-body);
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-title-small {
    font-family: 'Gallient', serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.process-desc-small {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Dark Mode Adjustments for Grid */
[data-theme="dark"] .process-col-card {
    background-color: var(--bg-card);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .icon-circle {
    background-color: #2c2c2c;
    color: var(--gold);
    border-color: rgba(255, 255, 255, 0.1);
}