/* 🍸 Ma Che Serata - Complete Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-violet: #6B46C1;
    --primary-magenta: #EC4899;
    --primary-cyan: #10B981;
    --dark-bg: #0F0F23;
    --dark-secondary: #16213E;
    --dark-accent: #1A1A2E;
    --white: #FFFFFF;
    --text-light: #E5E7EB;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-violet) 50%, var(--primary-magenta) 100%);
    color: var(--white);
    min-height: 100vh;
    line-height: 1.6;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-magenta), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-link:hover {
    color: var(--primary-magenta);
    background: var(--glass-bg);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-btn {
    background: linear-gradient(45deg, var(--primary-violet), var(--primary-magenta));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.dropdown-btn:hover {
    transform: translateY(-2px);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    min-width: 160px;
    border-radius: 1rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--text-light);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: var(--glass-bg);
    color: var(--primary-magenta);
}

/* ========== HERO SECTION ========== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-violet) 50%, var(--primary-magenta) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(107, 70, 193, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--white), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.cta-button {
    background: linear-gradient(45deg, var(--primary-violet), var(--primary-magenta));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-magenta);
    color: var(--primary-magenta);
}

.cta-button.secondary:hover {
    background: var(--primary-magenta);
    color: white;
}

/* ========== SECTIONS ========== */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--white), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========== EVENTS GRID ========== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-violet), var(--primary-magenta));
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.3);
    border-color: var(--primary-magenta);
}

.event-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--primary-violet), var(--primary-magenta));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-weight: 600;
}

.event-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.event-venue {
    color: var(--primary-cyan);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.book-button {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-violet), var(--primary-magenta));
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
}

/* ========== VENUES GRID ========== */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.venue-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-cyan), var(--primary-violet));
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
    border-color: var(--primary-cyan);
}

.venue-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--primary-cyan), var(--primary-violet));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-weight: 600;
}

.venue-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.venue-location {
    color: var(--primary-cyan);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.venue-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.venue-price {
    color: var(--primary-magenta);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.explore-button {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-cyan), var(--primary-violet));
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* ========== FORUM ========== */
.forum-actions {
    text-align: center;
    margin-bottom: 2rem;
}

.forum-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.forum-post {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.forum-post:hover {
    border-color: var(--primary-magenta);
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.2);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.post-author {
    color: var(--primary-cyan);
    font-weight: 600;
}

.post-likes {
    color: var(--primary-magenta);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.post-likes:hover {
    transform: scale(1.1);
}

.forum-post h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.forum-post p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.post-footer {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========== MODALS ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: var(--dark-bg);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid var(--glass-border);
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-magenta);
}

.modal-content h2 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-align: center;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-content input,
.modal-content select {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    padding: 1rem;
    color: var(--white);
    font-size: 1rem;
}

.modal-content input::placeholder {
    color: var(--text-light);
}

.modal-content button[type="submit"] {
    background: linear-gradient(45deg, var(--primary-violet), var(--primary-magenta));
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-content button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--glass-border);
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-magenta);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .events-grid,
    .venues-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
    }
}

.event-card:hover,
.venue-card:hover {
    animation: glow 2s infinite;
}

/* ========== GLASS MORPHISM ENHANCEMENTS ========== */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ========== STATUS INDICATORS ========== */
.status-online {
    color: var(--primary-cyan);
}

.status-verified {
    color: var(--primary-magenta);
}

.badge {
    background: linear-gradient(45deg, var(--primary-violet), var(--primary-magenta));
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ========== ADMIN PANEL STYLES ========== */

.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.tab-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #6B46C1, #EC4899);
    box-shadow: 0 4px 15px rgba(107,70,193,0.4);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.admin-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-input, .filter-select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 200px;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.filter-select option {
    background: #0F0F23;
    color: white;
}

.admin-btn {
    background: linear-gradient(135deg, #6B46C1, #EC4899);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107,70,193,0.4);
}

.admin-btn.small {
    padding: 6px 12px;
    font-size: 0.9em;
}

.admin-btn.success {
    background: linear-gradient(135deg, #10B981, #059669);
}

.admin-btn.danger {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.admin-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.item-info {
    flex: 1;
}

.item-info h4 {
    margin: 0 0 10px 0;
    color: white;
    font-size: 1.1em;
}

.item-info p {
    margin: 5px 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.9em;
}

.item-status {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 500;
    white-space: nowrap;
}

.status-badge.pending {
    background: rgba(251,191,36,0.2);
    color: #FCD34D;
}

.status-badge.verified, .status-badge.approved {
    background: rgba(16,185,129,0.2);
    color: #10B981;
}

.status-badge.banned, .status-badge.flagged {
    background: rgba(239,68,68,0.2);
    color: #EF4444;
}

.status-badge.resolved {
    background: rgba(99,102,241,0.2);
    color: #818CF8;
}

.verified-badge {
    background: rgba(16,185,129,0.2);
    color: #10B981;
    padding: 2px 8px;
    border-radius: 15px;
    font-size: 0.75em;
}

.item-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-card h3 {
    margin: 0 0 10px 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.9em;
    font-weight: 500;
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    color: #EC4899;
    margin: 10px 0;
}

.user-details {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
}

.user-details p {
    margin: 10px 0;
    color: white;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.admin-notification {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Admin Panel */
@media (max-width: 768px) {
    .admin-item {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .admin-controls {
        flex-direction: column;
    }
    
    .search-input, .filter-select {
        min-width: 100%;
    }
    
    .item-actions {
        justify-content: center;
    }
    
    .admin-tabs {
        flex-wrap: wrap;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
}