/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loading-screen.hide {
    opacity: 0;
    pointer-events: none;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading-bar {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    display: none;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000;
    --dark-gray: #111;
    --light-gray: #f5f5f5;
    --text: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--text);
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 400;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    padding: 20px 0;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.navbar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
    height: 28px;
    position: absolute;
    left: 40px;
}

.logo img {
    height: 32px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: drop-shadow(0 0 0px rgba(0, 0, 0, 0));
}

.logo:hover {
    opacity: 0.7;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    flex: 0;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
}

.lang-btn:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.8);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 1);
    color: var(--text);
}

@media (max-width: 768px) {
    .hamburger {
        display: none !important;
    }

    .logo {
        position: static;
        left: auto;
    }

    .nav-links {
        display: none;
    }

    .language-switcher {
        margin-left: auto;
        order: 2;
    }

    .nav-links li {
        border-bottom: 1px solid #111;
    }

    .nav-links a {
        display: block;
        padding: 20px 40px;
        font-size: 12px;
    }

    .language-switcher {
        position: static;
        flex-direction: row;
        margin-left: auto;
    }

    .lang-btn {
        padding: 5px 10px;
        font-size: 10px;
    }
}

/* Section Headings */
section > .container > h2 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero {
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%), url('assets/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    padding-top: 0;
}

.hero-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-content h1 {
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 15px 40px;
    background: transparent;
    border: 1px solid #333;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-hero:hover {
    background: var(--text);
    color: var(--black);
    border-color: var(--text);
}

.btn-ticket-hero {
    border: 1px solid #fff;
}

.hero-scroll {
    position: static !important;
    transform: none !important;
    margin: 50px auto 0 auto !important;
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    animation: bounce 2s infinite;
    left: auto !important;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 2;
}

.hero-scroll span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

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

/* Info/Events Section */
.info,
.events {
    padding: 80px 0;
    background: var(--black);
    border-bottom: 1px solid var(--dark-gray);
}

/* About Section */
.about {
    padding: 80px 0 40px 0;
    background: var(--black);
    border-bottom: 1px solid var(--dark-gray);
}

.about > .container > h2 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-text h2 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.5);
}

.about-text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.75);
}

/* Events Section */

.events-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 40px;
}

.show-more-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #333;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: var(--text);
    color: var(--black);
    border-color: var(--text);
}

.show-more-btn.hidden {
    display: none;
}

.event-card {
    background: transparent;
    border: 1px solid #1a1a1a;
    padding: 30px;
    transition: all 0.3s ease;
}

.event-card.active {
    border: 1px solid #333;
    background: #1a1a1a;
}

.event-card.past {
    opacity: 0.6;
    background: transparent;
    border: 1px solid #1a1a1a;
}

.event-card.hidden {
    display: none;
}

.event-card.hidden.show {
    display: block;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.event-card h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.event-status {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.event-status.sold-out {
    color: rgba(255, 255, 255, 0.4);
}

.event-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 20px;
}

.detail-item .label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    display: block;
}

.detail-item p {
    font-size: 14px;
    font-weight: 400;
}

.event-actions {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 15px 30px;
    background: transparent;
    border: 1px solid #333;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: inherit;
}

.btn:hover {
    background: var(--text);
    color: var(--black);
    border-color: var(--text);
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #333;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-ticket {
    flex: 1;
    padding: 12px !important;
    background: transparent !important;
    border: 1px solid #333 !important;
    color: var(--text) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: block !important;
    text-align: center !important;
}

.btn-ticket:hover {
    background: var(--text) !important;
    color: var(--black) !important;
    border-color: var(--text) !important;
}

.btn-whatsapp {
    flex: 1;
    padding: 12px !important;
    background: transparent !important;
    border: 1px solid #333 !important;
    color: var(--text) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: block !important;
    text-align: center !important;
}

.btn-whatsapp:hover {
    background: var(--text) !important;
    color: var(--black) !important;
    border-color: var(--text) !important;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

.info-block h3 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.5);
}

.info-block p {
    font-size: 18px;
    font-weight: 300;
}

/* Tickets Section */
.tickets {
    display: none;
}

