/* =========================================
   1. VARIABLES, FONTS & ELITE SCROLLBAR
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600;900&family=Oswald:wght@700&display=swap');

:root {
    --bg-black: #050505;
    --dark-grey: #0a0a0a;
    --gold: #D4AF37;
    --gold-hover: #f9d768;
    --text-white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --font-display: 'Oswald', sans-serif; 
    --ease-elite: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

::selection { background-color: var(--gold); color: #000; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-black); }
::-webkit-scrollbar-thumb { background: #222; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   2. NAVBAR & LOGO
========================================= */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 30px 5%; background-color: transparent;
    position: fixed; width: 100%; top: 0; z-index: 1000;
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: padding 0.5s var(--ease-elite), background 0.5s var(--ease-elite);
}
.brand-link { display: flex; align-items: center; gap: 15px; text-decoration: none; transition: transform 0.5s var(--ease-elite); }
.brand-link:hover { transform: scale(1.02); }
.nav-logo { height: 40px; width: 40px; object-fit: cover; border-radius: 2px; }

.brand-text { font-family: var(--font-main); font-size: 1.2rem; font-weight: 900; letter-spacing: 2px; color: #fff; text-transform: uppercase; margin: 0; }
.brand-text span { color: var(--gold); font-weight: 300; letter-spacing: 3px; margin-left: 6px; }

.nav-links { list-style: none; display: flex; gap: 40px; align-items: center; }
.nav-links li a { 
    text-decoration: none; color: #888; font-weight: 600; 
    text-transform: uppercase; font-size: 0.75rem; letter-spacing: 3px; 
    transition: color 0.4s var(--ease-elite); position: relative;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--text-white); }
.nav-links li a.active::after {
    content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; background-color: var(--gold); border-radius: 50%;
}

/* =========================================
   3. GIANT TYPOGRAPHY & PERFECT HOLLOW TEXT
========================================= */
.hollow-text {
    font-family: var(--font-display) !important;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.5px var(--gold); 
    letter-spacing: 2px;
    padding: 5px 0;
}

