/* ===================================
   Victorian Gothic Decorative Elements - Enhanced Stars & Sparkles
   =================================== */

/* ===================================
   STAR VARIATIONS
   =================================== */

/* Four-pointed star sparkle */
.star-four {
    content: '✦';
    position: absolute;
    color: var(--color-gold-pale);
    text-shadow: 0 0 10px rgba(245, 230, 200, 0.6);
}

/* Eight-pointed star */
.star-eight {
    content: '✨';
    position: absolute;
    color: var(--color-gold-light);
    text-shadow: 0 0 8px rgba(232, 201, 138, 0.5);
}

/* Small sparkle */
.star-small {
    content: '·';
    position: absolute;
    color: var(--color-gold-bright);
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.7);
}

/* Asterisk star */
.star-asterisk {
    content: '✱';
    position: absolute;
    color: var(--color-gold-pale);
    text-shadow: 0 0 12px rgba(245, 230, 200, 0.5);
}

/* Diamond sparkle */
.star-diamond {
    content: '◆';
    position: absolute;
    color: var(--color-gold-light);
    text-shadow: 0 0 8px rgba(232, 201, 138, 0.4);
}

/* ===================================
   HERO SECTION STARS
   =================================== */

/* Main logo sparkles (flanking the logo image) */
.hero-logo::before,
.hero-logo::after {
    content: '✦';
    position: absolute;
    color: var(--color-gold-pale);
    font-size: 2rem;
    opacity: 0.8;
    animation: sparkle 3s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(245, 230, 200, 0.6);
    top: 50%;
    transform: translateY(-50%);
}

.hero-logo::before {
    left: -50px;
}

.hero-logo::after {
    right: -50px;
    animation-delay: 1.5s;
}

/* Additional hero corner stars */
.hero::before {
    content: '✨';
    position: absolute;
    top: 15%;
    left: 8%;
    font-size: 1.5rem;
    color: var(--color-gold-pale);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(245, 230, 200, 0.5);
    z-index: 1;
}

.hero::after {
    content: '✦';
    position: absolute;
    top: 25%;
    right: 10%;
    font-size: 1.2rem;
    color: var(--color-gold-light);
    opacity: 0.35;
    animation: float 10s ease-in-out infinite reverse;
    text-shadow: 0 0 12px rgba(232, 201, 138, 0.4);
    z-index: 1;
}

/* ===================================
   SECTION TITLE DECORATIONS
   =================================== */

/* Section title stars (general) */
.section-title::before {
    content: '✱';
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: var(--color-gold-light);
    opacity: 0.6;
    text-shadow: 0 0 10px rgba(232, 201, 138, 0.5);
}

/* Highlighted section title ornaments (existing, modified) */
.section-title-highlight::before {
    content: '◆';
    color: var(--color-gold-light);
    font-size: 0.5em;
    margin-right: 0.5rem;
    opacity: 0.9;
}

.section-title-highlight::after {
    content: '◆';
    color: var(--color-gold-light);
    font-size: 0.5em;
    margin-left: 0.5rem;
    opacity: 0.9;
}

/* ===================================
   SECTION CORNER STARS
   =================================== */

/* Light sections - top corners */
.section-light::before {
    content: '✦';
    position: absolute;
    top: 20px;
    left: 5%;
    font-size: 1rem;
    color: var(--color-gold-antique);
    opacity: 0.25;
    animation: twinkle 4s ease-in-out infinite;
}

.section-light::after {
    content: '·';
    position: absolute;
    top: 40px;
    right: 8%;
    font-size: 2rem;
    color: var(--color-gold-bright);
    opacity: 0.2;
    animation: twinkle 5s ease-in-out infinite 1s;
}

/* Dark sections - corner stars */
.section-dark::before {
    content: '✨';
    position: absolute;
    top: 30px;
    left: 6%;
    font-size: 1.3rem;
    color: var(--color-gold-pale);
    opacity: 0.3;
    animation: float 7s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(245, 230, 200, 0.4);
    z-index: 1;
}

.section-dark::after {
    content: '✦';
    position: absolute;
    top: 50px;
    right: 7%;
    font-size: 1.1rem;
    color: var(--color-gold-light);
    opacity: 0.25;
    animation: float 9s ease-in-out infinite reverse;
    text-shadow: 0 0 12px rgba(232, 201, 138, 0.3);
    z-index: 1;
}

