/* SFX & Workshops Pages Specific Styles */

/* Common Page Styles */
.sfx-page,
.workshops-page {
    background-color: #81725f;
    color: white;
    min-height: 100vh;
}

/* Initial state for fade-in elements - will be animated by GSAP if available */
/* If GSAP is not available, elements remain visible (opacity: 1) */
.sfx-page .fade-in,
.workshops-page .fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Only hide elements if GSAP is available - this class is added by JavaScript */
.sfx-page .fade-in.gsap-ready,
.workshops-page .fade-in.gsap-ready {
    opacity: 0;
    transform: translateY(30px);
}

.sfx-page header,
.workshops-page header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(139, 115, 85, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
}

.sfx-page main,
.workshops-page main {
    padding-top: 0;
}

/* Service Intro Section */
.service-intro {
    padding: 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.service-intro h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.service-intro .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.service-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* SFX Services Grid */
.sfx-services {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.1);
    max-width: 100%;
    overflow: hidden;
}

.sfx-services .section-title {
    display: block;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.sfx-services .section-title::before,
.sfx-services .section-title::after {
    display: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.sfx-service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.sfx-service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.sfx-service-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.sfx-service-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.sfx-service-card ul {
    list-style: none;
    padding: 0;
}

.sfx-service-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.sfx-service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 2rem;
    background-color: #8B7355;
    max-width: 100%;
    overflow: hidden;
}

.portfolio-section .section-title {
    display: block;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.portfolio-section .section-title::before,
.portfolio-section .section-title::after {
    display: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    max-width: 100%;
    overflow: hidden;
}

.process-section .section-title {
    display: block;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.process-section .section-title::before,
.process-section .section-title::after {
    display: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    font-weight: 300;
}

.process-step h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.process-step p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #8B7355 0%, #6b5e4e 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: 2px solid;
}

.cta-button.primary {
    background: #D4AF37;
    color: white;
    border-color: #D4AF37;
}

.cta-button.primary:hover {
    background: #E5C04C;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.cta-note {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

/* Workshop Types Section */
.workshop-types {
    padding: 6rem 2rem;
    background-color: #8B7355;
}

.workshop-types .section-title {
    display: block;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.workshop-types .section-title::before,
.workshop-types .section-title::after {
    display: none;
}

.workshops-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.workshop-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.workshop-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.workshop-card:hover .workshop-image img {
    transform: scale(1.05);
}

.workshop-content {
    padding: 2rem;
}

.workshop-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.workshop-duration {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.workshop-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.workshop-includes {
    list-style: none;
    padding: 0;
}

.workshop-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.workshop-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
}

/* Group Activities Section - using existing bridal-split-layout */
.group-activities {
    background: rgba(0, 0, 0, 0.2);
    padding: 4rem 0;
}

.group-activities .bridal-content h4 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.group-activities .bridal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.group-activities .bridal-content ul li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.group-activities .bridal-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-size: 1.5rem;
}

/* Benefits Grid */
.workshop-benefits {
    padding: 6rem 2rem;
    background-color: #81725f;
}

.workshop-benefits .section-title {
    display: block;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.workshop-benefits .section-title::before,
.workshop-benefits .section-title::after {
    display: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Testimonials Section */
.workshop-testimonials {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.workshop-testimonials .section-title {
    display: block;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.workshop-testimonials .section-title::before,
.workshop-testimonials .section-title::after {
    display: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card .stars {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card .reviewer {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Logo Navigation */
.logo-nav {
    padding: 1rem 0;
}

.logo-nav a {
    display: inline-block;
}

.logo-nav img {
    height: 60px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-intro {
        padding: 4rem 2rem;
    }

    .workshops-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    .sfx-page header,
    .workshops-page header {
        padding: 0.5rem 1rem;
    }

    .service-intro h2,
    .section-title,
    .sfx-services .section-title,
    .portfolio-section .section-title,
    .process-section .section-title,
    .workshop-types .section-title,
    .workshop-benefits .section-title,
    .workshop-testimonials .section-title,
    .cta-content h2 {
        font-size: 2rem;
    }

    .service-intro .lead {
        font-size: 1.2rem;
    }

    .service-intro p,
    .cta-content p {
        font-size: 1.1rem;
    }

    .sfx-service-card,
    .workshop-card,
    .benefit-item,
    .testimonial-card {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .workshops-grid {
        grid-template-columns: 1fr;
    }

    .workshop-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .service-intro {
        padding: 3rem 1.5rem;
    }

    .section-title,
    .sfx-services .section-title,
    .portfolio-section .section-title,
    .process-section .section-title,
    .workshop-types .section-title,
    .workshop-benefits .section-title,
    .workshop-testimonials .section-title {
        font-size: 1.8rem;
    }

    .sfx-service-card h3,
    .workshop-content h3 {
        font-size: 1.5rem;
    }
}