/* ============================================
   COUCHES RECORDS - INDEX PAGE STYLES
   ============================================ */

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: var(--crimson);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-logo {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-logo .records {
    color: var(--yellow);
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* Event Card - styles moved to video section */

.event-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 0.75rem;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.event-details {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow);
}

.countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2.25rem;
    background: var(--crimson);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.cta-btn.secondary:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.cta-btn.yellow {
    background: var(--yellow);
    color: #0A0A0A;
}

.cta-btn.yellow:hover {
    background: #E6C200;
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   EVENT HERO CARD (matches events.html)
   ============================================ */
.event-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.event-hero:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.event-image {
    overflow: hidden;
    background: var(--bg-tertiary);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-image .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 0.3;
}

.event-info {
    padding: 3rem 3rem 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.event-date-display {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.event-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.event-venue {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.event-hero .countdown {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.event-hero .countdown-item {
    text-align: center;
}

.event-hero .countdown-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
}

.event-hero .countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.event-hero .hero-tickets-btn {
    background: var(--crimson);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: center;
}

.event-hero .hero-tickets-btn:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .event-hero {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .event-info {
        padding: 2rem;
    }
    #heroEventsContainer {
        min-height: 420px; /* Taller on mobile due to stacked layout */
    }
}

/* Sections */
section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-title .highlight {
    color: var(--yellow);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* Pillars */
.pillars-section {
    border-top: 1px solid var(--border-color);
    margin: 0;
    max-width: 100%;
    padding: 6rem 2rem 3rem;
}

.pillars-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.pillars-section .section-label,
.pillars-section .section-title,
.pillars-section .section-intro {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-card {
    background: var(--card-bg);
    position: relative;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.pillar-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

/* Active pillar card - yellow border, connected to panel below */
.pillar-card.active {
    border-color: var(--yellow);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: var(--card-bg);
    z-index: 2;
    transform: none;
}

/* Connector line for Store (middle card) - extends left under Events */
.pillar-card[data-pillar="store"].active::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: calc(-100% - 1.5rem - 2px);
    width: calc(100% + 1.5rem + 4px);
    height: 2px;
    background: var(--yellow);
    z-index: 3;
}

/* Connector line for Store (middle card) - extends right under Label */
.pillar-card[data-pillar="store"].active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: calc(-100% - 1.5rem - 2px);
    width: calc(100% + 1.5rem + 4px);
    height: 2px;
    background: var(--yellow);
    z-index: 3;
}

/* Connector line for Label (right card) - extends left under Store and Events */
.pillar-card[data-pillar="label"].active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: calc(-200% - 3rem - 6px);
    width: calc(200% + 3rem + 8px);
    height: 2px;
    background: var(--yellow);
    z-index: 3;
}

/* Dim inactive cards when a panel is open */
.pillars-grid.has-active-panel .pillar-card:not(.active) {
    opacity: 0.4;
}

.pillars-grid.has-active-panel .pillar-card:not(.active):hover {
    opacity: 0.7;
}

.pillar-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.pillar-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pillar Panel - content area below cards */
.pillar-panel {
    display: none;
    background: var(--card-bg);
    border: 2px solid var(--yellow);
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin-top: -2px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pillar-panel.active {
    display: block;
}

.pillar-panel-content {
    display: none;
}

.pillar-panel-content.active {
    display: block;
}

/* Store panel layout - centered yellow card */
.panel-store-layout {
    display: flex;
    justify-content: center;
    padding: 2.5rem;
}

.panel-store-layout .store-info {
    display: flex;
    gap: 1.5rem;
    background: var(--yellow);
    color: #0A0A0A;
    border-radius: 12px;
    padding: 2rem;
}

.panel-store-layout .store-info-main h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.panel-store-layout .store-info-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    min-width: 140px;
}

.panel-store-layout .store-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.panel-store-layout .store-detail:last-child {
    margin-bottom: 0;
}

.panel-store-layout .store-detail .icon {
    font-size: 0.9rem;
}

.panel-store-layout .store-detail .text {
    font-weight: 600;
    font-size: 0.85rem;
}

.panel-store-layout .store-detail .sub {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Store opening badge and tagline */
.store-opening-badge {
    display: inline-block;
    background: var(--crimson);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.store-opening-tagline {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    opacity: 0.7;
    line-height: 1.4;
}

/* Notify button for panels */
.panel-notify-btn {
    display: inline-block;
    background: var(--crimson);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.panel-notify-btn:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
}

/* Label panel layout - full bleed image + info */
.panel-label-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 350px;
}

.panel-label-image {
    position: relative;
    overflow: hidden;
}

.panel-label-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.panel-label-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.panel-label-info .release-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 0.75rem;
}

.panel-label-info .release-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.panel-label-info .release-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.panel-label-info .release-date {
    font-weight: 700;
    color: var(--crimson);
}

.panel-label-info .panel-notify-btn {
    align-self: center;
    margin-top: 2rem;
}

/* Bottom padding for pillars section when panel is open */
.pillars-section:has(.pillar-panel.active) {
    padding-bottom: 3rem;
}

.pillar-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* What to Expect */
.expect-section {
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    margin: 0;
    max-width: 100%;
    padding: 6rem 2rem;
}

.expect-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.expect-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.expect-card:hover {
    border-color: var(--yellow);
}

.expect-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.expect-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Store Section */
.store-section {
    border-top: 1px solid var(--border-color);
}

.store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Single column variant when categories are hidden */
.store-grid.store-grid-single {
    grid-template-columns: 1fr;
    max-width: 400px;
}

.store-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.store-category {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.store-category:hover {
    border-color: var(--yellow);
}

.store-category h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--yellow);
    text-transform: uppercase;
}

.store-category p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.store-info {
    background: var(--yellow);
    color: #0A0A0A;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.store-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.store-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.store-detail:last-child {
    margin-bottom: 0;
}

.store-detail .icon {
    font-size: 1rem;
}

.store-detail .text {
    font-weight: 600;
    font-size: 0.9rem;
}

.store-detail .sub {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Label Section */
.label-section {
    border-top: 1px solid var(--border-color);
}

.release-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.release-image {
    background: var(--bg-tertiary);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
}

.release-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.release-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.release-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 0.75rem;
}

.release-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.release-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.release-date {
    font-weight: 700;
    color: var(--crimson);
}

/* Photo Gallery Carousel */
/* What is Couches - Hero with Cards */
.what-hero-container {
    position: relative;
    margin-bottom: 3rem;
}

.what-hero-photo {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.what-hero-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.what-hero-photo.auto-fade img {
    animation: heroFade 16s infinite;
}

.what-hero-photo.auto-fade img:nth-child(1) { animation-delay: 0s; }
.what-hero-photo.auto-fade img:nth-child(2) { animation-delay: 4s; }
.what-hero-photo.auto-fade img:nth-child(3) { animation-delay: 8s; }
.what-hero-photo.auto-fade img:nth-child(4) { animation-delay: 12s; }

@keyframes heroFade {
    0% { opacity: 0; }
    5% { opacity: 1; }
    25% { opacity: 1; }
    30% { opacity: 0; }
    100% { opacity: 0; }
}

.what-hero-photo:not(.auto-fade) img.active {
    opacity: 1;
}

.what-hero-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, transparent 100%);
    pointer-events: none;
}

.what-cards-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    z-index: 10;
}

.what-card {
    background: rgba(10, 10, 10, 0.25);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="light"] .what-card {
    background: rgba(255, 255, 255, 0.25);
}

.what-card:hover {
    transform: translateY(-2px);
    background: rgba(10, 10, 10, 0.6);
}

[data-theme="light"] .what-card:hover {
    background: rgba(255, 255, 255, 0.7);
}

.what-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    position: absolute;
    opacity: 1;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

[data-theme="light"] .what-card h3 {
    color: #0A0A0A;
}

.what-card p {
    font-size: 0.8rem;
    color: #EEEEEE;
    line-height: 1.5;
    margin: 0;
    padding: 0 0.25rem;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

[data-theme="light"] .what-card p {
    color: #222222;
}

.what-card:hover h3 {
    opacity: 0;
}

.what-card:hover p {
    opacity: 1;
}

.what-cards-overlay.auto-fade .what-card:nth-child(1) { animation: whatCardHighlight 16s infinite 0s; }
.what-cards-overlay.auto-fade .what-card:nth-child(2) { animation: whatCardHighlight 16s infinite 4s; }
.what-cards-overlay.auto-fade .what-card:nth-child(3) { animation: whatCardHighlight 16s infinite 8s; }
.what-cards-overlay.auto-fade .what-card:nth-child(4) { animation: whatCardHighlight 16s infinite 12s; }

@keyframes whatCardHighlight {
    0% { border-color: var(--border-color); }
    5% { border-color: var(--yellow); }
    25% { border-color: var(--yellow); }
    30% { border-color: var(--border-color); }
    100% { border-color: var(--border-color); }
}

.what-cards-overlay:not(.auto-fade) .what-card {
    animation: none;
    border-color: var(--border-color);
}

.what-cards-overlay:not(.auto-fade) .what-card.active {
    border-color: var(--yellow);
}

/* Floating Gallery */
.floating-gallery {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-btn-center {
    position: relative;
    z-index: 100;
    padding: 1rem 2.5rem;
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid var(--yellow);
    color: var(--yellow);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.gallery-btn-center:hover {
    background: var(--yellow);
    color: #0A0A0A;
}

.floating-photo {
    position: absolute;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, z-index 0s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.floating-photo:hover {
    transform: scale(1.06) rotate(0deg) !important;
    box-shadow: 0 10px 35px rgba(0,0,0,0.6);
    z-index: 50 !important;
}

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

/* Floating animations - 14-18s cycles, 6-12px movement, 1-35 degree rotation */
@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(-8deg); }
    33% { transform: translate(8px, -10px) rotate(-5deg); }
    66% { transform: translate(-6px, 7px) rotate(-12deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(25deg); }
    33% { transform: translate(-10px, 8px) rotate(22deg); }
    66% { transform: translate(7px, -6px) rotate(28deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(-3deg); }
    33% { transform: translate(7px, 9px) rotate(-1deg); }
    66% { transform: translate(-9px, -7px) rotate(-6deg); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(35deg); }
    33% { transform: translate(-8px, -9px) rotate(32deg); }
    66% { transform: translate(10px, 6px) rotate(35deg); }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) rotate(-20deg); }
    33% { transform: translate(9px, 7px) rotate(-17deg); }
    66% { transform: translate(-7px, -10px) rotate(-23deg); }
}

@keyframes float6 {
    0%, 100% { transform: translate(0, 0) rotate(5deg); }
    33% { transform: translate(-7px, 10px) rotate(2deg); }
    66% { transform: translate(8px, -8px) rotate(8deg); }
}

@keyframes float7 {
    0%, 100% { transform: translate(0, 0) rotate(-30deg); }
    33% { transform: translate(10px, -7px) rotate(-27deg); }
    66% { transform: translate(-8px, 9px) rotate(-33deg); }
}

@keyframes float8 {
    0%, 100% { transform: translate(0, 0) rotate(15deg); }
    33% { transform: translate(-9px, -8px) rotate(12deg); }
    66% { transform: translate(6px, 10px) rotate(18deg); }
}

@keyframes float9 {
    0%, 100% { transform: translate(0, 0) rotate(-12deg); }
    33% { transform: translate(6px, 10px) rotate(-9deg); }
    66% { transform: translate(-10px, -6px) rotate(-15deg); }
}

@keyframes float10 {
    0%, 100% { transform: translate(0, 0) rotate(8deg); }
    33% { transform: translate(-6px, -10px) rotate(5deg); }
    66% { transform: translate(9px, 7px) rotate(11deg); }
}

@keyframes float11 {
    0%, 100% { transform: translate(0, 0) rotate(-35deg); }
    33% { transform: translate(8px, 6px) rotate(-32deg); }
    66% { transform: translate(-7px, -9px) rotate(-35deg); }
}

/* Asymmetric floating photo positions */
.floating-photo:nth-child(1) {
    width: 480px; height: 335px;
    top: -20px; left: 3%;
    z-index: 1;
    animation: float1 16s linear infinite;
}
.floating-photo:nth-child(2) {
    width: 380px; height: 265px;
    top: 160px; left: 12%;
    z-index: 4;
    animation: float2 18s linear infinite;
}
.floating-photo:nth-child(3) {
    width: 340px; height: 240px;
    bottom: 20px; left: 5%;
    z-index: 7;
    animation: float3 14s linear infinite;
}
.floating-photo:nth-child(4) {
    width: 300px; height: 210px;
    top: 50px; left: 30%;
    z-index: 10;
    animation: float4 17s linear infinite;
}
.floating-photo:nth-child(5) {
    width: 280px; height: 195px;
    bottom: 100px; left: 22%;
    z-index: 13;
    animation: float5 15s linear infinite;
}
.floating-photo:nth-child(6) {
    width: 420px; height: 295px;
    top: 10px; right: 8%;
    z-index: 2;
    animation: float6 18s linear infinite;
}
.floating-photo:nth-child(7) {
    width: 330px; height: 230px;
    top: 180px; right: 12%;
    z-index: 8;
    animation: float7 14s linear infinite;
}
.floating-photo:nth-child(8) {
    width: 285px; height: 200px;
    bottom: 50px; right: 10%;
    z-index: 11;
    animation: float8 16s linear infinite;
}
.floating-photo:nth-child(9) {
    width: 310px; height: 215px;
    bottom: 10px; right: 25%;
    z-index: 14;
    animation: float9 17s linear infinite;
}
.floating-photo:nth-child(10) {
    width: 360px; height: 250px;
    top: 100px; right: 28%;
    z-index: 5;
    animation: float10 15s linear infinite;
}
.floating-photo:nth-child(11) {
    width: 280px; height: 195px;
    bottom: 140px; right: 5%;
    z-index: 16;
    animation: float11 18s linear infinite;
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-header {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    border-bottom: 1px solid #333;
}

.gallery-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
}

.gallery-modal-close {
    background: none;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s;
}

.gallery-modal-close:hover {
    color: var(--yellow);
}

.gallery-modal-content {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Masonry Grid */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
    grid-auto-flow: dense;
}

.gallery-masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-masonry-item.size-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-masonry-item.size-tall {
    grid-row: span 2;
}

.gallery-masonry-item.size-wide {
    grid-column: span 2;
}

.gallery-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.photo-credit {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0,0,0,0.25);
    color: rgba(255,255,255,0.9);
    font-size: 0.6rem;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease, color 0.2s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    text-decoration: none;
}

a.photo-credit:hover {
    color: var(--yellow);
}

.gallery-masonry-item:hover .photo-credit {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--yellow);
}

.lightbox-credit {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.6rem;
    background: rgba(0,0,0,0.25);
    color: rgba(255,255,255,0.9);
    font-size: 0.7rem;
    border-radius: 4px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.lightbox-credit a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lightbox-credit a:hover {
    color: var(--yellow);
}

@media (max-width: 768px) {
    .what-hero-photo {
        height: 550px;
    }
    
    .what-cards-overlay {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .what-card {
        padding: 1rem;
        height: 70px;
    }
    
    .what-card p {
        font-size: 0.75rem;
    }
    
    .floating-gallery {
        height: 500px;
    }
    
    .gallery-btn-center {
        font-size: 0.9rem;
        padding: 0.875rem 2rem;
    }
    
    .floating-photo {
        transform: scale(0.55);
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
    
    .gallery-modal-content {
        padding: 1rem;
    }
    
    .gallery-modal-header {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }
}

@media (max-width: 480px) {
    .what-hero-photo {
        height: 500px;
    }
    
    .what-card {
        padding: 0.75rem;
        height: 65px;
    }
    
    .what-card h3 {
        font-size: 0.9rem;
    }
    
    .what-card p {
        font-size: 0.7rem;
        line-height: 1.4;
    }
    
    .floating-gallery {
        height: 420px;
    }
    
    .gallery-btn-center {
        font-size: 0.8rem;
        padding: 0.75rem 1.5rem;
    }
    
    .floating-photo {
        transform: scale(0.4);
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
    }
    
    .gallery-masonry-item.size-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-masonry-item.size-tall {
        grid-row: span 1;
    }
}

/* Video Section */
.video-section {
    border-top: 1px solid var(--border-color);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-tertiary);
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Event Card with Flyer */
.event-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto 2rem;
    transition: all 0.3s;
    overflow: hidden;
}

.event-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.event-flyer {
    aspect-ratio: 1;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.event-flyer.no-flyer {
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
}

.event-flyer.no-flyer::after {
    content: '🛋️💫';
    font-size: 3rem;
    opacity: 0.3;
}

.event-flyer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.event-card .event-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.event-card .event-date {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-card .event-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.event-card .event-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.event-card .event-details {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.event-card .countdown {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-tickets-btn {
    background: var(--crimson);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: center;
}

.hero-tickets-btn:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
}

.view-upcoming-btn {
    display: inline-block;
    background: var(--yellow);
    color: #0A0A0A;
    text-decoration: none;
    padding: 0.875rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    margin-top: 2rem;
    margin-top: 1.5rem;
}

.view-upcoming-btn:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .event-card {
        grid-template-columns: 1fr;
    }
    .event-card-content {
        padding: 2rem;
        text-align: center;
    }
    .event-card .countdown {
        justify-content: center;
    }
    .hero-tickets-btn {
        align-self: center;
    }
}

/* Artists Section */
.artists-section {
    border-top: 1px solid var(--border-color);
}

.artists-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.view-all {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.artist-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-tertiary);
}

.artist-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255,214,0,0.15);
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
    filter: brightness(0.95);
}

.artist-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.artist-card .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0.3;
}

.artist-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.artist-card:hover .artist-card-overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
}

