/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background: #f5f7fa;
}

/* ==================== MAP PAGE STYLES ==================== */

body.map-page {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */
.main-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    flex-shrink: 0;
}

.logo svg {
    width: 32px;
    height: 32px;
}

.logo h1 {
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}

/* Search Container */
.search-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    max-width: 700px;
}

.search-box {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-box .search-icon {
    position: absolute;
    left: 14px;
    width: 20px;
    height: 20px;
    color: #9ca3af;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.search-box input:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.search-box input::placeholder {
    color: #9ca3af;
}

.category-filter {
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.category-filter:focus {
    outline: none;
}

.locate-btn {
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.locate-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.locate-btn svg {
    color: #667eea;
}

.login-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.login-link:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Map */
#map {
    flex: 1;
    width: 100%;
    z-index: 1;
}

/* Custom Map Markers */
.custom-marker {
    background: transparent;
    border: none;
}

.marker-pin {
    width: 40px;
    height: 50px;
    background: #667eea;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.marker-pin:hover {
    transform: rotate(-45deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.marker-icon {
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -3px;
    margin-left: -3px;
}

.marker-icon svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Sidebar */
.sidebar {
    position: fixed;
    right: 0;
    top: 70px;
    width: 380px;
    height: calc(100vh - 70px);
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h2 {
    font-size: 18px;
    color: #1a1a2e;
}

.performer-count {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.performer-list {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

/* Performer Cards */
.performer-card {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: #ffffff;
    border-radius: 14px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.performer-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.card-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.card-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
    line-height: 1.3;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.card-category {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 500;
}

.card-description {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 8px;
    flex: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #9ca3af;
    font-size: 11px;
}

.card-location svg {
    color: #9ca3af;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6b7280;
}

.card-rating .stars {
    color: #fbbf24;
    font-size: 11px;
}

.available-badge {
    display: inline-block;
    background: #d1fae5;
    color: #059669;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
}

.unavailable-badge {
    display: inline-block;
    background: #fee2e2;
    color: #dc2626;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: white;
}

.modal-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.modal-status-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.modal-status-badge.status-available {
    background: #10b981;
    color: white;
}

.modal-status-badge.status-unavailable {
    background: #ef4444;
    color: white;
}

.modal-info {
    padding: 25px;
}

.modal-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.modal-header-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
}

.modal-category {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 20px;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-rating .stars {
    color: #fbbf24;
    font-size: 16px;
}

.modal-rating span:last-child {
    font-weight: 600;
    color: #1a1a2e;
}

.modal-section {
    margin-bottom: 20px;
}

.modal-section h3 {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.modal-description {
    color: #4b5563;
    line-height: 1.7;
    font-size: 14px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #f9fafb;
    border-radius: 10px;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.contact-item:hover {
    background: #f0f0f0;
    color: #667eea;
}

.contact-item svg {
    color: #667eea;
    flex-shrink: 0;
}

.location-section {
    margin-bottom: 25px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
}

.location-info svg {
    color: #9ca3af;
}

.status-available {
    background: #d1fae5;
    color: #059669;
}

.status-unavailable {
    background: #fee2e2;
    color: #dc2626;
}

.book-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.book-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
}

/* Leaflet Popup Styles */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    padding: 0;
}

.leaflet-popup-content {
    margin: 12px 15px;
}

.popup-content strong {
    font-size: 14px;
    color: #1a1a2e;
}

.popup-category {
    color: #667eea;
    font-size: 12px;
}

.popup-rating {
    color: #fbbf24;
}

/* ==================== LOGIN PAGE STYLES ==================== */

body.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    overflow: hidden;
    position: relative;
}

/* Floating Background Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 30%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 60%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 420px;
    z-index: 1;
}

/* Login Card */
.login-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    margin-bottom: 30px;
}

.avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: pulse 2s infinite ease-in-out;
}

.avatar svg {
    width: 45px;
    height: 45px;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    }
}

.welcome-section h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.welcome-section p {
    color: #6b7280;
    font-size: 15px;
    font-weight: 400;
}

/* Alert Messages */
.alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.alert-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* Form Styles */
.login-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.input-wrapper:focus-within svg {
    color: #667eea;
}

.input-wrapper input::placeholder {
    color: #9ca3af;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #6b7280;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
    cursor: pointer;
}

.forgot-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Login Button */
.btn-login {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-login svg {
    transition: transform 0.3s ease;
}

.btn-login:hover svg {
    transform: translateX(5px);
}

/* Register Link */
.register-link {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.register-link p {
    color: #6b7280;
    font-size: 14px;
}

.register-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-link a:hover {
    color: #764ba2;
}

/* Demo Credentials / Auto Login */
.demo-credentials {
    margin-top: 20px;
    text-align: center;
}

.btn-auto-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-auto-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

/* Back to Map Link */
.back-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.8;
}

/* Dashboard Styles */
.dashboard-container {
    max-width: 800px;
}

.dashboard-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.dashboard-header h1 {
    font-size: 24px;
    color: #1a1a2e;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.btn-logout {
    padding: 10px 20px;
    background: #f3f4f6;
    color: #6b7280;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-logout:hover {
    background: #fee2e2;
    color: #dc2626;
}

.welcome-message {
    text-align: center;
    padding: 40px 20px;
}

.welcome-message h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.welcome-message p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: none;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Sidebar Toggle Button */
.sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    transform: scale(1.1);
}

.sidebar-toggle svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sidebar {
        width: 340px;
    }
}

@media (max-width: 900px) {
    .sidebar {
        width: 320px;
    }

    .nav-link-events {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 10px 15px;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo h1 {
        font-size: 14px;
    }

    .logo svg {
        width: 28px;
        height: 28px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .search-container {
        order: 3;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        gap: 8px;
    }

    .view-toggle {
        width: 100%;
        margin-right: 0;
        justify-content: center;
    }

    .view-toggle button {
        flex: 1;
        padding: 10px 12px;
    }

    .search-box {
        width: 100%;
    }

    .search-box input {
        padding: 10px 14px 10px 40px;
    }

    .category-filter {
        flex: 1;
        min-width: 120px;
        padding: 10px 12px;
    }

    .locate-btn {
        padding: 10px;
    }

    .nav-link-events {
        display: none;
    }

    .login-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    .sidebar {
        position: fixed;
        width: 100%;
        height: 50vh;
        top: auto;
        bottom: 0;
        border-radius: 20px 20px 0 0;
        transform: translateY(calc(100% - 60px));
        transition: transform 0.3s ease;
    }

    .sidebar.expanded {
        transform: translateY(0);
    }

    .sidebar-header {
        cursor: pointer;
        padding: 15px 20px;
    }

    .sidebar-header::after {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: #d1d5db;
        border-radius: 2px;
        margin: 10px auto 0;
    }

    #map {
        height: calc(50vh - 70px);
    }

    .sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .performer-list {
        padding: 10px;
    }

    .performer-card {
        padding: 12px;
        gap: 10px;
    }

    .card-image {
        width: 60px;
        height: 60px;
    }

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

    .card-description {
        font-size: 11px;
    }

    /* Event cards mobile */
    .event-card {
        padding: 12px;
    }

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

    .event-card-meta {
        font-size: 11px;
    }

    /* Modal mobile */
    .modal {
        padding: 10px;
    }

    .modal-content {
        border-radius: 15px;
        max-height: 95vh;
    }

    .modal-image {
        height: 180px;
    }

    .modal-info {
        padding: 20px;
    }

    .modal-header-info h2 {
        font-size: 20px;
    }

    .modal-section h3 {
        font-size: 12px;
    }

    .modal-description {
        font-size: 13px;
    }

    .contact-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .book-btn {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 8px 10px;
    }

    .logo {
        gap: 6px;
    }

    .logo h1 {
        font-size: 12px;
    }

    .logo svg {
        width: 24px;
        height: 24px;
    }

    .login-card {
        padding: 30px 25px;
    }

    .welcome-section h1 {
        font-size: 24px;
    }

    .form-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .dashboard-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .search-container {
        gap: 6px;
    }

    .view-toggle button {
        padding: 8px 10px;
        font-size: 12px;
    }

    .search-box input {
        padding: 8px 12px 8px 36px;
        font-size: 13px;
    }

    .category-filter {
        padding: 8px 10px;
        font-size: 13px;
    }

    .sidebar {
        height: 55vh;
    }

    #map {
        height: calc(45vh - 60px);
    }

    .card-image {
        width: 50px;
        height: 50px;
    }

    .modal-image {
        height: 150px;
    }
}