/* Join Section */
.join {
    padding: 80px 0;
    background: var(--black);
    border-bottom: 1px solid var(--dark-gray);
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.join-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

.join-description {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.join-form input,
.join-form select,
.join-form textarea {
    padding: 15px;
    background: var(--dark-gray);
    border: 1px solid #222;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.join-form input::placeholder,
.join-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus {
    outline: none;
    background: #1a1a1a;
    border: 1px solid #333;
}

.join-form select {
    cursor: pointer;
    color: var(--text);
}

.join-form select option {
    background: var(--dark-gray);
    color: var(--text);
}

.join-form .btn {
    margin-top: 10px;
}

.form-notice {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-top: 5px;
}

.checkbox-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: rgba(255, 255, 255, 0.5);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--black);
    border-bottom: 1px solid var(--dark-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item .label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-item a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.contact-item a:hover {
    opacity: 0.7;
}

.contact-item p {
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.contact-item.instagram-only {
    margin-bottom: 0;
}

.instagram-icon {
    display: inline-flex;
    color: var(--text);
    transition: opacity 0.3s;
}

.instagram-icon:hover {
    opacity: 0.7;
}

.instagram-icon svg {
    stroke: currentColor;
    stroke-width: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    background: var(--dark-gray);
    border: 1px solid #222;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: #1a1a1a;
    border: 1px solid #333;
}

.contact-form .btn {
    margin-top: 10px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--black);
    border-top: 1px solid var(--dark-gray);
    text-align: center;
}

.footer p {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.4);
}

.footer .privacy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer .privacy-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 5rem;
    }

    .event-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .nav-links {
        gap: 2rem;
    }

    .event-card.mobile-hidden {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        height: 24px;
    }

    .nav-links {
        gap: 1rem;
        font-size: 11px;
    }

    .hero {
        margin-top: 0;
        height: 100vh;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%), url('assets/hero-bg-mobile.jpg') center/cover no-repeat;
        padding-top: 0;
    }

    .hero-content {
        padding-top: 220px;
        padding-bottom: 80px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 40px;
        letter-spacing: 1px;
    }

    .hero-buttons {
        gap: 15px;
    }

    .btn-hero {
        padding: 12px 30px;
        font-size: 11px;
    }

    .hero-scroll {
        font-size: 10px;
        margin-top: 40px;
    }

    .scroll-arrow {
        width: 20px;
        height: 20px;
    }

    .subtitle {
        font-size: 14px;
    }

    .info,
    .events,
    .tickets,
    .join,
    .contact {
        padding: 50px 0;
    }

    .events-list,
    .info-grid,
    .contact-content,
    .join-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        gap: 0;
    }

    .event-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-card h3 {
        font-size: 14px;
    }

    .info-grid {
        gap: 2rem;
    }

    .section-subtitle {
        margin-bottom: 30px;
    }

    .join-form,
    .contact-form {
        gap: 12px;
    }

    .ticket-buttons {
        gap: 10px;
    }

    .past-section {
        margin-top: 40px;
        padding-top: 40px;
    }

    .event-card.mobile-hidden {
        display: none !important;
    }

    .event-card.mobile-hidden.show {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 10px 0;
    }

    .logo {
        height: 22px;
        max-width: 110px;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 12px;
    }

    .btn-hero {
        width: 100%;
        padding: 12px 20px;
        font-size: 10px;
    }

    .hero-scroll {
        font-size: 10px;
        margin-top: 40px;
    }

    .scroll-arrow {
        width: 20px;
        height: 20px;
    }

    .subtitle {
        font-size: 12px;
    }

    .info,
    .events,
    .tickets,
    .join,
    .contact {
        padding: 40px 0;
    }

    .info-block h3 {
        font-size: 10px;
    }

    .event-card h3 {
        font-size: 14px;
    }

    .info-block p {
        font-size: 14px;
    }

    .tickets-list {
        gap: 1rem;
    }

    .ticket-item {
        padding: 20px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .events-list {
        gap: 1rem;
    }

    .event-details {
        gap: 0.5rem;
    }

    .detail-item .label {
        font-size: 9px;
    }

    .detail-item p {
        font-size: 12px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #1a1a1a;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    color: #fff;
    animation: slideIn 0.3s;
    position: relative;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.modal-content h3 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-content p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.close {
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
    padding: 0;
}

.close:hover {
    color: #fff;
}

.privacy-link {
    color: #00d4ff;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
    display: inline;
}

.privacy-link:hover {
    color: #fff;
    text-decoration: underline;
}

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

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