.artist-card-name {
    font-weight: 600;
    font-size: 0.75rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* About Section */
.about-section {
    border-top: 1px solid var(--border-color);
}

.about-intro-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 100%;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Connect Section */
.connect-section {
    border-top: 1px solid var(--border-color);
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.connect-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.connect-card:hover {
    border-color: var(--yellow);
}

.connect-card.featured {
    background: var(--yellow);
    color: #0A0A0A;
    border-color: var(--yellow);
    padding: 1.5rem 2rem;
}

.connect-card.featured:hover {
    transform: translateY(-4px);
}

.connect-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.connect-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.connect-card .number {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.connect-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.connect-card.featured p {
    opacity: 0.9;
}

.connect-perks {
    text-align: left;
    margin-bottom: 1rem;
    list-style: none;
}

.connect-perks li {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    transition: border-color 0.3s;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--yellow);
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    padding: 0.875rem 2.25rem;
    background: var(--crimson);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    align-self: center;
}

.newsletter-form button:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
}

.newsletter-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.newsletter-status {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    min-height: 1.5rem;
    text-align: center;
}

.newsletter-status.success {
    color: #22c55e;
}

.newsletter-status.error {
    color: var(--crimson);
}

/* Text-to-Join Inline */
.text-join-form {
    display: flex;
    gap: 0.75rem;
    max-width: 320px;
    margin: 0 auto;
}

.text-join-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: rgba(0,0,0,0.2);
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #0A0A0A;
    transition: border-color 0.3s;
}