.hero-content { text-align: center; width: 100%; z-index: 2; position: relative; }
.hero-title { font-family: var(--font-display); font-size: 8vw; font-weight: 700; line-height: 1; letter-spacing: 2px; margin: 0; text-transform: uppercase; }
.hero-subtitle { font-family: var(--font-main); font-size: 1rem; color: #aaa; font-weight: 300; letter-spacing: 5px; text-transform: uppercase; margin-top: 40px; max-width: 600px; margin-inline: auto; }

.page-header { margin-top: 0; padding: 200px 5% 80px 5%; text-align: center; background-color: var(--bg-black); }
.page-header h1 { font-family: var(--font-display); font-size: 5vw; font-weight: 700; text-transform: uppercase; line-height: 1; letter-spacing: 2px;}
.page-header p { color: #666; margin-top: 20px; font-size: 0.9rem; letter-spacing: 4px; text-transform: uppercase; }

.section-title { text-align: center; margin-bottom: 80px; }
.section-title h2 { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; line-height: 1;}
.gold-line { width: 1px; height: 80px; background-color: var(--gold); margin: 30px auto 0 auto; }

/* =========================================
   4. BUTTONS
========================================= */
.btn-gold {
    display: inline-block; background-color: var(--gold); color: var(--bg-black);
    border: 1px solid var(--gold); padding: 18px 45px; font-size: 0.8rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
    text-decoration: none; transition: all 0.5s var(--ease-elite); cursor: pointer;
}
.btn-gold:hover { background-color: transparent; color: var(--gold); }

.btn-outline {
    display: inline-block; background-color: transparent; color: #fff;
    border: 1px solid #333; padding: 18px 45px; font-size: 0.8rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
    text-decoration: none; transition: all 0.5s var(--ease-elite); cursor: pointer;
}
.btn-outline:hover { border-color: #fff; background-color: #fff; color: #000; }

/* =========================================
   5. REVEAL ANIMATIONS 
========================================= */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1.2s var(--ease-elite); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* =========================================
   6. INDEX PAGE SPECIFICS
========================================= */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; padding: 0 5%; background: linear-gradient(rgba(0,0,0,0.6), rgba(5,5,5,1)), url('ozadje.png') center/cover no-repeat; position: relative; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; color: #fff; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 4px; opacity: 0.4; animation: float 3s ease-in-out infinite; }
.scroll-line { width: 1px; height: 50px; background-color: var(--gold); margin-top: 15px; }
@keyframes float { 0%, 100% { transform: translateY(0) translateX(-50%); } 50% { transform: translateY(-15px) translateX(-50%); } }

.event-section { padding: 120px 5%; background-color: var(--bg-black); }
.tour-card { display: flex; align-items: center; max-width: 1400px; margin: 0 auto; gap: 80px; }
.tour-image { flex: 1.2; height: 400px; background-size: cover; background-position: center; filter: grayscale(100%); transition: 0.8s var(--ease-elite); }
.tour-card:hover .tour-image { filter: grayscale(0%); }
.tour-details { flex: 1; }
.tour-details h3 { font-family: var(--font-display); font-size: 4rem; font-weight: 700; letter-spacing: 1px; line-height: 1.1; margin-bottom: 30px; text-transform: uppercase; color: var(--gold); }
.event-info-list { list-style: none; margin-bottom: 40px; border-left: 1px solid #333; padding-left: 20px; }
.event-info-list li { font-size: 0.85rem; margin-bottom: 15px; color: #888; text-transform: uppercase; letter-spacing: 2px; }
.event-info-list strong { color: #fff; }
.tour-buttons { display: flex; gap: 20px; }

.partners-section { background-color: var(--bg-black); padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.02); overflow: hidden; }
.partners-marquee { width: 100%; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; align-items: center; gap: 100px; animation: scrollMarquee 25s linear infinite; }
.sponsor-logo { height: 45px; width: auto; object-fit: contain; opacity: 0.3; filter: grayscale(100%); transition: 0.5s var(--ease-elite); }
.sponsor-logo:hover { opacity: 1; filter: grayscale(0%); }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.merch-section { padding: 120px 5%; background-color: var(--bg-black); }
.merch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 60px; max-width: 1400px; margin: 0 auto; }
.merch-card { text-decoration: none; display: block; group; }
.merch-img { height: 500px; background-size: cover; background-position: center; background-color: #0a0a0a; transition: transform 0.8s var(--ease-elite); }
.merch-card:hover .merch-img { transform: scale(1.03); }
.merch-info { padding-top: 30px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #222; padding-bottom: 15px; }
.merch-info h3 { color: #fff; font-size: 1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.price { color: var(--gold); font-size: 1rem; font-weight: 400; }

/* =========================================
   7. EDITORIAL GALLERY & CREW 
========================================= */
.gallery-section, .about-section { padding: 50px 5% 120px 5%; background-color: var(--bg-black); }
.editorial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 80px; max-width: 1600px; margin: 0 auto; }
.editorial-card { text-decoration: none; display: block; cursor: pointer; }
.ed-img-wrapper { width: 100%; height: 500px; overflow: hidden; margin-bottom: 30px; }
.ed-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: transform 1s var(--ease-elite), filter 1s var(--ease-elite); display: block; }
.editorial-card:hover .ed-img { filter: grayscale(0%); transform: scale(1.05); }
.ed-info h3 { font-family: var(--font-display); color: #fff; font-size: 2.5rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; margin-bottom: 10px; transition: color 0.5s var(--ease-elite); }
.editorial-card:hover .ed-info h3 { color: var(--gold); }
.ed-info p { color: #666; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; }

/* =========================================
   8. EVENT PHOTOS (MASONRY)
========================================= */
.cinematic-header { height: 70vh; background-size: cover; background-position: center; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; }
.cinematic-header h1 { font-family: var(--font-display); font-size: 6vw; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; line-height: 1; margin-bottom: 20px;}
.masonry-grid-container { padding: 80px 5%; max-width: 1800px; margin: 0 auto; column-count: 3; column-gap: 40px; }
.masonry-item { display: inline-block; width: 100%; margin-bottom: 40px; overflow: hidden; cursor: pointer; }
.masonry-item img { width: 100%; height: auto; display: block; filter: grayscale(40%); transition: transform 0.8s var(--ease-elite), filter 0.8s var(--ease-elite); }
.masonry-item:hover img { transform: scale(1.03); filter: grayscale(0%); }

/* THE LIGHTBOX */
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px); z-index: 9999; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.lightbox.active { display: flex; opacity: 1; }
.lightbox img { max-width: 90%; max-height: 90vh; object-fit: contain; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.lb-close { position: absolute; top: 30px; right: 40px; color: #fff; font-size: 2rem; cursor: pointer; transition: 0.3s; }
.lb-close:hover { color: var(--gold); transform: scale(1.2); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 3rem; cursor: pointer; padding: 20px; transition: 0.3s; user-select: none; }
.lb-nav:hover { color: var(--gold); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }


/* =========================================
   9. ELITE LOGIN & REGISTER (The Missing Code!)
========================================= */
.elite-auth-wrapper {
    display: flex; height: 100vh; width: 100%; background-color: var(--bg-black);
}

.elite-auth-form-side {
    width: 45%; padding: 5% 8%; display: flex; flex-direction: column; 
    justify-content: center; position: relative; background-color: var(--bg-black); z-index: 2;
}

.elite-auth-image-side {
    width: 55%; background-size: cover; background-position: center; position: relative;
}

/* Fade from Image to Black form */
.elite-auth-image-side::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, var(--bg-black) 0%, transparent 30%);
}

.elite-auth-brand { position: absolute; top: 40px; left: 8%; }
.elite-auth-content { max-width: 400px; margin-top: 40px; }

.elite-back-link {
    display: inline-block; color: #666; font-size: 0.75rem; text-transform: uppercase; 
    text-decoration: none; font-weight: 700; letter-spacing: 2px; margin-bottom: 40px; transition: 0.3s;
}
.elite-back-link:hover { color: var(--gold); }

.elite-auth-content h2 { font-family: var(--font-display); font-size: 3rem; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; letter-spacing: 1px; color: var(--gold); }
.elite-subtitle { color: #888; font-size: 0.85rem; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px; }
.elite-error { color: #e74c3c; font-size: 0.85rem; font-weight: 700; margin-bottom: 20px; }

.elite-input-group { margin-bottom: 30px; }
.elite-input-group input {
    width: 100%; background: transparent; border: none; border-bottom: 1px solid #333;
    color: var(--text-white); font-family: var(--font-main); font-size: 1rem;
    padding: 10px 0; transition: 0.3s ease;
}
.elite-input-group input:focus { outline: none; border-bottom: 1px solid var(--gold); }
.elite-input-group input::placeholder { color: #444; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; }

.elite-btn-submit {
    width: 100%; background-color: var(--gold); color: var(--bg-black); border: none; 
    padding: 18px; font-family: var(--font-main); font-size: 0.85rem; font-weight: 700; 
    text-transform: uppercase; letter-spacing: 3px; margin-top: 15px; cursor: pointer; 
    transition: 0.3s ease;
}
.elite-btn-submit:hover { background-color: transparent; color: var(--gold); border: 1px solid var(--gold); }

.elite-auth-switch { margin-top: 40px; font-size: 0.8rem; color: #666; text-transform: uppercase; letter-spacing: 1px; }
.elite-auth-switch a { color: var(--text-white); text-decoration: none; font-weight: 700; margin-left: 10px; transition: 0.3s;}
.elite-auth-switch a:hover { color: var(--gold); }


/* =========================================
   10. TICKETING PRICING TABLES (The Missing Code!)
========================================= */
.pricing-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 40px; max-width: 1300px; margin: 0 auto; align-items: center; 
}
.pricing-card { 
    background-color: transparent; border: 1px solid #222; border-radius: 4px; 
    padding: 50px 40px; text-align: center; position: relative; transition: 0.4s var(--ease-elite); 
}
.pricing-card:hover { border-color: var(--gold); transform: translateY(-10px); }
.pricing-card.popular { border: 1px solid var(--gold); background: linear-gradient(145deg, #0a0a0a 0%, rgba(212,175,55,0.05) 100%); transform: scale(1.05); }
.pricing-card.popular:hover { transform: scale(1.08); }
.pricing-badge { 
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%); 
    background-color: var(--gold); color: var(--bg-black); padding: 5px 20px; 
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; 
}
.pricing-card h3 { font-family: var(--font-display); color: var(--text-white); font-size: 1.8rem; font-weight: 700; margin-bottom: 15px; letter-spacing: 1px;}
.pricing-card .price { color: var(--gold); font-size: 3.5rem; font-weight: 900; margin-bottom: 30px; line-height: 1; font-family: var(--font-display);}
.pricing-card .price span { font-size: 1rem; color: #666; font-weight: 400; font-family: var(--font-main); letter-spacing: 1px;}

.ticket-features { list-style: none; margin-bottom: 40px; text-align: left; border-top: 1px solid #222; padding-top: 30px;}
.ticket-features li { margin-bottom: 15px; font-size: 0.85rem; color: #aaa; padding-bottom: 10px; letter-spacing: 1px; text-transform: uppercase;}
.ticket-features li.disabled { color: #444; text-decoration: line-through; }

/* =========================================
   11. FOOTER
========================================= */
footer { text-align: center; padding: 80px 5%; background-color: var(--bg-black); border-top: 1px solid rgba(255,255,255,0.03); }
.socials a { color: #666; text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 3px; transition: 0.4s var(--ease-elite); }
.socials a:hover { color: var(--gold); }


/* =========================================
   12. MOBILE RESPONSIVE
========================================= */
@media (max-width: 1024px) { 
    .masonry-grid-container { column-count: 2; } 
    .tour-card { flex-direction: column; gap: 40px; } 
    .tour-image { width: 100%; height: 400px; } 
    .hero-title { font-size: 10vw; }
}
@media (max-width: 768px) {
    .navbar { flex-direction: column; padding: 20px; }
    .nav-links { margin-top: 20px; flex-wrap: wrap; justify-content: center; gap: 20px; }
    .masonry-grid-container { column-count: 1; }
    .page-header h1 { font-size: 10vw; }
    .editorial-grid { gap: 50px; }
    .btn-gold, .btn-outline { padding: 15px 30px; font-size: 0.7rem; }
    
    .elite-auth-wrapper { flex-direction: column; }
    .elite-auth-image-side { display: none; }
    .elite-auth-form-side { width: 100%; padding: 10%; align-items: center; text-align: center; }
    .elite-auth-brand { position: relative; top: 0; left: 0; justify-content: center; margin-bottom: 40px; }
    .elite-input-group input { text-align: center; }
    
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular:hover { transform: scale(1.02); }
}
/* =========================================
   13. ELITE CONTACT PAGE
========================================= */
.elite-contact-section { 
    padding: 50px 5% 120px 5%; 
    background-color: var(--bg-black); 
}

.elite-contact-wrapper { 
    display: flex; 
    max-width: 1400px; 
    margin: 0 auto; 
    gap: 80px;
    align-items: stretch;
}

.elite-contact-info { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.elite-contact-info h3 { 
    font-family: var(--font-display); 
    font-size: 2.5rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    color: var(--gold); 
    letter-spacing: 1px;
    margin-bottom: 15px; 
    line-height: 1.1;
}

.contact-desc { 
    color: #888; 
    margin-bottom: 40px; 
    font-size: 0.95rem; 
    letter-spacing: 1px;
    line-height: 1.8;
}

.contact-details-list { 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
    margin-bottom: 50px; 
}

.c-item { 
    display: flex; 
    align-items: flex-start; 
}

.c-icon { 
    font-size: 1.5rem; 
    margin-right: 20px; 
    margin-top: 5px; 
}

.c-item h4 { 
    font-size: 0.9rem; 
    font-weight: 700; 
    color: var(--text-white); 
    text-transform: uppercase; 
    letter-spacing: 2px;
    margin-bottom: 5px; 
}

.c-item p, .c-item a { 
    color: #666; 
    font-size: 0.9rem; 
    text-decoration: none; 
    transition: 0.3s ease;
    letter-spacing: 1px;
}

.c-item a:hover { 
    color: var(--gold); 
}

/* Minimalist Form */
.elite-contact-form { 
    display: flex; 
    flex-direction: column; 
    gap: 25px; 
}

.elite-contact-form input, .elite-contact-form textarea { 
    width: 100%; 
    padding: 15px 0; 
    background-color: transparent; 
    border: none;
    border-bottom: 1px solid #222; 
    color: var(--text-white); 
    font-family: var(--font-main); 
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: border-color 0.4s ease; 
}

.elite-contact-form input:focus, .elite-contact-form textarea:focus { 
    outline: none; 
    border-bottom: 1px solid var(--gold); 
}

.elite-contact-form input::placeholder, .elite-contact-form textarea::placeholder {
    color: #444;
}

.elite-contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Map */
.elite-contact-map { 
    flex: 1.2; 
    min-height: 600px; 
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.elite-contact-map iframe { 
    filter: invert(100%) hue-rotate(180deg) grayscale(50%) contrast(110%); 
}

/* Mobile Fixes for Contact */
@media (max-width: 1024px) {
    .elite-contact-wrapper { flex-direction: column; gap: 50px; }
    .elite-contact-map { min-height: 400px; }
}