/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@300;500;700&display=swap');

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
}

h1, h2, h3, .brand-font {
    font-family: 'Orbitron', sans-serif;
}

/* Glassmorphism Effect */
.glass-panel {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.neon-text {
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.7);
}

.neon-border:focus {
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
    border-color: #38bdf8;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a; 
}
::-webkit-scrollbar-thumb {
    background: #334155; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569; 
}
/* --- CSS/STYLE.CSS - UPDATE RESPONSIVE --- */

/* 1. Meniul Lateral (Sidebar) pe Mobil */
@media (max-width: 768px) {
    aside {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 85% !important; /* Mai lat, sa se vada bine */
        max-width: 300px;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100; /* Cel mai sus */
        
        /* FIX VIZIBILITATE: Fundal Soolid, fara transparenta */
        background-color: #0f172a !important; 
        border-right: 1px solid #1e293b;
        box-shadow: 10px 0 25px rgba(0,0,0,0.8);
    }

    aside.active {
        transform: translateX(0);
    }

    /* Ajustăm Main Content pe mobil */
    main {
        margin-left: 0 !important;
        width: 100%;
        padding: 20px 15px !important; /* Padding mai mic pe mobil */
        padding-top: 80px !important; /* Loc pentru bara de sus */
        overflow-x: hidden; /* Previne scroll orizontal nedorit */
    }

    /* Ascundem elementele inutile din sidebar pe mobil */
    aside .p-6 img {
        height: 60px; /* Logo mai mic in meniu */
    }
}

/* 2. Butonul Hamburger (Meniu) - FIX POZITIE */
#mobile-menu-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 110; /* Peste tot, inclusiv sidebar */
    background: #0891b2; /* Cyan solid */
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.2);
    cursor: pointer;
}

/* Ascundem butonul pe Desktop */
@media (min-width: 769px) {
    #mobile-menu-btn { display: none; }
}

/* 3. Overlay (Fundalul Negru) */
#mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Foarte intunecat */
    backdrop-filter: blur(5px);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

#mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* 4. FIX PENTRU SHOP & TICKETS (Tabele & Griduri) */
.glass-panel {
    overflow-x: auto; /* Permite scroll daca e continutul prea lat */
}

/* Tabelele sa aiba scroll pe mobil */
table {
    min-width: 600px; /* Forteaza tabelul sa fie lat, apare scroll-ul */
}

/* Formularele din Shop */
@media (max-width: 768px) {
    .grid-cols-1, .lg\:grid-cols-3, .md\:grid-cols-2 {
        grid-template-columns: 1fr !important; /* Toate coloanele devin una singura */
    }
    
    input, select, textarea {
        font-size: 16px; /* Previne zoom-ul pe iPhone */
    }
}