.text-join-form input:focus {
    outline: none;
    border-color: rgba(0,0,0,0.3);
}

.text-join-form input::placeholder {
    color: rgba(0,0,0,0.5);
}

.text-join-form button {
    padding: 0.875rem 1.5rem;
    background: #0A0A0A;
    color: white;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.text-join-form button:hover {
    transform: scale(1.05);
}


/* Artist Card Video Preview */
.artist-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s;
}

.artist-card:hover video {
    opacity: 1;
}

/* Glass Morphism Enhancement */
.glass-card {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .glass-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
}


/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-bg);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-secondary);
    border-radius: 16px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--border-color);
    z-index: 2001;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.modal-close:hover {
    background: var(--crimson);
}

/* Modal Media Container */
.modal-media {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
}

.modal-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-video.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-video .no-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-muted);
}

.modal-video .no-video span {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.3;
}

/* Photo Carousel */
.modal-photos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-photos.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: var(--yellow);
    color: #0A0A0A;
}

.carousel-nav.prev { left: 0.75rem; }
.carousel-nav.next { right: 0.75rem; }

.modal-photos .carousel-dots {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
}

.modal-photos .carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.modal-photos .carousel-dot.active {
    background: var(--yellow);
    transform: scale(1.3);
}

.photo-counter {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: white;
}

