/*
 Theme Name:   Elbriot 2026
 Theme URI:    https://elbriot.de
 Description:  Elbriot Festival 2026 – Child Theme für Zakra mit SiteOrigin Page Builder Support
 Author:       Elbriot Festival
 Author URI:   https://elbriot.de
 Template:     zakra
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  elbriot-child
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
    --elbriot-red: #e94646;
    --elbriot-red-light: #ff5555;
    --elbriot-red-dark: #c12a2a;
    --elbriot-purple: #cbaae8;
    --elbriot-black: #0a0a0a;
    --elbriot-dark: #111111;
    --elbriot-darker: #1a1a1a;
    --elbriot-gray: #2a2a2a;
    --elbriot-text: #e0e0e0;
    --elbriot-text-muted: #888888;
    --elbriot-white: #ffffff;
    --font-display: 'Oswald', 'Impact', sans-serif;
    --font-body: 'Barlow', 'Helvetica Neue', sans-serif;
    --font-accent: 'Barlow Condensed', sans-serif;
}

/* ==========================================================================
   GLOBAL RESETS & BASE
   ========================================================================== */
body {
    background-color: var(--elbriot-black) !important;
    color: var(--elbriot-text) !important;
    font-family: var(--font-body) !important;
    overflow-x: hidden;
}

/* Override Zakra defaults – correct IDs from live site */
#page,
.site,
body.page-template-page-elbriot-onepager-php {
    background-color: var(--elbriot-black) !important;
}

/* Hide Zakra header & footer – we build our own */
#zak-masthead,
.zak-header-builder,
#masthead,
.site-header,
.tg-site-header {
    display: none !important;
}

#zak-footer,
.zak-footer,
.zak-footer-builder,
#colophon,
.site-footer {
    display: none !important;
}

/* ─── Zakra content area: full width, dark background ─── */
#zak-content,
.zak-content {
    background-color: var(--elbriot-black) !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove Zakra's max-width container */
#zak-content .zak-container,
#zak-content .tg-container,
.zak-container,
.tg-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove Zakra row constraints */
#zak-content .zak-row,
.zak-row {
    margin: 0 !important;
    padding: 0 !important;
}

/* Full-width content override */
.site-content,
.entry-content,
.page-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

#primary,
.content-area {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
}

/* SiteOrigin full-width rows */
.panel-grid {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.panel-grid-cell {
    padding: 0 !important;
}

/* Kill any Zakra sidebar area if present */
#secondary,
.sidebar,
aside.widget-area {
    display: none !important;
}

/* ==========================================================================
   CUSTOM HEADER / NAVIGATION
   ========================================================================== */
.elbriot-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
    background: transparent;
}

.elbriot-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 10px 40px;
    box-shadow: 0 2px 30px rgba(233, 70, 70, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.elbriot-logo img,
.elbriot-logo svg {
    height: 55px;
    width: auto;
    transition: height 0.3s ease;
}

.elbriot-header.scrolled .elbriot-logo img,
.elbriot-header.scrolled .elbriot-logo svg {
    height: 42px;
}

.elbriot-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.elbriot-nav a {
    color: var(--elbriot-white);
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    padding: 10px 20px;
    position: relative;
    transition: color 0.3s ease;
}

.elbriot-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--elbriot-red);
    transition: width 0.3s ease;
}

.elbriot-nav a:hover {
    color: var(--elbriot-red);
}

.elbriot-nav a:hover::after {
    width: 60%;
}

.elbriot-nav .btn-ticket {
    background: var(--elbriot-red);
    color: var(--elbriot-white) !important;
    padding: 10px 28px;
    border-radius: 0;
    font-weight: 700;
    letter-spacing: 3px;
    margin-left: 15px;
    transition: background 0.3s ease, transform 0.2s ease;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.elbriot-nav .btn-ticket::after {
    display: none;
}

.elbriot-nav .btn-ticket:hover {
    background: var(--elbriot-red-light);
    color: var(--elbriot-white) !important;
    transform: scale(1.05);
}

/* Mobile burger */
.elbriot-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10001;
    padding: 5px;
}

.elbriot-burger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--elbriot-white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.elbriot-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.elbriot-burger.active span:nth-child(2) {
    opacity: 0;
}

.elbriot-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.elbriot-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--elbriot-black);
}

.elbriot-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: scale(1.05); }
    50% { transform: scale(1.15); }
}

.elbriot-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10,10,10,0.7) 70%, rgba(10,10,10,0.95) 100%);
}

.elbriot-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.elbriot-hero-logo {
    max-width: 600px;
    width: 80%;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease 0.3s both;
}

.elbriot-hero-logo img {
    width: 100%;
    height: auto;
}

.elbriot-hero-tagline {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--elbriot-purple);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.6s both;
}

.elbriot-hero-date {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--elbriot-white);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease 0.9s both;
}

.elbriot-hero-location {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--elbriot-text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 1.2s both;
}

/* Countdown */
.elbriot-countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 1.4s both;
}

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

.elbriot-countdown-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--elbriot-red);
    line-height: 1;
    display: block;
}

