/*
Theme Name: lbspinnerz
Description: WordPress theme scaffold for the LB Spinnerz Artz static site.
Author: T
Version: 0.1.1
License: GPL-2.0-or-later
Text Domain: lbspinnerz

*/
/* Neutral outer wrapper for costumes lists (no white tube) */
.stilts-costumes-outer {
    width: 100%;
    margin: 0 auto 2rem auto;
    display: flex;
    justify-content: center;
}
/* ========================================
   LB SPINNERZ ARTZ - INDEX PAGE STYLES ONLY
   ======================================== */

/* CSS Variables (moved to top for easy access) */
/* Duplicate variables removed; variables are declared at the top of the file */
/* :root moved to top */
:root {
    --primary-font: 'Noto Sans', sans-serif;
    --title-font: 'Love Light';   
    --section2-gradient: rgba(65, 12, 54, 0.9), rgba(105, 5, 39, 0.9); 
    --section3-gradient: rgba(169, 42, 80, 0.5), rgba(105, 5, 39, 0.5); 
    --section4-gradient: rgba(65, 12, 54, 0.5), rgba(0, 0, 0, 0.5); 
    --nav-gradient: radial-gradient(circle, rgba(44, 12, 53, 0.8) 50%, rgba(0, 0, 0, 0.8) 100%);
    
    /* Service Section Color Variables */
    --fire-primary: #ff6000;
    --fire-secondary: #c40000;
    --fire-accent: #ff4500;
    
    --stilts-primary: #87CEEB;
    --stilts-secondary: #FFFFFF;
    --stilts-accent: #2B4C8C;
    
    --roller-skates-primary: #FF1493;
    --roller-skates-secondary: #8A2BE2;
    --roller-skates-accent: #FF69B4;
    
    --bubbles-primary: #00BFFF;
    --bubbles-secondary: #00CED1;
    --bubbles-accent: #1E90FF;
    
    --hula-hoops-primary: #32CD32;
    --hula-hoops-secondary: #FFD700;
    --hula-hoops-accent: #228B22;
    
    --led-primary: #1E90FF;
    --led-secondary: #8A2BE2;
    --led-accent: #4169E1;
    
    --team-empowerment-primary: #FF6347;
    --team-empowerment-secondary: #FF4500;
    --team-empowerment-accent: #FF7F50;
    
    --corporate-empowerment-primary: #1e3a8a;
    --corporate-empowerment-secondary: #3b82f6;
    --corporate-empowerment-accent: #2563eb;
    
    --parties-primary: #FF69B4;
    --parties-secondary: #FFD700;
    --parties-accent: #FF1493;
    
    --events-primary: #8A2BE2;
    --events-secondary: #20B2AA;
    --events-accent: #9932CC;
    
    --character-acting-primary: #DC143C;
    --character-acting-secondary: #FFD700;
    --character-acting-accent: #B22222;
    
    --modeling-primary: #8B008B;
    --modeling-secondary: #E6A8D2;
    --modeling-accent: #9400D3;
    
    --decorative-hoops-primary: #FF6B35;
    --decorative-hoops-secondary: #32CD32;
    --decorative-hoops-accent: #FF1493;
    
    --isis-wings-primary: #FFD700;
    --isis-wings-secondary: #191970;
    --isis-wings-accent: #4169E1;
    
    --youth-programming-primary: #FFA500;
    --youth-programming-secondary: #32CD32;
    --youth-programming-accent: #FF4500;
    
    --disco-ball-primary: #FFD700;
    --disco-ball-secondary: #FF69B4;
    --disco-ball-accent: #8A2BE2;
    
    --classes-primary: #32CD32;
    --classes-secondary: #1E90FF;
    --classes-accent: #FF6347;
    
    --super-simon-says-primary: #FF4500;
    --super-simon-says-secondary: #00CED1;
    --super-simon-says-accent: #FFD700;
    
    /* Major Section Title Variables */
    --major-title-font: 'Love Light', cursive;
    --major-title-size: 6rem;
    --major-title-color: inherit;
    --section-bg: #ffffff;
    --body-text-color: #111827;
    --section-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Fix for Font Awesome icon display */
/* Font Awesome: use correct families for solid vs brands */
.fas {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900;
}
.fab {
    font-family: 'Font Awesome 6 Brands' !important;
    font-weight: 400;
}


.fire-section-title {
    font-family: var(--title-font), cursive;
    font-size: 2.5rem;
    color: #FF4500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fire-section-description {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: var(--primary-font);
}

.fire-cta-button {
    background: linear-gradient(135deg, #FF4500 0%, #FF6347 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
    font-family: var(--primary-font);
}

.fire-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* Mobile Layout - Already shows full images */
@media (max-width: 768px) {
    .magazine-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .hero-image {
        height: 300px;
        margin-bottom: 10px;
    }

    .fire-content-area {
        padding: 20px;
        text-align: center;
    }

    .fire-section-title {
        font-size: 2rem;
        justify-content: center;
    }

    .fire-cta-button {
        align-self: center;
    }

    /* Mobile image grid */
    .mobile-image-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .magazine-image {
        height: 150px;
    }
}

/* Tablet Layout */
@media (min-width: 769px) and (max-width: 1024px) {
    .magazine-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-image {
        grid-column: 1 / 3;
        grid-row: 1 / 4;
    }

    .fire-content-area {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
    }

    .magazine-image-1 {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
    }

    .magazine-image-2 {
        grid-column: 4 / 5;
        grid-row: 2 / 3;
    }

    .magazine-image-3 {
        grid-column: 3 / 4;
        grid-row: 3 / 4;
    }

    .magazine-image-4 {
        grid-column: 4 / 5;
        grid-row: 3 / 4;
    }
}

/* (Removed unused image-loading shim; masonry-item.loading handles skeletons) */

/* ========================================
   PINTEREST-STYLE MASONRY MAGAZINE LAYOUT
   ======================================== */

/* Magazine Section Container */
.fire-section-magazine {
    max-width: 1400px;
    margin: 0 auto 60px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Hero Section with Side-by-Side Layout */
.magazine-hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    background: rgba(255, 248, 240, 0.5);
}

.hero-image-container {
    position: relative;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(255, 100, 0, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
}

.fire-section-title {
    font-family: var(--title-font), cursive;
    font-size: 3.5rem;
    color: #FF4500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.fire-section-description {
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-family: var(--primary-font);
}

.fire-cta-button {
    background: linear-gradient(135deg, #FF4500 0%, #FF6347 100%);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
    font-family: var(--primary-font);
}

.fire-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* Masonry Grid - Pinterest Style */
.masonry-grid {
    padding: 30px;
    column-count: 4;
    column-gap: 20px;
    background: #f9f9f9;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.2);
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* Overlay effect on hover */
.masonry-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(255, 69, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.masonry-item:hover::after {
    opacity: 1;
}

/* Full Screen Variant for 1600px+ */
@media (min-width: 1600px) {
    .fire-section-magazine {
        max-width: 100%;
        margin: 0 0 60px 0;
        border-radius: 0;
    }
    
    .magazine-hero-section {
        grid-template-columns: 1fr 1fr;
        min-height: 600px;
    }
    
    .hero-content {
        padding: 80px;
    }
    
    .fire-section-title {
        font-size: 4.5rem;
    }
    
    .masonry-grid {
        column-count: 5;
        padding: 40px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) and (max-width: 1599px) {
    .masonry-grid {
        column-count: 4;
    }
}

/* Desktop */
@media (min-width: 992px) and (max-width: 1199px) {
    .masonry-grid {
        column-count: 3;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .magazine-hero-section {
        grid-template-columns: 1fr;
    }
    
    .hero-image-container {
        height: 400px;
    }
    
    .hero-content {
        padding: 40px;
    }
    
    .fire-section-title {
        font-size: 3rem;
    }
    
    .masonry-grid {
        column-count: 1;
        padding: 20px;
    }

    /* Full hero images on mobile */
    .hero-image-container {
        height: auto !important;
        overflow: visible !important;
    }
    .hero-image-container img {
        height: auto !important;
        object-fit: contain !important;
    }

    /* Allow headline-title to wrap */
    .headline-title {
        font-size: 2rem;
        overflow-wrap: break-word;
        white-space: normal;
    }

    /* Keep navbar elements on one line */
    .navbar .container-fluid {
        flex-wrap: nowrap;
        align-items: center;
    }
    .navbar-brand {
        flex-shrink: 1;
    }
    .navbar-toggler {
        margin-left: auto;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .magazine-hero-section {
        grid-template-columns: 1fr;
    }
    
    .hero-image-container {
        height: 300px;
    }
    
    .hero-content {
        padding: 30px;
        text-align: center;
    }
    
    .fire-section-title {
        font-size: 2.5rem;
        justify-content: center;
    }
    
    .fire-cta-button {
        align-self: center;
    }
    
    .masonry-grid {
        column-count: 1;
        padding: 20px;
    }
}

/* Loading state for dynamic images */
.masonry-item.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    min-height: 200px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Lightbox ready */
.masonry-item {
       cursor: zoom-in;
}

:root {
    --primary-font: 'Noto Sans', sans-serif;
    --title-font: 'Love Light';   
    --section2-gradient: rgba(65, 12, 54, 0.9), rgba(105, 5, 39, 0.9); 
    --section3-gradient: rgba(169, 42, 80, 0.5), rgba(105, 5, 39, 0.5); 
    --section4-gradient: rgba(65, 12, 54, 0.5), rgba(0, 0, 0, 0.5); 
    --nav-gradient: radial-gradient(circle, rgba(44, 12, 53, 0.8) 50%, rgba(0, 0, 0, 0.8) 100%);
    
    /* Service Section Color Variables */
    --fire-primary: #ff6000;
    --fire-secondary: #c40000;
    --fire-accent: #ff4500;
    
    --stilts-primary: #87CEEB;
    --stilts-secondary: #FFFFFF;
    --stilts-accent: #2B4C8C;
    
    --roller-skates-primary: #FF1493;
    --roller-skates-secondary: #8A2BE2;
    --roller-skates-accent: #FF69B4;
    
    --bubbles-primary: #00BFFF;
    --bubbles-secondary: #00CED1;
    --bubbles-accent: #1E90FF;
    
    --hula-hoops-primary: #32CD32;
    --hula-hoops-secondary: #FFD700;
    --hula-hoops-accent: #228B22;
    
    --led-primary: #1E90FF;
    --led-secondary: #8A2BE2;
    --led-accent: #4169E1;
    
    --team-empowerment-primary: #FF6347;
    --team-empowerment-secondary: #FF4500;
    --team-empowerment-accent: #FF7F50;
    
    --corporate-empowerment-primary: #1e3a8a;
    --corporate-empowerment-secondary: #3b82f6;
    --corporate-empowerment-accent: #2563eb;
    
    --parties-primary: #FF69B4;
    --parties-secondary: #FFD700;
    --parties-accent: #FF1493;
    
    --events-primary: #8A2BE2;
    --events-secondary: #20B2AA;
    --events-accent: #9932CC;
    
    --character-acting-primary: #DC143C;
    --character-acting-secondary: #FFD700;
    --character-acting-accent: #B22222;
    
    --modeling-primary: #8B008B;
    --modeling-secondary: #E6A8D2;
    --modeling-accent: #9400D3;
    
    --decorative-hoops-primary: #FF6B35;
    --decorative-hoops-secondary: #32CD32;
    --decorative-hoops-accent: #FF1493;
    
    --isis-wings-primary: #FFD700;
    --isis-wings-secondary: #191970;
    --isis-wings-accent: #4169E1;
    
    --youth-programming-primary: #FFA500;
    --youth-programming-secondary: #32CD32;
    --youth-programming-accent: #FF4500;
    
    --disco-ball-primary: #FFD700;
    --disco-ball-secondary: #FF69B4;
    --disco-ball-accent: #8A2BE2;
    
    --classes-primary: #32CD32;
    --classes-secondary: #1E90FF;
    --classes-accent: #FF6347;
    
    --super-simon-says-primary: #FF4500;
    --super-simon-says-secondary: #00CED1;
    --super-simon-says-accent: #FFD700;
    
    /* Major Section Title Variables */
    --major-title-font: 'Love Light', cursive;
    --major-title-size: 6rem;
    --major-title-color: inherit;
    --section-bg: #ffffff;
    --section-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* BASE STYLES */
html, body {
    height: auto;
    margin: 0;
}

/* 1️⃣ Stop overriding every Bootstrap container */
/* (Removed unused .lb-flex-center and #headline .container overrides) */

body {
    font-family: var(--primary-font);        
    color: var(--body-text-color);   
    background: var(--section-bg);
    background-size: cover;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* NAVIGATION */
nav {
    background: var(--nav-gradient);
    position: relative;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding: 15px 20px;
}

/* Ensure hamburger (navbar toggler) is white on dark background */
.navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.6);
}
.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Fire-colored focus ring for accessibility */
.navbar .navbar-toggler:focus,
.navbar .navbar-toggler:focus-visible {
    outline: 0;
    border-color: var(--fire-primary);
    box-shadow: 0 0 0 .25rem rgba(255, 96, 0, 0.35);
}

.nav-link {
    color: white;
}

.navbar-title {
    color: white;
    font-size: 50px;
}

/* FLAME BACKGROUND SECTION */
.flame-bg {
    background: radial-gradient(circle at center, #ff6000 0%, #c40000 50%, #180000 100%);
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 20px;
}

/* SERVICE NAVIGATION LINKS */
.service-nav-link {
    color: #ffdd44;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding: 2px 4px;
    margin: 0 2px;
    border-radius: 3px;
}

.service-nav-link:hover {
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(255, 221, 68, 0.8);
    background-color: rgba(255, 221, 68, 0.1);
}

/* FIRE ACTS NAVIGATION LINKS */
.fire-nav-link {
    color: #DC143C;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding: 2px 4px;
    margin: 0 2px;
    border-radius: 3px;
}

.fire-nav-link:hover {
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(220, 20, 60, 0.8);
    background-color: rgba(220, 20, 60, 0.1);
}

/* PHONE LINK */
.phone-link {
    color: #ffdd44;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #ffffff;
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(255, 221, 68, 0.8);
}

.phone-link-dark {
    color: #b30000;
    text-shadow: none;
}

.phone-link-dark:hover {
    color: #7a0000;
    text-shadow: 0 0 6px rgba(179, 0, 0, 0.4);
}

/* Mobile responsive for service navigation */
@media (max-width: 768px) {
    .lead {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .service-nav-link {
        padding: 3px 5px;
        margin: 1px;
        font-size: 0.85rem;
    }
}

/* VIDEO CONTAINERS */
.video-container-portrait {
    width: 300px;
    height: 400px;
    background: #000;
    border-radius: 8px;
    margin: 0 auto 20px auto;
}

.video-container-portrait video,
.video-container-portrait iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile: responsive videos, no fixed heights */
@media (max-width: 991px) {
    .video-container-portrait {
        width: 100%;
        max-width: 320px;
        height: auto;
        min-height: 250px;
        margin: 0 auto 20px auto;
    }
    
    .video-container-portrait video,
    .video-container-portrait iframe {
        height: 250px;
    }
    
    #fire-section .col-12 {
        margin-bottom: 20px;
    }
}

/* INSTAGRAM BUTTON */
.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.instagram-btn:hover {
    transform: scale(1.05);
    color: white;
}

/* (Removed unused .instagram-section) */

/* FIRE PROPS SECTION */
#fire-props {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
}

/* SECTION BACKGROUNDS */
#section2 { 
    background: linear-gradient(var(--section2-gradient));           
    width: 100%;
    margin: 0;
    padding: 60px 20px;
}

/* (Removed unused #section3 background – section not present) */

#section4 { 
    background: linear-gradient(var(--section4-gradient)); 
}

#footer { 
    background: var(--nav-gradient);
    color: #ffffff;
}
/* Ensure footer links are readable on dark background */
#footer a {
    color: #ffffff;
}
#footer a:hover {
    color: #ffdd44;
}

/* (Removed unused #homeGallery background) */

/* TYPOGRAPHY CLASSES */
.headline-title {
    font-family: 'Love Light', cursive;
}

.fire-section-title {
    font-family: 'Love Light', cursive;
    font-size: 4rem;
    color: var(--fire-accent);
}

.fire-props-title {
    font-family: 'Love Light', cursive;
    font-size: 5rem;
    color: var(--fire-accent);
}

.fire-props-subtitle {
    font-family: 'Love Light', cursive;
}

.fire-prop-heading {
    font-family: 'Love Light', cursive;
    color: black;
    font-size: 2.5rem;
}

.fire-prop-description {
    color: black;
    font-size: 1rem;
}

.fire-prop-image {
    max-width: 300px;
}

/* (Removed unused .thumbnail styles and animations) */

/* MAJOR SECTION TITLES */
.major-section-title {
    font-family: var(--major-title-font);
    font-size: var(--major-title-size);
    color: var(--major-title-color);
}

.damnit {
    color: black;
    font-family: 'Love Light', cursive;
}

/* TESTIMONIALS SECTION */
#section4 .blockquote-footer {
    color: #ffffff !important;
    opacity: 0.9;
}

#section4 .blockquote-footer cite {
    color: #ffdd44;
    font-weight: bold;
}

/* ABOUT SECTION */
/* (Removed unused .about-title) */

.aboutImg {
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

.about-p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
}

.about-text-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

/* SERVICE SECTION BUTTONS */
.service-section-btn {
    background: linear-gradient(135deg, #ff6000 0%, #c40000 100%);
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-section-btn:hover {
    background: linear-gradient(135deg, #ff7020 0%, #d41010 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.service-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.service-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

/* ACCORDION STYLES */
.accordion-button {
    background: rgba(255, 255, 255, 0.9);
    color: black;
    font-weight: bold;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 1);
    color: black;
}

.accordion-body {
    background: rgba(255, 255, 255, 0.95);
    color: black;
}

/* (Removed unused .gallery-item styles) */

/* NEWSLETTER SIGNUP */
/* (Removed unused .newsletter-signup) */

/* SOCIAL ICONS */
/* (Removed unused .social-icons) */

/* VIDEO CONTROLS */
/* (Removed unused .vidbtn) */

/* FIRE SECTION STYLES */
.fire-section-btn {
    background: linear-gradient(135deg, #FF4500 0%, #FF6347 100%);
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.fire-section-btn:hover {
    background: linear-gradient(135deg, #FF6347 0%, #FF7F50 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.fire-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.fire-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.fire-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

/* STILTS SECTION STYLES */
.stilts-section-btn {
    background: linear-gradient(135deg, #87CEEB 0%, #FFFFFF 100%);
    border: none;
    color: #333;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.stilts-section-btn:hover {
    background: linear-gradient(135deg, #98D8F8 0%, #F0F8FF 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: #333;
}

.stilts-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.stilts-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.stilts-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
    color: #2B4C8C;
}

/* Make the 'Festival Walkabouts' title larger within the first Stilts offering */
#stilts-offering-1 .stilts-section-title {
    font-size: 5rem;
}

#stilts-offering-2 .stilts-section-title {
    font-size: 5rem;
}

/* Match Stilts Costumes hero title size to Elegant Themed Characters */
#stilts-costumes .stilts-section-title {
    font-size: 5rem;
}

.stilts-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, #2B4C8C, #87CEEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stilts-offering-heading {
    color: #8B00FF;
    font-weight: bold;
    font-size: 1.5rem;
}

.stilts-offering-description {
    color: #333;
    line-height: 1.6;
}

.stilts-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.stilts-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.stilts-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* SOCIAL MEDIA BUTTONS */
.facebook-btn {
    background: linear-gradient(135deg, #1877F2 0%, #4267B2 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.facebook-btn:hover {
    background: linear-gradient(135deg, #2E89FF 0%, #5578C4 100%);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.tiktok-btn {
    background: linear-gradient(135deg, #FF0050 0%, #000000 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tiktok-btn:hover {
    background: linear-gradient(135deg, #FF1A5C 0%, #333333 100%);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.youtube-btn {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.youtube-btn:hover {
    background: linear-gradient(135deg, #FF3333 0%, #E60000 100%);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.email-btn {
    background: linear-gradient(135deg, #34A853 0%, #137333 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.email-btn:hover {
    background: linear-gradient(135deg, #46B56A 0%, #0F5132 100%);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.phone-btn {
    background: linear-gradient(135deg, #ff6000 0%, #c40000 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #ff7020 0%, #d41010 100%);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.videos-btn {
    background: linear-gradient(135deg, #4A90E2 0%, #1E3A8A 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.videos-btn:hover {
    background: linear-gradient(135deg, #5BA0F2 0%, #2E4A9A 100%);
    color: white;
    transform: translateY(-2px);
}

/* EMAIL LINK STYLING */
.email-link {
    color: #ffdd44;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #ffffff;
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(255, 221, 68, 0.8);
}

/* ===============================
   Unified "Return to Top" buttons
   Applies across all sections/pages
   =============================== */
a.btn[href="#headline"],
a.btn[href="#top"],
.btn.return-to-top {
    background: linear-gradient(135deg, #FF4500 0%, #FF6347 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

a.btn[href="#headline"]:hover,
a.btn[href="#top"]:hover,
.btn.return-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.35);
    color: #ffffff !important;
    text-decoration: none;
}

a.btn[href="#headline"]:focus,
a.btn[href="#top"]:focus,
.btn.return-to-top:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(255, 96, 0, 0.35);
}

/* ROLLER SKATES SECTION STYLES */
.roller-skates-section-btn {
    background: linear-gradient(135deg, #FF1493 0%, #8A2BE2 100%);
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.roller-skates-section-btn:hover {
    background: linear-gradient(135deg, #FF69B4 0%, #9932CC 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.roller-skates-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.roller-skates-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.roller-skates-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.roller-skates-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, #FF1493, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roller-skates-offering-heading {
    color: #FF1493;
    font-weight: bold;
    font-size: 1.5rem;
}

.roller-skates-offering-description {
    color: #333;
    line-height: 1.6;
}

.roller-skates-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.roller-skates-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.roller-skates-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* BUBBLES SECTION STYLES */
.bubbles-section-btn {
    background: linear-gradient(135deg, #00BFFF 0%, #00CED1 100%);
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.bubbles-section-btn:hover {
    background: linear-gradient(135deg, #1E90FF 0%, #40E0D0 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.bubbles-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.bubbles-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.bubbles-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.bubbles-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, #00BFFF, #00CED1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bubbles-offering-heading {
    color: #00BFFF;
    font-weight: bold;
    font-size: 1.5rem;
}

.bubbles-offering-description {
    color: #333;
    line-height: 1.6;
}

.bubbles-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.bubbles-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.bubbles-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* HULA HOOPS SECTION STYLES */
.hula-hoops-section-btn {
    background: linear-gradient(135deg, #32CD32 0%, #FFD700 100%);
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hula-hoops-section-btn:hover {
    background: linear-gradient(135deg, #3CB371 0%, #FFA500 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.hula-hoops-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.hula-hoops-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.hula-hoops-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.hula-hoops-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, #32CD32, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hula-hoops-offering-heading {
    color: #228B22;
    font-weight: bold;
    font-size: 1.5rem;
}

.hula-hoops-offering-description {
    color: #333;
    line-height: 1.6;
}

.hula-hoops-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.hula-hoops-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.hula-hoops-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* LED SECTION STYLES */
.led-section-btn {
    background: linear-gradient(135deg, #1E90FF 0%, #8A2BE2 100%);
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.led-section-btn:hover {
    background: linear-gradient(135deg, #4169E1 0%, #9932CC 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.led-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.led-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.led-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.led-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, #1E90FF, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.led-offering-heading {
    color: #1E90FF;
    font-weight: bold;
    font-size: 1.5rem;
}

.led-offering-description {
    color: #333;
    line-height: 1.6;
}

.led-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.led-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.led-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* TEAM EMPOWERMENT SECTION STYLES */
.team-empowerment-section-btn {
    background: linear-gradient(135deg, #FF6347 0%, #FF4500 100%);
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.team-empowerment-section-btn:hover {
    background: linear-gradient(135deg, #FF7F50 0%, #FF6347 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.team-empowerment-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.team-empowerment-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.team-empowerment-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.team-empowerment-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, #FF6347, #FF4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-empowerment-offering-heading {
    color: #FF6347;
    font-weight: bold;
    font-size: 1.5rem;
}

.team-empowerment-offering-description {
    color: #333;
    line-height: 1.6;
}

.team-empowerment-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.team-empowerment-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.team-empowerment-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .navbar-title {
        font-size: 30px;
    }
    
    .fire-section-title {
        font-size: 3rem;
    }
    
    .fire-prop-heading {
        font-size: 2rem;
    }
    
    .stilts-section-title {
        font-size: 3rem;
    }
    
    .stilts-offering-heading {
        font-size: 2rem;
    }
    
    .roller-skates-section-title {
        font-size: 3rem;
    }
    
    .roller-skates-offering-heading {
        font-size: 2rem;
    }
    
    .bubbles-section-title {
        font-size: 3rem;
    }
    
    .bubbles-offering-heading {
        font-size: 2rem;
    }
    
    .hula-hoops-section-title {
        font-size: 3rem;
    }
    
    .hula-hoops-offering-heading {
        font-size: 2rem;
    }
    
    .led-section-title {
        font-size: 3rem;
    }
    
    .led-offering-heading {
        font-size: 2rem;
    }
    
    .team-empowerment-section-title {
        font-size: 3rem;
    }
    
    .team-empowerment-offering-heading {
        font-size: 2rem;
    }
    
    .aboutImg {
        max-width: 250px;
    }
    
    .corporate-empowerment-section-title {
        font-size: 3rem;
    }
    
    .corporate-empowerment-offering-heading {
        font-size: 2rem;
    }
    
    .parties-section-title {
        font-size: 3rem;
    }
    
    .parties-offering-heading {
        font-size: 2rem;
    }
    
    .events-section-title {
        font-size: 3rem;
    }
    
    .events-offering-heading {
        font-size: 2rem;
    }
    
    .character-acting-section-title {
        font-size: 3rem;
    }
    
    .character-acting-offering-heading {
        font-size: 2rem;
    }
    
    .modeling-section-title {
        font-size: 3rem;
    }
    
    .modeling-offering-heading {
        font-size: 2rem;
    }
    
    .modeling-photo-container {
        height: 300px;
    }
    
    .decorative-hoops-section-title {
        font-size: 3rem;
    }
    
    .decorative-hoops-offering-heading {
        font-size: 2rem;
    }
    
    .decorative-hoops-photo-container {
        height: 300px;
    }
    
    .isis-wings-section-title {
        font-size: 3rem;
    }
    
    .isis-wings-offering-heading {
        font-size: 2rem;
    }
}

/* CORPORATE EMPOWERMENT SECTION STYLES */
.corporate-empowerment-section-btn {
    background: linear-gradient(135deg, var(--corporate-empowerment-primary) 0%, var(--corporate-empowerment-secondary) 50%, #e5e7eb 100%);
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.corporate-empowerment-section-btn:hover {
    background: linear-gradient(135deg, var(--corporate-empowerment-accent) 0%, #60a5fa 50%, #f3f4f6 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.corporate-empowerment-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.corporate-empowerment-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.corporate-empowerment-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.corporate-empowerment-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, var(--corporate-empowerment-primary), var(--corporate-empowerment-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.corporate-empowerment-offering-heading {
    color: var(--corporate-empowerment-primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.corporate-empowerment-offering-description {
    color: #333;
    line-height: 1.6;
}

.corporate-empowerment-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.corporate-empowerment-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.corporate-empowerment-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* PARTIES SECTION STYLES */
.parties-section-btn {
    background: linear-gradient(135deg, var(--parties-primary) 0%, var(--parties-secondary) 100%);
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.parties-section-btn:hover {
    background: linear-gradient(135deg, var(--parties-accent) 0%, #FFA500 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.parties-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.parties-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.parties-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.parties-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, var(--parties-primary), var(--parties-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.parties-offering-heading {
    color: var(--parties-primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.parties-offering-description {
    color: #333;
    line-height: 1.6;
}

.parties-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.parties-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.parties-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* EVENTS SECTION STYLES */
.events-section-btn {
    background: linear-gradient(135deg, var(--events-primary) 0%, var(--events-secondary) 100%);
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.events-section-btn:hover {
    background: linear-gradient(135deg, var(--events-accent) 0%, #40E0D0 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.events-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.events-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.events-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.events-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, var(--events-primary), var(--events-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.events-offering-heading {
    color: var(--events-primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.events-offering-description {
    color: #333;
    line-height: 1.6;
}

.events-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.events-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.events-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* CHARACTER ACTING SECTION STYLES */
.character-acting-section-btn {
    background: linear-gradient(135deg, var(--character-acting-primary) 0%, var(--character-acting-secondary) 100%);
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.character-acting-section-btn:hover {
    background: linear-gradient(135deg, var(--character-acting-accent) 0%, #FFA500 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.character-acting-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.character-acting-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.character-acting-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.character-acting-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, var(--character-acting-primary), var(--character-acting-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.character-acting-offering-heading {
    color: var(--character-acting-primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.character-acting-offering-description {
    color: #333;
    line-height: 1.6;
}

.character-acting-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.character-acting-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.character-acting-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* MODELING SECTION STYLES */
.modeling-section-btn {
    background: linear-gradient(135deg, var(--modeling-primary) 0%, var(--modeling-secondary) 100%);
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.modeling-section-btn:hover {
    background: linear-gradient(135deg, var(--modeling-accent) 0%, #DDA0DD 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.modeling-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.modeling-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.modeling-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.modeling-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, var(--modeling-primary), var(--modeling-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modeling-offering-heading {
    color: var(--modeling-primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.modeling-offering-description {
    color: #333;
    line-height: 1.6;
}

.modeling-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.modeling-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.modeling-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* Modeling Photo Containers */
.modeling-photo-container {
    width: 100%;
    max-width: 300px;
    height: 400px;
    background: #000;
    border-radius: 8px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 0, 139, 0.3);
    transition: transform 0.3s ease;
}

.modeling-photo-container:hover {
    transform: scale(1.05);
}

.modeling-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* DECORATIVE HOOPS SECTION STYLES */
.decorative-hoops-section-btn {
    background: linear-gradient(135deg, var(--decorative-hoops-primary) 0%, var(--decorative-hoops-secondary) 50%, var(--decorative-hoops-accent) 100%);
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.decorative-hoops-section-btn:hover {
    background: linear-gradient(135deg, var(--decorative-hoops-accent) 0%, #FFD700 50%, #00CED1 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.decorative-hoops-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.decorative-hoops-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.decorative-hoops-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.decorative-hoops-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, var(--decorative-hoops-primary), var(--decorative-hoops-secondary), var(--decorative-hoops-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.decorative-hoops-offering-heading {
    color: var(--decorative-hoops-primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.decorative-hoops-offering-description {
    color: #333;
    line-height: 1.6;
}

.decorative-hoops-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.decorative-hoops-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.decorative-hoops-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* Decorative Hoops Photo Containers */
.decorative-hoops-photo-container {
    width: 100%;
    max-width: 300px;
    height: 400px;
    background: #000;
    border-radius: 8px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: transform 0.3s ease;
    position: relative;
}

.decorative-hoops-photo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(50, 205, 50, 0.1), rgba(255, 20, 147, 0.1));
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
}

.decorative-hoops-photo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

.decorative-hoops-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ISIS WINGS SECTION STYLES */
.isis-wings-section-btn {
    background: linear-gradient(135deg, var(--isis-wings-primary) 0%, var(--isis-wings-secondary) 100%);
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.isis-wings-section-btn:hover {
    background: linear-gradient(135deg, var(--isis-wings-accent) 0%, var(--isis-wings-primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.isis-wings-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.isis-wings-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.isis-wings-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.isis-wings-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, var(--isis-wings-primary), var(--isis-wings-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.isis-wings-offering-heading {
    color: var(--isis-wings-primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.isis-wings-offering-description {
    color: #333;
    line-height: 1.6;
}

.isis-wings-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.isis-wings-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.isis-wings-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* Youth Programming Section */


.youth-programming-section-btn {
    background: linear-gradient(135deg, var(--youth-programming-primary), var(--youth-programming-secondary));
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.youth-programming-section-btn:hover {
    background: linear-gradient(135deg, var(--youth-programming-secondary), var(--youth-programming-primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.youth-programming-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.youth-programming-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.youth-programming-section .signature-card {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(50, 205, 50, 0.1));
    border: 2px solid var(--youth-programming-primary);
}

.youth-programming-section .signature-card:hover {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.15), rgba(255, 165, 0, 0.15));
    border-color: var(--youth-programming-secondary);
}

.youth-programming-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.youth-programming-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.youth-programming-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, var(--youth-programming-primary), var(--youth-programming-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.youth-programming-offering-heading {
    color: var(--youth-programming-primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.youth-programming-offering-description {
    color: #333;
    line-height: 1.6;
}

.youth-programming-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.youth-programming-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.youth-programming-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* Disco Ball Head Dancer Section */

.disco-ball-section-btn {
    background: linear-gradient(135deg, var(--disco-ball-primary), var(--disco-ball-secondary));
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.disco-ball-section-btn:hover {
    background: linear-gradient(135deg, var(--disco-ball-secondary), var(--disco-ball-primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.disco-ball-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.disco-ball-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.disco-ball-section .signature-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 105, 180, 0.1));
    border: 2px solid var(--disco-ball-primary);
}

.disco-ball-section .signature-card:hover {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(255, 215, 0, 0.15));
    border-color: var(--disco-ball-secondary);
}

.disco-ball-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.disco-ball-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, var(--disco-ball-primary), var(--disco-ball-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disco-ball-offering-heading {
    color: var(--disco-ball-primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.disco-ball-offering-description {
    color: #333;
    line-height: 1.6;
}

.disco-ball-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.disco-ball-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.disco-ball-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* Classes Section */

.classes-section-btn {
    background: linear-gradient(135deg, var(--classes-primary), var(--classes-secondary));
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.classes-section-btn:hover {
    background: linear-gradient(135deg, var(--classes-secondary), var(--classes-primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.classes-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.classes-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.classes-section .signature-card {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.1), rgba(30, 144, 255, 0.1));
    border: 2px solid var(--classes-primary);
}

.classes-section .signature-card:hover {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15), rgba(50, 205, 50, 0.15));
    border-color: var(--classes-secondary);
}

.classes-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.classes-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, var(--classes-primary), var(--classes-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.classes-offering-heading {
    color: var(--classes-primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.classes-offering-description {
    color: #333;
    line-height: 1.6;
}

.classes-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.classes-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.classes-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* Super Simon Says Section */

.super-simon-says-section-btn {
    background: linear-gradient(135deg, var(--super-simon-says-primary), var(--super-simon-says-secondary));
    border: none;
    color: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.super-simon-says-section-btn:hover {
    background: linear-gradient(135deg, var(--super-simon-says-secondary), var(--super-simon-says-primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.super-simon-says-section-btn .fas {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.super-simon-says-section-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.super-simon-says-section .signature-card {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(0, 206, 209, 0.1));
    border: 2px solid var(--super-simon-says-primary);
}

.super-simon-says-section .signature-card:hover {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.15), rgba(255, 69, 0, 0.15));
    border-color: var(--super-simon-says-secondary);
}

.super-simon-says-section-title {
    font-family: var(--title-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.super-simon-says-offerings-title {
    font-family: var(--title-font);
    background: linear-gradient(135deg, var(--super-simon-says-primary), var(--super-simon-says-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.super-simon-says-offering-heading {
    color: var(--super-simon-says-primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.super-simon-says-offering-description {
    color: #333;
    line-height: 1.6;
}

.super-simon-says-offering-image {
    max-height: 300px;
    object-fit: contain;
}

.super-simon-says-offering-item {
    opacity: 0;
    transform: translateZ(-100px) scale(0.8);
    transition: all 0.8s ease;
}

.super-simon-says-offering-item.animate-in {
    opacity: 1;
    transform: translateZ(0) scale(1);
}

/* ========================================
   FADE-IN SCROLL ANIMATIONS (NEW SYSTEM)
   ======================================== */

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* VERY LARGE SCREEN FIXES */
@media (min-width: 1600px) {
    /* Limit maximum width for better readability */
    .container {
        max-width: 1400px;
    }
    
    /* Keep animations working on all screen sizes */
    .fire-prop-item {
        opacity: 0;
        transform: scale(0.3) translateZ(-200px);
    }
    
    .fire-prop-item.animate-in {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }
    
    /* Fix service section layouts */
    .service-section-btn {
        max-width: 1200px;
        margin: 0 auto;
    }
}

@media (min-width: 2000px) {
    /* For ultra-wide screens, further limit content width */
    .container {
        max-width: 1600px;
    }
}

/* FIX FOR CONTENT VISIBILITY ON ALL SCREENS */
@media (min-width: 1400px) {
    /* Ensure sections have proper height */
    section {
        min-height: auto;
        position: relative;
    }
    
    /* Make sure fire-prop-items are visible before animation */
    .fire-prop-item {
        will-change: transform, opacity;
    }
}

/* ========================================
   QUICK FADE-IN ANIMATIONS (REPLACING Z-AXIS)
   ======================================== */

/* Initial state for all offering items */
.fire-prop-item,
.stilts-offering-item,
.roller-skates-offering-item,
.bubbles-offering-item,
.hula-hoops-offering-item,
.led-offering-item,
.team-empowerment-offering-item,
.corporate-empowerment-offering-item,
.parties-offering-item,
.events-offering-item,
.character-acting-offering-item,
.modeling-offering-item,
.decorative-hoops-offering-item,
.isis-wings-offering-item,
.youth-programming-offering-item,
.disco-ball-offering-item,
.classes-offering-item,
.super-simon-says-offering-item {
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

/* Animated state */
.fire-prop-item.fade-in-animate,
.stilts-offering-item.fade-in-animate,
.roller-skates-offering-item.fade-in-animate,
.bubbles-offering-item.fade-in-animate,
.hula-hoops-offering-item.fade-in-animate,
.led-offering-item.fade-in-animate,
.team-empowerment-offering-item.fade-in-animate,
.corporate-empowerment-offering-item.fade-in-animate,
.parties-offering-item.fade-in-animate,
.events-offering-item.fade-in-animate,
.character-acting-offering-item.fade-in-animate,
.modeling-offering-item.fade-in-animate,
.decorative-hoops-offering-item.fade-in-animate,
.isis-wings-offering-item.fade-in-animate,
.youth-programming-offering-item.fade-in-animate,
.disco-ball-offering-item.fade-in-animate,
.classes-offering-item.fade-in-animate,
.super-simon-says-offering-item.fade-in-animate {
    opacity: 1;
}

/* Also override existing transform-based styles */
.stilts-offering-item,
.roller-skates-offering-item,
.bubbles-offering-item,
.hula-hoops-offering-item,
.led-offering-item,
.team-empowerment-offering-item,
.corporate-empowerment-offering-item,
.parties-offering-item,
.events-offering-item,
.character-acting-offering-item,
.modeling-offering-item,
.decorative-hoops-offering-item,
.isis-wings-offering-item,
.youth-programming-offering-item,
.disco-ball-offering-item,
.classes-offering-item,
.super-simon-says-offering-item {
    opacity: 0;
    /* removed transform animations */
    transition: opacity 0.4s ease-out;
}

/* Update the animate-in classes to remove transform */
.stilts-offering-item.animate-in,
.roller-skates-offering-item.animate-in,
.bubbles-offering-item.animate-in,
.hula-hoops-offering-item.animate-in,
.led-offering-item.animate-in,
.team-empowerment-offering-item.animate-in,
.corporate-empowerment-offering-item.animate-in,
.parties-offering-item.animate-in,
.events-offering-item.animate-in,
.character-acting-offering-item.animate-in,
.modeling-offering-item.animate-in,
.decorative-hoops-offering-item.animate-in,
.isis-wings-offering-item.animate-in,
.youth-programming-offering-item.animate-in,
.disco-ball-offering-item.animate-in,
.classes-offering-item.animate-in,
.super-simon-says-offering-item.animate-in {
    opacity: 1;
    /* removed transform animations */
}

/* OVERRIDE: Remove leftover transforms on offering items */
.fire-prop-item,
.stilts-offering-item,
.roller-skates-offering-item,
.bubbles-offering-item,
.hula-hoops-offering-item,
.led-offering-item,
.team-empowerment-offering-item,
.corporate-empowerment-offering-item,
.parties-offering-item,
.events-offering-item,
.character-acting-offering-item,
.modeling-offering-item,
.decorative-hoops-offering-item,
.isis-wings-offering-item,
.youth-programming-offering-item,
.disco-ball-offering-item,
.classes-offering-item,
.super-simon-says-offering-item {
    transform: none !important;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: lightboxFadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    display: none !important;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-trigger {
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.lightbox-trigger:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Component Loading Styles */
#fire-content-container {
    transition: all 0.5s ease;
}

.fire-acts-grid .fire-prop-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.fire-acts-grid .fire-prop-item:last-child {
    border-bottom: none;
}

/* Main heading for Fire Performing section */
.fire-performing-title {
    font-family: var(--title-font);
    font-size: 4rem;
    color: var(--fire-accent);
}

/* =====================================================
   Fire Section Title Color Override (single source of truth)
   ===================================================== */
.fire-section-title {
    color: var(--fire-accent) !important;
}

/* --------------------------------------------
   MAJOR SECTION BACKGROUND & SHADOW
   Applied only to first-level <section> elements so
   nested fire prop subsections remain untouched.
--------------------------------------------- */
body > section:not(#headline):not(#stickyBar) {
    background: var(--section-bg);
    box-shadow: var(--section-shadow);
    border-radius: 12px;
    margin-block: 2rem;
}

body > section:not(#headline):not(#stickyBar):not(#section2) {
    background: var(--section-bg);
    box-shadow: var(--section-shadow);
    border-radius: 12px;
    margin-block: 2rem;
}

/* Card background applied to service/gallery sections only */
body > section:not(#headline):not(#stickyBar):not(#section2):not(#section4) {
    background: var(--section-bg);
    box-shadow: var(--section-shadow);
    border-radius: 12px;
    margin-block: 2rem;
}

/* Ensure About & Testimonials keep their gradient backgrounds */
#section2 {
    background: linear-gradient(var(--section2-gradient)) !important;
    color: white;
}

#section4 {
    background: linear-gradient(var(--section4-gradient)) !important;
    color: white;
}

/* Flicz page video layout */
main.container.py-5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
main.container.py-5 > div:nth-child(n+2) {
    flex: 1 1 800px;
    max-width: 800px;
}
main.container.py-5 iframe {
    width: 100% !important;
    aspect-ratio: 16/9;
}
@media (max-width: 767px) {
    main.container.py-5 > div:nth-child(n+2) {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
/* Video lightbox wrapper */
.video-container {
    cursor: zoom-in;
}
.video-container iframe {
    pointer-events: none;
}
/* Video lightbox styles */
.lightbox-video-wrapper {
    max-width: 90%;
    max-height: 80vh;
}
.lightbox-video-wrapper iframe {
    width: 100%;
    height: auto;
}

/* Section title colors matching buttons */
.fire-section-title { color: var(--fire-primary) !important; }
.stilts-section-title { color: var(--stilts-primary) !important; }
.bubbles-section-title { color: var(--bubbles-primary) !important; }
.hula-hoops-section-title { color: var(--hula-hoops-primary) !important; }
.led-section-title { color: var(--led-primary) !important; }
.team-empowerment-section-title { color: var(--team-empowerment-primary) !important; }
.corporate-empowerment-section-title { color: var(--corporate-empowerment-primary) !important; }
.parties-section-title { color: var(--parties-primary) !important; }
.events-section-title { color: var(--events-primary) !important; }
.character-acting-section-title { color: var(--character-acting-primary) !important; }
.modeling-section-title { color: var(--modeling-primary) !important; }
.decorative-hoops-section-title { color: var(--decorative-hoops-primary) !important; }
.isis-wings-section-title { color: var(--isis-wings-primary) !important; }
.youth-programming-section-title { color: var(--youth-programming-primary) !important; }
.disco-ball-section-title { color: var(--disco-ball-primary) !important; }
.classes-section-title { color: var(--classes-primary) !important; }
.super-simon-says-section-title { color: var(--super-simon-says-primary) !important; }
.roller-skates-section-title { color: var(--roller-skates-primary) !important; }

/* Custom Mobile Fixes */
@media (max-width: 767px) {
    .hero-image-container,
    .masonry-item {
        height: auto !important;
        overflow: visible !important;
    }
    .hero-image-container img,
    .masonry-item img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    .headline-title,
    .fire-performing-title,
    .fire-section-title {
        font-size: 2rem !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
    }
    nav.navbar .container-fluid {
        flex-wrap: nowrap !important;
        align-items: center !important;
    }
    nav.navbar .navbar-brand {
        flex-shrink: 1 !important;
    }
    nav.navbar .navbar-toggler {
        margin-left: auto !important;
    }
}

/* ==============================
   Stilts Costumes Sub-section
   ============================== */
.stilts-subsection-btn {
    background: linear-gradient(135deg, var(--stilts-primary) 0%, #F0F8FF 100%);
    border: none;
    color: #1f2937;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.stilts-subsection-btn:hover {
    background: linear-gradient(135deg, #98D8F8 0%, #ffffff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: #111827;
}

.stilts-subsection-btn .fas {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.stilts-subsection-btn[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.stilts-costumes-accordion {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-inline: 20px;
    box-sizing: border-box;
}

.stilts-costumes-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

@media (max-width: 991px) {
    .stilts-costumes-list {
        grid-template-columns: 1fr;
    }
}

.stilts-costume-item {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    background: transparent;
    border-radius: 12px;
    padding: 12px 0;
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
}

.stilts-costumes-list .stilts-costume-item {
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
    padding-bottom: 24px;
}

.stilts-costumes-list .stilts-costume-item:last-child {
    border-bottom: none;
    padding-bottom: 12px;
}

@media (max-width: 991px) {
    .stilts-costume-item {
        grid-template-columns: 180px minmax(0, 1fr);
    }
}

@media (max-width: 575px) {
    .stilts-costume-item {
        grid-template-columns: 150px minmax(0, 1fr);
    }
}

.stilts-costume-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 10px;
    background: #f3f4f6;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.stilts-costume-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Prevent clipping; show full image */
    display: block;
}

.stilts-costume-info {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stilts-costume-title {
    font-family: var(--title-font);
    font-size: 3rem;
    margin: 14px 0 0 0;
    color: var(--stilts-accent);
}

@media (max-width: 767px) {
    .stilts-costume-title { font-size: 2.4rem; }
}

@media (min-width: 1200px) {
    .stilts-costume-title { font-size: 3.25rem; }
}

/* Remove leftover narrowing that caused crammed-left items */
.character-preview {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.character-preview-title {
    font-family: var(--title-font);
    color: var(--character-acting-primary);
}

.character-catalog {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.character-catalog-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.character-catalog .stilts-costume-title,
.character-preview .stilts-costume-title {
    color: var(--character-acting-accent);
}

#character-acting-section .character-gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
}

#character-acting-section .character-gallery-grid .stilts-costume-item {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    background: transparent;
    border-radius: 12px;
    padding: 12px 0;
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
    padding-bottom: 24px;
}

#character-acting-section .character-gallery-grid .stilts-costume-item:last-child {
    border-bottom: none;
    padding-bottom: 12px;
}

#character-acting-section .character-gallery-grid .stilts-costume-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 10px;
    background: #f3f4f6;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

#character-acting-section .character-gallery-grid .stilts-costume-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#character-acting-section .character-gallery-grid .stilts-costume-info {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#character-acting-section .character-gallery-grid .stilts-costume-info h3 {
    font-family: var(--title-font);
    font-size: 3rem;
    margin: 14px 0 0 0;
    color: var(--stilts-accent);
}

#character-acting-section .character-gallery-grid .stilts-mini-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

#character-acting-section .character-gallery-grid .stilts-mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.character-gallery-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.character-gallery-title {
    font-family: var(--title-font);
    color: var(--character-acting-accent);
}

.character-thumbnail-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .character-thumbnail-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .character-thumbnail-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.character-thumbnail {
    border: none;
    padding: 0;
    background: transparent;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.character-thumbnail:hover,
.character-thumbnail:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.18);
    outline: none;
}

.character-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stilts-mini-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
    grid-column: 1 / -1;
}

.stilts-mini-thumb {
    width: 200px;
    height: auto;
    border: none;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stilts-mini-thumb:hover,
.stilts-mini-thumb:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    outline: none;
}

.stilts-mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.character-gallery-wrapper {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.character-preview-empty {
    font-size: 1.1rem;
    text-align: center;
}

@media (max-width: 767px) {
    .character-preview,
    .character-catalog,
    .character-gallery-wrapper {
        padding: 20px;
    }
}


/* Navbar single-line fix on smallest screens */
@media (max-width: 480px) {
    .navbar.navbar-expand-lg > .container-fluid { flex-wrap: nowrap !important; }
    .navbar-brand { display: flex; align-items: center; gap: .5rem; min-width: 0 !important; }
    .navbar-brand.d-flex img { height: 26px !important; width: auto !important; }
    .navbar-brand.d-flex .navbar-title { font-size: 0.95rem !important; max-width: 65vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .navbar-toggler { position: static !important; margin-left: auto !important; }
}

@media (max-width: 360px) {
    .navbar-brand.d-flex img { height: 22px !important; }
    .navbar-brand.d-flex .navbar-title { font-size: 0.9rem !important; }
}

/* Fix navbar toggler visibility on mobile */
@media (max-width: 767px) {
    nav.navbar .container-fluid {
        justify-content: space-between !important;
    }
    nav.navbar .navbar-toggler {
        margin-left: 0 !important;
    }
}

/* Final mobile navbar override to force inline brand and toggler */
@media (max-width: 767px) {
  .navbar.navbar-expand-lg > .container-fluid {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .navbar.navbar-expand-lg .navbar-brand {
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }
  .navbar.navbar-expand-lg .navbar-brand .navbar-title {
    font-size: 1.5rem !important;
    margin: 0 !important;
  }
  .navbar.navbar-expand-lg .navbar-toggler {
    flex: 0 0 auto !important;
    margin-left: 0 !important;
  }
}

/* Final absolute-position override for mobile navbar */
@media (max-width: 767px) {
  nav.navbar {
    position: relative !important;
    padding: 0.5rem 1rem !important;
  }
  .navbar-brand.d-flex {
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .navbar-brand.d-flex img {
    height: 30px !important;
    width: auto !important;
    margin-right: 0.5rem !important;
  }
  .navbar-brand.d-flex .navbar-title {
    font-size: 1rem !important;
    margin: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .navbar-toggler {
    position: absolute !important;
    top: 50% !important;
    right: 1rem !important;
    transform: translateY(-50%) !important;
    z-index: 1001 !important;
    padding: 0.25rem 0.75rem !important;
  }
}

/* Tiny sliver of padding between toggler and top of viewport */
@media (max-width: 767px) {
    .navbar-toggler {
        top: 0.25rem !important;
        transform: none !important;
    }
}
#isis-wings-section .stilts-section-title,
#isis-wings-section .stilts-costume-title {
    font-size: 5rem;
    color: var(--isis-wings-primary) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    #isis-wings-section .stilts-section-title,
    #isis-wings-section .stilts-costume-title {
        font-size: 3.2rem;
        color: var(--isis-wings-primary) !important;
    }
}


@media (max-width: 767px) {
    #character-acting-section .character-gallery-grid .stilts-costume-image {
        aspect-ratio: 4 / 3;
    }
    #character-acting-section .character-gallery-grid .stilts-mini-thumb {
        flex: 1 1 120px;
    }
}
@media (max-width: 576px) {
    #character-acting-section .character-gallery-grid .stilts-costume-image {
        aspect-ratio: 1;
    }
}