.modal-body {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
}

.modal-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.modal-artist-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.modal-artist-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.modal-artist-name a:hover {
    color: var(--yellow);
}

/* Tab Buttons */
.modal-tabs {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    position: relative;
}

.tab-btn {
    padding: 0.7rem 1.25rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.tab-btn:hover {
    border-color: var(--text-primary);
}

.tab-btn.active {
    background: var(--yellow);
    color: #0A0A0A;
    border-color: var(--yellow);
}

.tab-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
}

.modal-actions .cta-btn {
    flex: 1;
    text-align: center;
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
}

/* Event Modal */
.event-modal-content {
    max-width: 500px;
}

.event-modal-flyer {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.event-modal-flyer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-modal-flyer .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 0.3;
}

.event-modal-label {
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.event-modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.event-modal-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.event-modal-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.event-modal-city {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.event-modal-countdown {
    background: var(--bg-tertiary);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.event-modal-countdown .countdown-item {
    text-align: center;
}

.event-modal-countdown .countdown-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--yellow);
}

.event-modal-countdown .countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.event-modal-tickets-btn {
    display: inline-block;
    background: var(--crimson);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    text-align: center;
}

.event-modal-tickets-btn:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1000px) {
    .pillars-grid { grid-template-columns: 1fr; }
    .pillar-card.active {
        border-radius: 12px;
        border-bottom-color: var(--yellow);
    }
    .pillar-card.active::before,
    .pillar-card.active::after {
        display: none;
    }
    .pillar-panel {
        border-radius: 12px;
        border: 2px solid var(--yellow);
        margin-top: 1rem;
    }
    .panel-store-layout {
        grid-template-columns: 1fr;
    }
    .panel-store-layout .store-info {
        flex-direction: column;
    }
    .panel-store-layout .store-info-side {
        padding-left: 0;
        padding-top: 1rem;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.15);
    }
    .panel-store-layout .store-categories {
        grid-template-columns: 1fr 1fr;
    }
    .panel-label-layout {
        grid-template-columns: 1fr;
    }
    .panel-label-image {
        height: 250px;
    }
    .store-grid { grid-template-columns: 1fr; }
    .release-card { grid-template-columns: 1fr; }
    .release-image { aspect-ratio: 16/9; }
    .about-content { grid-template-columns: 1fr; }
    .artists-grid { grid-template-columns: repeat(4, 1fr); }
    .connect-grid { grid-template-columns: 1fr; }
    .expect-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .store-categories { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .artists-grid { grid-template-columns: repeat(3, 1fr); }
    .newsletter-form { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .modal-actions { flex-direction: column; }
    .expect-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
    .artists-grid { grid-template-columns: repeat(2, 1fr); }
    .countdown { gap: 1rem; }
    .countdown-number { font-size: 1.5rem; }
}

/* ============================================
   MODAL INFO LISTS (What to Expect, Venue)
   ============================================ */
#eventModalShopify {
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

#eventModalShopify iframe {
    margin: 0 auto !important;
    display: block !important;
}

