/**
 * Stone Fest 2026 - Custom Styles
 * 
 * Additional styles and overrides
 * Edit this file for quick customizations
 *
 * @package StoneFest
 */

/* ========================================
   Sponsor Placeholder Styles
   ======================================== */
.sponsor-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 80px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px dashed rgba(212, 160, 23, 0.3);
    border-radius: 8px;
    padding: 10px;
}

.sponsor-placeholder span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-primary-gold);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Active Navigation State
   ======================================== */
.nav-menu a.active {
    color: var(--color-highlight);
}

.nav-menu a.active::after {
    width: 100%;
}

/* Nav Tickets Button */
.nav-menu .nav-tickets {
    background: var(--color-highlight);
    color: var(--color-black) !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
}

.nav-menu .nav-tickets:hover {
    background: var(--color-primary-gold);
}

.nav-menu .nav-tickets::after {
    display: none;
}

/* ========================================
   Menu Toggle Animation
   ======================================== */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Body when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ========================================
   Scroll Animations
   ======================================== */
.artist-card,
.vendor-feature,
.schedule-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.artist-card.animate-in,
.vendor-feature.animate-in,
.schedule-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delay */
.artist-card:nth-child(1) { transition-delay: 0.1s; }
.artist-card:nth-child(2) { transition-delay: 0.2s; }
.artist-card:nth-child(3) { transition-delay: 0.3s; }
.artist-card:nth-child(4) { transition-delay: 0.4s; }
.artist-card:nth-child(5) { transition-delay: 0.5s; }
.artist-card:nth-child(6) { transition-delay: 0.6s; }

.vendor-feature:nth-child(1) { transition-delay: 0.1s; }
.vendor-feature:nth-child(2) { transition-delay: 0.2s; }
.vendor-feature:nth-child(3) { transition-delay: 0.3s; }
.vendor-feature:nth-child(4) { transition-delay: 0.4s; }

.schedule-item:nth-child(1) { transition-delay: 0.1s; }
.schedule-item:nth-child(2) { transition-delay: 0.15s; }
.schedule-item:nth-child(3) { transition-delay: 0.2s; }
.schedule-item:nth-child(4) { transition-delay: 0.25s; }
.schedule-item:nth-child(5) { transition-delay: 0.3s; }
.schedule-item:nth-child(6) { transition-delay: 0.35s; }

/* ========================================
   Additional Hover Effects
   ======================================== */
.btn-primary:active {
    transform: translateY(-1px);
}

/* ========================================
   Custom Additions
   Add your custom styles below
   ======================================== */
