/* PaQparchevamos Index Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #1a1a1a;
    line-height: 1.6;
}

/* Header */
.header {
    background: rgba(15, 20, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #f39c12;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-toggle {
    background: #f39c12;
    color: #0a0e1a;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-toggle:hover {
    background: #e67e22;
    transform: translateY(-1px);
}

.login-btn {
    display: inline-block;
    background: white;
    color: #0a0e1a;
    padding: 0.8rem 1.7rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 14, 26, 0.7), rgba(10, 14, 26, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23134e4a" width="1200" height="600"/><polygon fill="%23155e56" points="0,600 400,200 800,400 1200,100 1200,600"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.hero .guilt-text {
    color: #f39c12;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Main Layout */
.main-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Sidebar Filters */
.filters-sidebar {
    width: 350px;
    background: rgba(15, 20, 35, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    position: fixed;
    left: -350px;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 999;
}

.filters-sidebar.active {
    left: 0;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-top: 5rem;
}

.filters-header h2 {
    color: #f39c12;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-filters {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.close-filters:hover {
    background: rgba(243, 156, 18, 0.2);
    transform: rotate(90deg);
}

.filter-section {
    margin-bottom: 2rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.filter-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(243, 156, 18, 0.3);
}

.filter-section h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-section select,
.filter-section input[type="range"] {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.7rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.filter-section select:focus,
.filter-section input:focus {
    outline: none;
    border-color: #f39c12;
    background: rgba(255, 255, 255, 0.15);
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.checkbox-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    accent-color: #f39c12;
}

.checkbox-item label {
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    background: rgba(15, 20, 35, 0.95);
    padding: 3rem 2rem;
    margin: 3rem auto;
    max-width: 1400px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #f39c12;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Content Area */
.content-area {
    flex: 1;
    padding: 2rem;
    margin-left: 0;
    transition: margin-left 0.3s ease;
}

.content-area.shifted {
    margin-left: 350px;
}

/* Events by City */
.city-section {
    margin-bottom: 3rem;
}

.city-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(243, 156, 18, 0.3);
}

.city-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.view-all {
    color: #0a0e1a;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(243, 156, 18, 0.5);
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 320px);
    gap: 1.5rem;
}

/* Event Card */
.event-card {
    background: rgba(15, 20, 35, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.event-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(243, 156, 18, 0.4);
    border-color: rgba(243, 156, 18, 0.5);
}

.event-image {
    height: 200px;
    background: linear-gradient(45deg, #134e4a, #155e56);
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.15) rotate(2deg);
}

.event-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, rgba(10, 14, 26, 0.7));
}

.event-content {
    padding: 1.5rem;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.event-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.event-participants {
    color: #ffffff;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.event-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f39c12;
}

.event-category {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.btn-view {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #0a0e1a;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
    background: linear-gradient(135deg, #e67e22, #d35400);
}

/* Search Bar */
.search-bar {
    background: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(243, 156, 18, 0.3);
    border-radius: 16px;
    padding: 1.2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.15);
}

.search-bar:focus-within {
    border-color: #f39c12;
    box-shadow: 0 12px 40px rgba(243, 156, 18, 0.3);
    transform: translateY(-2px);
}

.search-bar input {
    flex: 1;
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 1.1rem;
    outline: none;
    font-weight: 500;
}

.search-bar input::placeholder {
    color: #999;
}

.search-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    font-size: 1rem;
}

.search-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(243, 156, 18, 0.5);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(15, 20, 35, 0.95), rgba(10, 14, 26, 0.98));
    border-top: 1px solid rgba(243, 156, 18, 0.2);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f39c12, transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-section h3 {
    color: #f39c12;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: #f39c12;
    transform: translateX(3px);
}

.footer-brand {
    grid-column: span 1;
}

.footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f39c12;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #f39c12;
    color: #0a0e1a;
    border-color: #f39c12;
    transform: translateY(-2px);
}

.create-parche-section {
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    grid-column: span 4;
    margin-bottom: 2rem;
}

.create-parche-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.create-parche-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.create-parche-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #0a0e1a;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.3);
}

.create-parche-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.4);
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f39c12;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 3;
    }

    .create-parche-section {
        grid-column: span 3;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .filters-sidebar {
        width: 100vw;
        left: -100vw;
    }

    .content-area.shifted {
        margin-left: 0;
    }

    .nav-menu {
        display: none;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }
}

/* Organizer Dashboard Styles */

.organizer-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Verde Oscuro */
.organizer-sidebar {
    width: 280px;
    background: #0d5a47;
    border-right: 1px solid rgba(46, 204, 113, 0.3);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
}

.organizer-profile {
    padding: 2rem;
    border-bottom: 1px solid rgba(46, 204, 113, 0.3);
    text-align: center;
}

.sidebar-close-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.profile-avatar {
    width: 90px;
    height: 90px;
    background: #1a8f6f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1rem;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(26, 143, 111, 0.5);
    border: 4px solid rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
}