#eventModalShopify [data-shopify-buy-ui] {
    display: flex !important;
    justify-content: center !important;
}
.modal-upcoming-shows { background: var(--bg-tertiary); border-radius: 12px; padding: 1.25rem; margin-bottom: 1.5rem; text-align: left; }
.modal-upcoming-shows h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; color: var(--accent); text-align: center; }
.upcoming-show-item { padding: 0.5rem 0; border-bottom: 1px solid var(--border-color); font-size: 0.85rem; display: flex; justify-content: space-between; }
.upcoming-show-item:last-child { border-bottom: none; }
.upcoming-show-title { color: var(--text-primary); text-align: left; flex-shrink: 0; }
.upcoming-show-date { color: var(--text-secondary); text-align: right; padding-left: 1.5rem; }
/* Flowing text block (What to Expect) */
.event-info-text { font-size: 0.85rem; color: var(--text-primary); line-height: 1.6; }
/* Event note styling */
.modal-upcoming-shows.event-note { padding: 1.5rem; }
.modal-upcoming-shows.event-note .upcoming-show-item { justify-content: center; padding: 0; }
.modal-upcoming-shows.event-note .upcoming-show-title { color: var(--text-secondary); font-style: italic; line-height: 1.5; flex-shrink: 1; white-space: normal; text-align: center; }