.elbriot-countdown-label {
    font-family: var(--font-accent);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--elbriot-text-muted);
    margin-top: 8px;
    display: block;
}

.elbriot-hero-cta {
    animation: fadeInUp 1s ease 1.6s both;
}

.elbriot-btn {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.elbriot-btn-primary {
    background: var(--elbriot-red);
    color: var(--elbriot-white);
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.elbriot-btn-primary:hover {
    background: var(--elbriot-red-light);
    color: var(--elbriot-white);
    transform: scale(1.05);
}

.elbriot-btn-outline {
    border: 2px solid var(--elbriot-red);
    color: var(--elbriot-red);
    margin-left: 15px;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.elbriot-btn-outline:hover {
    background: var(--elbriot-red);
    color: var(--elbriot-white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.elbriot-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.elbriot-scroll-indicator span {
    display: block;
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--elbriot-red);
    border-bottom: 2px solid var(--elbriot-red);
    transform: rotate(45deg);
    opacity: 0.6;
}

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

/* ==========================================================================
   SECTION GLOBAL STYLES
   ========================================================================== */
.elbriot-section {
    padding: 100px 0;
    position: relative;
}

.elbriot-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.elbriot-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.elbriot-section-number {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--elbriot-red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.elbriot-section-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--elbriot-white);
    letter-spacing: 3px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.elbriot-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--elbriot-red);
    margin: 20px auto 0;
}

.elbriot-section-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--elbriot-text-muted);
    margin-top: 15px;
    letter-spacing: 1px;
}

/* ==========================================================================
   PROGRAMM (SCHEDULE) SECTION
   ========================================================================== */
.elbriot-programm {
    background: var(--elbriot-dark);
}

/* Day tabs */
.elbriot-tabs {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.elbriot-tab {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 30px;
    background: var(--elbriot-gray);
    color: var(--elbriot-text-muted);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.elbriot-tab:hover,
.elbriot-tab.active {
    background: var(--elbriot-red);
    color: var(--elbriot-white);
}

.elbriot-tab-content {
    display: none;
}

.elbriot-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Schedule items */
.elbriot-schedule-item {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background: var(--elbriot-darker);
    border-left: 3px solid transparent;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.elbriot-schedule-item:hover {
    border-left-color: var(--elbriot-red);
    background: var(--elbriot-gray);
    transform: translateX(5px);
}

.elbriot-schedule-time {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--elbriot-red);
    min-width: 120px;
}

.elbriot-schedule-info {
    flex: 1;
}

.elbriot-schedule-artist {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--elbriot-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.elbriot-schedule-stage {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--elbriot-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* ==========================================================================
   TICKETS SECTION
   ========================================================================== */
.elbriot-tickets {
    background: var(--elbriot-black);
    position: relative;
}

.elbriot-tickets::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top center, rgba(233,70,70,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.elbriot-ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.elbriot-ticket-card {
    background: var(--elbriot-darker);
    border: 1px solid var(--elbriot-gray);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.elbriot-ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--elbriot-gray);
    transition: background 0.4s ease;
}

.elbriot-ticket-card:hover {
    border-color: var(--elbriot-red);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(233,70,70,0.15);
}

.elbriot-ticket-card:hover::before {
    background: var(--elbriot-red);
}

.elbriot-ticket-card.featured {
    border-color: var(--elbriot-red);
}

.elbriot-ticket-card.featured::before {
    background: var(--elbriot-red);
    height: 4px;
}

.elbriot-ticket-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--elbriot-red);
    color: var(--elbriot-white);
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 40px;
    transform: rotate(45deg);
}

.elbriot-ticket-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--elbriot-white);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.elbriot-ticket-price {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--elbriot-red);
    line-height: 1;
    margin-bottom: 5px;
}

.elbriot-ticket-price span {
    font-size: 22px;
    vertical-align: top;
    margin-right: 3px;
}

.elbriot-ticket-currency {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--elbriot-text-muted);
    margin-bottom: 30px;
    display: block;
}

.elbriot-ticket-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    text-align: left;
}