.profile-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(26, 143, 111, 0.6);
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.profile-email {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.profile-role {
    font-size: 0.75rem;
    color: #2ecc71;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.profile-rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(26, 143, 111, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(46, 204, 113, 0.4);
}

.rating-stars {
    color: #2ecc71;
    font-weight: 700;
    font-size: 1.1rem;
}

.rating-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.organizer-nav {
    padding: 1.5rem 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
    margin: 0.2rem 0;
}

.nav-item:hover {
    background: rgba(26, 143, 111, 0.3);
    color: #2ecc71;
    border-left-color: rgba(46, 204, 113, 0.5);
    padding-left: 2.5rem;
}

.nav-item.active {
    background: rgba(26, 143, 111, 0.4);
    color: #2ecc71;
    border-left-color: #2ecc71;
    font-weight: 600;
}

.nav-item .icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.nav-item .badge {
    background: #1a8f6f;
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    margin-left: auto;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(26, 143, 111, 0.4);
}

/* Main Content */
.organizer-main {
    flex: 1;
    margin-left: 280px;
    background: transparent;
}

.organizer-header {
    background: white;
    border-bottom: 1px solid rgba(46, 204, 113, 0.15);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.page-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0d5a47;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.explore-btn {
    background: #0d5a47;
    color: white;
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 6px 20px rgba(13, 90, 71, 0.35);
    font-size: 0.95rem;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 90, 71, 0.45);
}

.logout-btn {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 2px solid rgba(231, 76, 60, 0.3);
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(231, 76, 60, 0.2);
    border-color: #e74c3c;
    transform: translateY(-2px);
}

/* Stats Cards */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(46, 204, 113, 0.25);
    border-color: rgba(46, 204, 113, 0.4);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 90, 71, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #0d5a47;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.stat-info p {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.organizer-content {
    padding: 2.5rem;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Summary Card */
.summary-card {
    background: white;
    border: 2px solid rgba(46, 204, 113, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(46, 204, 113, 0.12);
}

.summary-title {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.summary-title::before {
    content: '';
    width: 4px;
    height: 30px;
    background: #0d5a47;
    border-radius: 2px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.summary-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(13, 90, 71, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: rgba(13, 90, 71, 0.15);
    transform: translateY(-5px);
}

.summary-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0d5a47;
    display: block;
    margin-bottom: 0.5rem;
}

.summary-label {
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Event Cards */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.event-card {
    background: white;
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.25);
    border-color: rgba(46, 204, 113, 0.4);
}

.event-image {
    height: 200px;
    background: linear-gradient(45deg, #0d5a47, #1a8f6f);
    position: relative;
    overflow: hidden;
}

.event-status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: rgba(39, 174, 96, 0.9);
    color: #ffffff;
}

.status-pending {
    background: rgba(241, 196, 15, 0.9);
    color: #0a0e1a;
}

.status-completed {
    background: rgba(52, 152, 219, 0.9);
    color: #ffffff;
}

.event-content {
    padding: 1.5rem;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.event-date {
    color: #0d5a47;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(13, 90, 71, 0.05);
    border-radius: 8px;
}

.event-stat {
    text-align: center;
}

.event-stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d5a47;
    display: block;
}

.event-stat-label {
    font-size: 0.8rem;
    color: #666;
}

.event-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.btn {
    background: #0d5a47;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn:hover {
    background: #1a8f6f;
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(13, 90, 71, 0.1);
    color: #0d5a47;
    border: 1px solid rgba(13, 90, 71, 0.3);
}

.btn-secondary:hover {
    background: rgba(13, 90, 71, 0.2);
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

/* Tables */
.table-container {
    background: white;
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(46, 204, 113, 0.1);
}

.table th {
    background: rgba(13, 90, 71, 0.05);
    color: #0d5a47;
    font-weight: 600;
    position: sticky;
    top: 0;
}

.table tr:hover {
    background: rgba(13, 90, 71, 0.02);
}

.payment-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-paid {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.status-unpaid {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.status-cancelled {
    background: rgba(149, 165, 166, 0.2);
    color: #95a5a6;
    border: 1px solid rgba(149, 165, 166, 0.3);
}

/* Filter Controls */
.filter-controls {
    background: white;
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.filter-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-group select,
.filter-group input {
    background: rgba(13, 90, 71, 0.05);
    border: 1px solid rgba(13, 90, 71, 0.2);
    color: #1a1a1a;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #0d5a47;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .organizer-sidebar {
        width: 100%;
        left: -100%;
        transition: left 0.3s ease;
    }

    .organizer-sidebar.mobile-active {
        left: 0;
    }

    .organizer-main {
        margin-left: 0;
    }

    .sidebar-close-btn {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1rem;
    }

    .header-top {
        flex-direction: column;
        gap: 1rem;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}