/* ============================================
   FIRST TIME SECTION
   ============================================ */
.first-time-section {
    margin-top: 1.25rem;
}

.first-time-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.first-time-toggle:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.first-time-text {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.first-time-toggle:hover .first-time-text {
    color: var(--yellow);
}

.first-time-icon { font-size: 1rem; }
.first-time-arrow { transition: transform 0.3s; }

.first-time-section.expanded .first-time-arrow {
    transform: rotate(90deg);
}

.first-time-section.expanded .first-time-toggle {
    border-style: solid;
    border-color: var(--border-color);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    background: var(--bg-tertiary);
    color: var(--yellow);
}

.first-time-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.first-time-section.expanded .first-time-content {
    max-height: 300px;
}

.first-time-tips {
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.first-time-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    text-align: left;
}

.first-time-tip + .first-time-tip {
    margin-top: 0.75rem;
}

.tip-icon {
    font-size: 1rem;
    line-height: 1;
}

/* ============================================
   NO EVENTS CARD
   ============================================ */
.no-events-card {
    text-align: center;
    padding: 3rem 2rem;
}

.no-events-card .event-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.no-events-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-notify-btn {
    display: inline-block;
    background: var(--crimson);
    color: white;
    padding: 16px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s;
}

.hero-notify-btn:hover {
    background: var(--crimson-dark);
}

/* ============================================
   HERO EVENTS CONTAINER (multiple cards)
   ============================================ */
#heroEventsContainer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    min-height: 280px; /* Reserve space to prevent CLS */
}