.elbriot-ticket-features li {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--elbriot-text);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.elbriot-ticket-features li::before {
    content: '✓';
    color: var(--elbriot-red);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.elbriot-ticket-features li.disabled {
    color: var(--elbriot-text-muted);
    text-decoration: line-through;
    opacity: 0.5;
}

.elbriot-ticket-features li.disabled::before {
    content: '✕';
    color: var(--elbriot-text-muted);
}

.elbriot-ticket-card .elbriot-btn {
    width: 100%;
    text-align: center;
}

/* Single ticket centered layout */
.elbriot-ticket-single {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.elbriot-ticket-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.elbriot-ticket-links .elbriot-btn {
    width: 100%;
    text-align: center;
    display: block;
}

.elbriot-ticket-note {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--elbriot-text-muted);
    line-height: 1.6;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.elbriot-ticket-note a {
    color: var(--elbriot-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.elbriot-ticket-note a:hover {
    color: var(--elbriot-red-light);
}

/* ==========================================================================
   SPONSORS SECTION
   ========================================================================== */
.elbriot-sponsors {
    background: var(--elbriot-black);
    padding: 80px 0;
}

.elbriot-sponsor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.elbriot-sponsor-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elbriot-sponsor-item img {
    max-width: 160px;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.elbriot-sponsor-item img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.elbriot-sponsor-placeholder {
    width: 160px;
    height: 60px;
    border: 1px dashed var(--elbriot-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--elbriot-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   VENUE BANNER (Open Air am Grossmarkt)
   ========================================================================== */
.elbriot-venue-banner {
    background: var(--elbriot-darker);
    border-top: 1px solid var(--elbriot-gray);
    border-bottom: 1px solid var(--elbriot-gray);
    padding: 40px 0;
}

.elbriot-venue-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.elbriot-venue-link:hover {
    opacity: 0.85;
}

.elbriot-venue-logo-placeholder {
    width: 100px;
    height: 100px;
    border: 2px solid var(--elbriot-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.elbriot-venue-logo-placeholder span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--elbriot-red);
    text-align: center;
    line-height: 1.3;
    letter-spacing: 1px;
}

.elbriot-venue-logo-placeholder img {
    max-width: 80px;
    max-height: 80px;
}

.elbriot-venue-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.elbriot-venue-label {
    font-family: var(--font-accent);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--elbriot-text-muted);
}

.elbriot-venue-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--elbriot-white);
    letter-spacing: 2px;
}

.elbriot-venue-sub {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--elbriot-red);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.elbriot-faq {
    background: var(--elbriot-dark);
}

.elbriot-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.elbriot-faq-item {
    border-bottom: 1px solid var(--elbriot-gray);
    overflow: hidden;
}

.elbriot-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--elbriot-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.elbriot-faq-question:hover {
    color: var(--elbriot-red);
}

.elbriot-faq-icon {
    font-size: 24px;
    color: var(--elbriot-red);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.elbriot-faq-item.active .elbriot-faq-icon {
    transform: rotate(45deg);
}

.elbriot-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.elbriot-faq-item.active .elbriot-faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.elbriot-faq-answer p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--elbriot-text-muted);
    margin: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.elbriot-footer {
    background: var(--elbriot-black);
    border-top: 1px solid var(--elbriot-gray);
    padding: 60px 0 30px;
}

.elbriot-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.elbriot-footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.elbriot-footer-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--elbriot-text-muted);
    line-height: 1.7;
}

.elbriot-footer-heading {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--elbriot-white);
    margin-bottom: 20px;
}

.elbriot-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.elbriot-footer-links li {
    margin-bottom: 10px;
}

.elbriot-footer-links a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--elbriot-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.elbriot-footer-links a:hover {
    color: var(--elbriot-red);
}

.elbriot-footer-social {
    display: flex;
    gap: 15px;
}

.elbriot-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--elbriot-gray);
    color: var(--elbriot-text);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.elbriot-footer-social a:hover {
    background: var(--elbriot-red);
    color: var(--elbriot-white);
}

.elbriot-footer-bottom {
    border-top: 1px solid var(--elbriot-gray);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.elbriot-footer-copyright {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--elbriot-text-muted);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .elbriot-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        gap: 0;
    }

    .elbriot-nav.open {
        right: 0;
    }

    .elbriot-nav a {
        padding: 15px 0;
        font-size: 16px;
        width: 100%;
    }

    .elbriot-nav .btn-ticket {
        margin-left: 0;
        margin-top: 15px;
        text-align: center;
        width: 100%;
    }

    .elbriot-burger {
        display: flex;
    }

    .elbriot-hero-date {
        font-size: 32px;
    }

    .elbriot-countdown-number {
        font-size: 36px;
    }

    .elbriot-section-title {
        font-size: 36px;
    }

    .elbriot-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .elbriot-footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .elbriot-sponsor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .elbriot-venue-link {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .elbriot-venue-name {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .elbriot-header {
        padding: 12px 20px;
    }

    .elbriot-hero-tagline {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .elbriot-hero-date {
        font-size: 24px;
    }

    .elbriot-countdown {
        gap: 15px;
    }

    .elbriot-countdown-number {
        font-size: 28px;
    }

    .elbriot-countdown-label {
        font-size: 10px;
    }

    .elbriot-section {
        padding: 60px 0;
    }

    .elbriot-container {
        padding: 0 20px;
    }

    .elbriot-section-title {
        font-size: 28px;
    }

    .elbriot-schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .elbriot-schedule-time {
        min-width: unset;
    }

    .elbriot-ticket-card {
        padding: 35px 25px;
    }

    .elbriot-ticket-price {
        font-size: 42px;
    }

    .elbriot-tabs {
        gap: 3px;
    }

    .elbriot-tab {
        padding: 10px 16px;
        font-size: 12px;
    }

    .elbriot-faq-question {
        font-size: 16px;
    }
}

/* ==========================================================================
   UTILITY & ANIMATION CLASSES
   ========================================================================== */
.elbriot-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.elbriot-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Noise texture overlay for atmosphere */
.elbriot-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}