/* ===================================
   TICKET SECTION SPECIAL STARS
   =================================== */

.section-tickets::before {
    content: '✱';
    position: absolute;
    top: 25px;
    left: 4%;
    font-size: 1.4rem;
    color: var(--color-gold-pale);
    opacity: 0.35;
    animation: pulse 3s ease-in-out infinite;
    text-shadow: 0 0 18px rgba(245, 230, 200, 0.5);
}

.section-tickets::after {
    content: '✨';
    position: absolute;
    top: 35px;
    right: 5%;
    font-size: 1.2rem;
    color: var(--color-gold-light);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite 1.5s;
    text-shadow: 0 0 15px rgba(232, 201, 138, 0.4);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.5;
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.15;
        transform: scale(1);
    }

    50% {
        opacity: 0.35;
        transform: scale(1.1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.25;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(1.15);
    }
}

/* ===================================
   ADDITIONAL DECORATIVE ACCENTS
   =================================== */

/* Subtle glow effect on hover for interactive elements */
.btn:hover,
.custom-select-trigger:hover {
    filter: drop-shadow(0 0 8px rgba(201, 169, 97, 0.4));
}

/* Decorative divider */
.decorative-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--color-gold-antique) 20%,
            var(--color-gold-antique) 80%,
            transparent);
    margin: var(--spacing-lg) 0;
    position: relative;
}

.decorative-divider::before {
    content: '❖';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-parchment);
    padding: 0 1rem;
    color: var(--color-gold-antique);
    font-size: 0.8rem;
}

/* Section dark decorative divider */
.section-dark .decorative-divider::before {
    background: var(--color-midnight);
}

/* Ornamental text decoration for special paragraphs */
.ornamental-text {
    font-family: var(--font-decorative);
    font-size: 1.1em;
    color: var(--color-gold-antique);
    text-align: center;
    margin: var(--spacing-md) 0;
    letter-spacing: 1px;
}

/* Victorian corner ornaments for cards */
.info-card::before {
    content: '✦';
    position: absolute;
    top: 12px;
    left: 12px;
    color: var(--color-gold-antique);
    opacity: 0.25;
    font-size: 0.9rem;
    animation: twinkle 5s ease-in-out infinite;
}

.info-card::after {
    content: '·';
    position: absolute;
    top: 12px;
    right: 12px;
    color: var(--color-gold-light);
    opacity: 0.2;
    font-size: 1.2rem;
    animation: twinkle 6s ease-in-out infinite 2s;
}

/* Team item decorations */
.team-item::before {
    content: '◆';
    position: absolute;
    top: 10px;
    left: 10px;
    color: var(--color-gold-antique);
    opacity: 0.3;
    font-size: 0.8rem;
}

/* Gold accent line for emphasis */
.gold-accent {
    border-left: 3px solid var(--color-gold-antique);
    padding-left: var(--spacing-md);
    box-shadow: -2px 0 8px rgba(201, 169, 97, 0.2);
}

/* ===================================
   RESPONSIVE BEHAVIOR
   =================================== */

@media (max-width: 768px) {

    /* Hide or reduce hero logo sparkles on mobile */
    .hero-logo::before,
    .hero-logo::after {
        font-size: 1.2rem;
        opacity: 0.5;
        left: -30px;
        right: -30px;
    }

    .hero-logo {
        width: clamp(150px, 30vw, 350px);
    }

    /* Hide hero corner stars on mobile */
    /* .hero::before,
    .hero::after {
        display: none;
    } */

    /* Reduce section corner stars on mobile */
    .section-light::before,
    .section-light::after,
    .section-dark::before,
    .section-dark::after,
    .section-tickets::before,
    .section-tickets::after {
        font-size: 0.8rem;
        opacity: 0.15;
    }

    /* Hide section title top stars on mobile */
    .section-title::before {
        display: none;
    }

    /* Reduce card corner stars */
    .info-card::before,
    .info-card::after {
        opacity: 0.15;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {

    /* Further reduce on very small screens */
    /* .section-light::before,
    .section-light::after,
    .section-dark::before,
    .section-dark::after,
    .section-tickets::before,
    .section-tickets::after {
        display: none;
    } */
}