/* ============================================
   FEATURED ITEM (homepage products)
   ============================================ */
#featuredItemContainer {
    width: 100%;
    max-width: 900px;
    margin-top: 3rem;
}

.featured-item-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
}

/* Without image: centered text layout */
.featured-item-card:not(.has-image) {
    padding: 2.5rem;
    text-align: center;
}

/* With image: two-column grid like event-hero */
.featured-item-card.has-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.featured-item-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.featured-item-image {
    overflow: hidden;
    background: var(--bg-tertiary);
}

.featured-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-item-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.has-image .featured-item-content {
    text-align: left;
}

.featured-item-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 0.75rem;
}

.featured-item-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.featured-item-description {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.featured-item-card:not(.has-image) .featured-item-description {
    margin-left: auto;
    margin-right: auto;
}

.featured-item-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.featured-item-btn {
    background: var(--crimson);
    color: #FFFFFF;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-family: 'Outfit', -apple-system, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
}

.featured-item-card:not(.has-image) .featured-item-btn {
    margin: 0 auto;
}

.has-image .featured-item-btn {
    margin: 0 auto;
}

.featured-item-btn:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
}

/* Full bleed layout */
.featured-item-card.full-bleed {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.full-bleed-image {
    width: 100%;
    height: auto;
    display: block;
}

.full-bleed .featured-item-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.full-bleed .featured-item-btn:hover {
    background: var(--crimson-dark);
    transform: translate(-50%, -50%) translateY(-2px);
}

/* Featured Item Mobile */
@media (max-width: 768px) {
    .featured-item-card.has-image {
        grid-template-columns: 1fr;
    }
    .featured-item-card:not(.has-image):not(.full-bleed) {
        padding: 2rem 1.5rem;
    }
    .featured-item-content {
        padding: 2rem;
        text-align: center;
    }
    .featured-item-title {
        font-size: 1.5rem;
    }
    .featured-item-description {
        font-size: 0.95rem;
    }
    .featured-item-btn {
        margin: 0 auto;
    }
}

/* Shopify Cart Checkout Note */
.shopify-buy__cart-bottom::after {
    content: "🔒 Powered by Shopify. Close tab to return.";
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
    font-family: 'Outfit', sans-serif;
}

/* ============================================
   ARTIST MODAL - EVENT BUTTONS
   ============================================ */
.events-section {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.events-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.event-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.event-btn {
    padding: 0.6rem 0.9rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.35;
    flex: 1 1 auto;
    max-width: 160px;
}

.event-btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--bg-primary);
}

.event-btn .event-date {
    display: block;
    font-weight: 600;
    white-space: nowrap;
}

.event-btn .event-note {
    display: block;
    font-size: 0.65rem;
    opacity: 0.8;
    margin-top: 2px;
}
