/* =============================================================
   RESPONSIVE – MOBILE OPTIMIZATION
   ============================================================= */

/* ---------------------------------------------------------
    TABLET (1200px und kleiner)
------------------------------------------------- */

@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------------------------------------------------------
    TABLET (768px und kleiner)
------------------------------------------------- */

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hero-section {
        padding: 50px 15px;
        margin-bottom: 40px;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .filter-section {
        padding: 20px;
    }

    .filter-section .form-label {
        font-size: 0.9rem;
    }

    .btn-filter {
        width: 100%;
    }

    .event-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-card {
        padding: 18px;
    }

    .event-description,
    .event-map-section,
    .sidebar-card {
        padding: 20px;
    }

    .btn-ticket,
    .btn-website {
        padding: 12px 20px;
        font-size: 0.95rem;
        margin-right: 8px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .category-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
}

/* ---------------------------------------------------------
    MOBILE (576px und kleiner)
------------------------------------------------- */

@media (max-width: 576px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-wrapper {
        margin: -30px -12px 30px -12px;
    }

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

    .hero-section {
        padding: 40px 12px;
    }

    .filter-section {
        padding: 15px;
    }

    .filter-section form {
        flex-direction: column;
    }

    .filter-section .form-control,
    .filter-section .form-select {
        width: 100%;
    }

    .btn-filter {
        width: 100%;
    }

    .event-card-title {
        font-size: 1rem;
    }

    .event-card-meta {
        font-size: 0.85rem;
    }

    .event-info-grid {
        grid-template-columns: 1fr;
    }

    .info-card-value {
        font-size: 1rem;
    }

    .btn-ticket,
    .btn-website {
        width: 100%;
        text-align: center;
        margin-right: 0;
        margin-bottom: 10px;
        padding: 12px 16px;
    }

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

    .category-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .sidebar-card {
        padding: 16px;
        margin-bottom: 15px;
    }

    .sidebar-card h3 {
        font-size: 1rem;
    }

    .sidebar-content {
        font-size: 0.9rem;
    }

    .pagination {
        gap: 3px;
    }

    .page-link {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .kw-container {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* ---------------------------------------------------------
    EXTRA SMALL (360px und kleiner)
------------------------------------------------- */

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.3rem;
    }

    .event-card-title {
        font-size: 0.95rem;
    }

    .btn-ticket,
    .btn-website {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}
