* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #1e3a8a;
    --primary-light: #2563eb;
    --primary-dark: #1e40af;
    --accent: #3b82f6;
    --accent-dark: #2563eb;
    --accent-light: #93c5fd;
    --cream: #f8fafc;
    --gray-light: #f1f5f9;
    --gray: #64748b;
    --dark: #1e293b;
    --white: #ffffff;
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;
    --info: #06b6d4;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 25px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
}
body { font-family: 'Inter', sans-serif; background: var(--gray-light); color: var(--dark); overflow-x: hidden; }

.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 2rem; }
.room-card { background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); transition: transform 0.3s; cursor: pointer; position: relative; }
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.room-image { height: 220px; overflow: hidden; position: relative; }
.room-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.room-card:hover .room-image img { transform: scale(1.05); }
.room-info { padding: 1.5rem; }
.room-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--primary-dark); margin-bottom: 0.5rem; }
.room-price { font-size: 1.8rem; font-weight: 700; color: var(--accent); margin: 0.5rem 0; }
.room-price small { font-size: 0.9rem; color: var(--gray); }
.room-amenities { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1rem 0; font-size: 0.8rem; color: var(--gray); }
.room-amenities span { display: flex; align-items: center; gap: 0.3rem; }
.availability-badge { display: inline-block; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-top: 0.5rem; }
.availability-available { background: #d1fae5; color: #065f46; }
.availability-limited { background: #fed7aa; color: #9a3412; }
.availability-soldout { background: #fee2e2; color: #991b1b; }
.btn-room-book { background: var(--primary); color: white; border: none; padding: 0.7rem 1.5rem; border-radius: 40px; font-weight: 600; cursor: pointer; width: 100%; margin-top: 1rem; transition: all 0.3s; }
.btn-room-book:hover:not(:disabled) { background: var(--accent); color: white; }
.btn-room-book:disabled { background: var(--gray); cursor: not-allowed; opacity: 0.6; }

.booking-actions { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.btn-cancel-booking { background: var(--danger); color: white; border: none; padding: 0.4rem 1rem; border-radius: 20px; cursor: pointer; font-size: 0.75rem; transition: all 0.3s; }
.btn-cancel-booking:hover { background: #dc2626; transform: translateY(-2px); }
.btn-modify-booking { background: var(--info); color: white; border: none; padding: 0.4rem 1rem; border-radius: 20px; cursor: pointer; font-size: 0.75rem; transition: all 0.3s; }
.btn-modify-booking:hover { background: #0891b2; transform: translateY(-2px); }
.booking-detail-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid #e2e8f0; }
.booking-detail-label { font-weight: 600; color: var(--primary-dark); }

.modal { z-index: 10000; }
.gallery-modal { z-index: 10001; }
.image-viewer { z-index: 10002; }
.admin-panel { z-index: 3000; }

.gallery-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); overflow-y: auto; }
.gallery-modal.active { display: block; }
.gallery-modal-content { max-width: 1400px; margin: 0 auto; padding: 2rem; }
.gallery-modal-header { display: flex; justify-content: space-between; align-items: center; color: white; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.2); margin-bottom: 2rem; }
.gallery-modal-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--accent); }
.close-gallery-modal { font-size: 2rem; cursor: pointer; transition: transform 0.2s; color: white; }
.close-gallery-modal:hover { transform: rotate(90deg); color: var(--accent); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.gallery-grid-item { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; transition: transform 0.3s; }
.gallery-grid-item:hover { transform: scale(1.02); }
.gallery-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-grid-item:hover img { transform: scale(1.1); }
.gallery-grid-item .overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); padding: 1rem; color: white; font-size: 0.8rem; transform: translateY(100%); transition: transform 0.3s; }
.gallery-grid-item:hover .overlay { transform: translateY(0); }
.gallery-categories { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; justify-content: center; }
.gallery-cat-btn { background: rgba(255,255,255,0.1); border: 1px solid var(--accent); color: white; padding: 0.5rem 1.5rem; border-radius: 40px; cursor: pointer; transition: all 0.3s; font-size: 0.9rem; }
.gallery-cat-btn.active, .gallery-cat-btn:hover { background: var(--accent); color: var(--primary-dark); }

.image-viewer { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.98); justify-content: center; align-items: center; cursor: pointer; }
.image-viewer.active { display: flex; }
.image-viewer img { max-width: 90%; max-height: 90%; object-fit: contain; border-radius: 8px; }
.image-viewer .close-viewer { position: absolute; top: 20px; right: 30px; font-size: 3rem; color: white; cursor: pointer; transition: color 0.2s; }
.image-viewer .close-viewer:hover { color: var(--accent); }
.image-viewer .nav-btn { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; color: white; cursor: pointer; padding: 1rem; transition: color 0.2s; }
.image-viewer .nav-btn:hover { color: var(--accent); }
.image-viewer .prev-btn { left: 20px; }
.image-viewer .next-btn { right: 20px; }

.auth-tabs { display: flex; gap: 1rem; margin-bottom: 1.5rem; border-bottom: 2px solid #e2e8f0; }
.auth-tab { padding: 0.8rem 1.5rem; cursor: pointer; font-weight: 600; color: var(--gray); transition: all 0.3s; }
.auth-tab.active { color: var(--accent); border-bottom: 2px solid var(--accent); margin-bottom: -2px; }
.auth-form { display: none; }
.auth-form.active { display: block; }

.user-menu { position: relative; display: inline-block; }
.user-menu-btn { background: rgba(59, 130, 246, 0.2); padding: 0.5rem 1rem; border-radius: 30px; display: flex; align-items: center; gap: 0.5rem; cursor: pointer; color: var(--white); }
.user-dropdown { display: none; position: absolute; right: 0; top: 45px; background: var(--white); min-width: 220px; border-radius: 12px; box-shadow: var(--shadow-lg); z-index: 100; }
.user-dropdown.show { display: block; }
.user-dropdown a { display: block; padding: 0.8rem 1rem; color: var(--dark); text-decoration: none; transition: background 0.2s; }
.user-dropdown a:hover { background: var(--gray-light); }
.user-dropdown hr { margin: 0.5rem 0; border-top: 1px solid #e2e8f0; }

.booking-history-item { background: var(--gray-light); border-radius: 16px; padding: 1rem; margin-bottom: 1rem; border-left: 4px solid var(--accent); }
.booking-status { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.7rem; font-weight: 600; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-confirmed { background: #d1fae5; color: #065f46; }
.status-cancelled { background: #fee2e2; color: #991b1b; }

.navbar { position: fixed; top: 0; width: 100%; background: rgba(30, 58, 138, 0.96); backdrop-filter: blur(12px); z-index: 1000; padding: 1rem 5%; transition: all 0.3s; border-bottom: 1px solid rgba(59, 130, 246, 0.3); }
.navbar.scrolled { padding: 0.7rem 5%; background: rgba(30, 58, 138, 0.98); }
.nav-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo h1 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: var(--accent); font-weight: 700; }
.logo p { font-size: 0.7rem; color: var(--accent-light); letter-spacing: 1px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: var(--white); text-decoration: none; font-weight: 500; transition: color 0.3s; font-size: 0.9rem; cursor: pointer; }
.nav-links a:hover { color: var(--accent); }
.login-icon { background: var(--accent); color: var(--primary-dark) !important; padding: 0.5rem 1.2rem; border-radius: 30px; display: flex; align-items: center; gap: 0.5rem; font-weight: 600 !important; }
.login-icon:hover { background: var(--accent-dark); color: white !important; }
.menu-toggle { display: none; font-size: 1.6rem; color: var(--accent); cursor: pointer; }

.hero { height: 85vh; min-height: 600px; background: url('uploads/gallery/main.jpg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px; background: linear-gradient(to top, var(--gray-light), transparent); }
.hero-content { color: white; max-width: 900px; padding: 2rem; animation: fadeInUp 0.8s ease; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 4rem; margin-bottom: 1rem; font-weight: 700; }
.hero-badge { display: inline-block; background: var(--accent); color: var(--primary-dark); padding: 0.4rem 1.2rem; border-radius: 40px; font-weight: 600; font-size: 0.8rem; margin-bottom: 1.2rem; }
.btn-primary-lg { background: var(--accent); color: white; border: none; padding: 1rem 2.5rem; font-size: 1.1rem; font-weight: 700; border-radius: 60px; cursor: pointer; display: inline-flex; align-items: center; gap: 0.8rem; margin-top: 1.5rem; transition: all 0.3s; }
.btn-primary-lg:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(59,130,246,0.3); }
.btn-about { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--accent); border: 2px solid var(--accent); padding: 1rem 2.5rem; font-size: 1.1rem; font-weight: 700; border-radius: 60px; cursor: pointer; display: inline-flex; align-items: center; gap: 0.8rem; margin-top: 1.5rem; margin-left: 1rem; }
.btn-about:hover { background: var(--accent); color: var(--primary-dark); border-color: var(--accent); }

.gallery-section { padding: 5rem 0; background: linear-gradient(to bottom, var(--white), var(--gray-light)); overflow: hidden; }
.gallery-title { text-align: center; margin-bottom: 3rem; }
.gallery-title h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--primary-dark); }
.gallery-title .divider { width: 70px; height: 3px; background: var(--accent); margin: 0.8rem auto; }
.view-gallery-btn { background: var(--primary); color: white; border: none; padding: 0.8rem 2rem; border-radius: 40px; font-weight: 600; cursor: pointer; margin-top: 2rem; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; }
.view-gallery-btn:hover { background: var(--accent); color: white; transform: translateY(-2px); }
.gallery-container { position: relative; width: 100%; overflow: hidden; padding: 2rem 0; }
.gallery-track { display: flex; gap: 1.5rem; animation: scrollGallery 40s linear infinite; width: fit-content; }
.gallery-track:hover { animation-play-state: paused; }
@keyframes scrollGallery { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.gallery-item { flex-shrink: 0; width: 350px; height: 280px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); transition: all 0.3s; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }

.flatpickr-calendar { border-radius: 16px; box-shadow: var(--shadow-lg); font-family: 'Inter', sans-serif; }
.flatpickr-day.selected { background: var(--accent); border-color: var(--accent); }
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); justify-content: center; align-items: center; }
.modal.active { display: flex; }
.modal-content { background: var(--white); max-width: 900px; width: 90%; max-height: 85vh; border-radius: 32px; overflow-y: auto; animation: slideUp 0.3s ease; }
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-header { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 2rem; color: white; position: sticky; top: 0; }
.modal-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; }
.modal-close { float: right; font-size: 2rem; cursor: pointer; transition: transform 0.2s; }
.modal-close:hover { transform: rotate(90deg); }
.modal-body { padding: 2rem; }
.about-section { margin-bottom: 2rem; }
.about-section h3 { color: var(--primary-dark); margin-bottom: 0.5rem; font-size: 1.3rem; border-left: 4px solid var(--accent); padding-left: 1rem; }
.about-section p, .about-section ul { color: var(--dark); line-height: 1.6; margin-bottom: 1rem; }
.about-section ul { padding-left: 2rem; }
.about-section li { margin-bottom: 0.4rem; }
.services-facilities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; margin: 1rem 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--primary-dark); font-size: 0.85rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8rem; border: 1.5px solid #e2e8f0; border-radius: 12px; font-family: 'Inter', sans-serif; transition: all 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }

.admin-panel { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--gray-light); overflow-y: auto; }
.admin-panel.active { display: block; }
.admin-header { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: white; padding: 1.2rem 2rem; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 100; flex-wrap: wrap; gap: 1rem; }
.admin-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; display: flex; align-items: center; gap: 0.8rem; }
.admin-header-right { display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap; }
.admin-header-right button { background: rgba(255,255,255,0.2); border: none; color: white; padding: 0.4rem 0.8rem; border-radius: 8px; cursor: pointer; transition: all 0.3s; font-size: 0.8rem; }
.admin-header-right button:hover { background: rgba(255,255,255,0.3); }
.close-admin { background: rgba(255,255,255,0.2); border: none; color: white; padding: 0.5rem 1rem; border-radius: 8px; cursor: pointer; }
.admin-filters { background: var(--white); margin: 1.5rem; border-radius: 20px; padding: 1.2rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.search-box { flex: 1; min-width: 200px; position: relative; }
.search-box input { width: 100%; padding: 0.7rem 1rem 0.7rem 2.2rem; border: 1.5px solid #e2e8f0; border-radius: 12px; }
.search-box i { position: absolute; left: 0.8rem; top: 50%; transform: translateY(-50%); color: var(--gray); }
.filter-select { padding: 0.7rem 1rem; border: 1.5px solid #e2e8f0; border-radius: 12px; cursor: pointer; }
.export-btn { background: var(--accent); color: white; border: none; padding: 0.7rem 1.2rem; border-radius: 12px; cursor: pointer; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; padding: 0 1.5rem; }
.stat-card { background: var(--white); padding: 1rem; border-radius: 16px; display: flex; justify-content: space-between; align-items: center; box-shadow: var(--shadow-md); cursor: pointer; }
.stat-info .number { font-size: 1.6rem; font-weight: 700; color: var(--primary-dark); }
.stat-info .label { font-size: 0.75rem; color: var(--gray); }
.admin-section { background: var(--white); margin: 1.5rem; border-radius: 20px; padding: 1.2rem; }
.admin-section h3 { margin-bottom: 0.8rem; color: var(--primary-dark); font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.chart-container { max-width: 300px; margin: 0 auto; }
.bookings-table { overflow-x: auto; margin-top: 1rem; }
.bookings-table table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.bookings-table th { background: var(--primary-light); color: white; padding: 0.6rem; text-align: left; }
.bookings-table td { padding: 0.6rem; border-bottom: 1px solid #e2e8f0; }
.status-select { padding: 0.2rem 0.5rem; border-radius: 20px; border: 1px solid var(--accent); cursor: pointer; background: white; font-size: 0.7rem; }
.btn-delete { background: var(--danger); color: white; border: none; padding: 0.2rem 0.6rem; border-radius: 8px; cursor: pointer; font-size: 0.7rem; }
.btn-edit { background: var(--info); color: white; border: none; padding: 0.2rem 0.6rem; border-radius: 8px; cursor: pointer; font-size: 0.7rem; margin-right: 0.3rem; }
.btn-user-manage { background: var(--warning); color: var(--primary-dark); border: none; padding: 0.2rem 0.8rem; border-radius: 8px; cursor: pointer; font-size: 0.7rem; margin-left: 1rem; }
.role-badge { background: var(--accent); color: white; padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.7rem; font-weight: 600; margin-left: 0.5rem; }
.rooms-management-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; margin-top: 1rem; }
.room-manage-card { background: var(--gray-light); border-radius: 16px; padding: 1rem; border: 1px solid #e2e8f0; }
.room-manage-card h4 { color: var(--primary-dark); margin-bottom: 0.5rem; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }
.section { padding: 5rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--primary-dark); }
.section-title .divider { width: 70px; height: 3px; background: var(--accent); margin: 0.8rem auto; }
.excellence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.service-card { background: var(--white); padding: 1.8rem; border-radius: 24px; text-align: center; transition: all 0.3s; box-shadow: var(--shadow-sm); cursor: pointer; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 1rem; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--primary-dark); }
.service-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.4; }

.footer { background: linear-gradient(135deg, var(--primary-dark), #0f2b44); color: var(--cream); padding: 4rem 5% 2rem; margin-top: 3rem; }
.footer-content { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 3rem; }
.footer-section { padding: 0 0.5rem; }
.footer-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; margin-bottom: 1.2rem; color: var(--accent); position: relative; padding-bottom: 0.8rem; }
.footer-section h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--accent); }
.footer-section .contact-info p { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; font-size: 0.85rem; }
.footer-section .contact-info i { width: 24px; color: var(--accent); }
.footer-section .social-links { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-section .social-links a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; color: var(--accent); transition: all 0.3s; text-decoration: none; }
.footer-section .social-links a:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-3px); }
.footer-section .hours p { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.85rem; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; }
.footer-bottom a { color: var(--accent); text-decoration: none; }
.alert { padding: 0.9rem; border-radius: 12px; margin-bottom: 1rem; }
.alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid var(--success); }
.alert-error { background: #fee2e2; color: #991b1b; border-left: 4px solid var(--danger); }

/* Mobile fixes */
@media (max-width: 968px) {
    .hero-content h2 { font-size: 2.5rem; }
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .nav-links.show { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: var(--primary-dark); padding: 1.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    .excellence-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-section h3::after { left: 50%; transform: translateX(-50%); }
    .rooms-grid { grid-template-columns: 1fr; }
    .admin-filters { flex-direction: column; align-items: stretch; }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
    .services-facilities-grid { grid-template-columns: 1fr; }
    .footer-section .contact-info p { justify-content: center; }
    .footer-section .hours p { justify-content: center; gap: 1rem; }
    .footer-section .social-links { justify-content: center; }
}
@media (max-width: 768px) {
    .gallery-item { width: 240px; height: 180px; }
    .excellence-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .bookings-table { font-size: 0.7rem; }
    .bookings-table th, .bookings-table td { padding: 0.3rem; white-space: nowrap; }
    .admin-header-right { flex-wrap: wrap; justify-content: flex-end; }
    .bulk-actions { flex-wrap: wrap; margin-top: 0.5rem; }
}
@media (max-width: 640px) {
    .hero-content h2 { font-size: 1.8rem; }
    .btn-primary-lg, .btn-about { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
}
.bulk-actions { display: flex; gap: 0.8rem; align-items: center; margin-left: auto; }
.bulk-actions button, .bulk-actions select { font-size: 0.75rem; padding: 0.3rem 0.8rem; }
#adminBookingsTable input[type="checkbox"] { transform: scale(1.2); cursor: pointer; }
#activityLogBody td { font-size: 0.75rem; word-break: break-word; }
#galleryMgmtGrid { max-height: 60vh; overflow-y: auto; }
.gallery-mgmt-item { position: relative; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-mgmt-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-mgmt-item .overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); padding: 0.5rem; color: white; font-size: 0.7rem; display: flex; justify-content: space-between; align-items: center; }
.gallery-mgmt-item .overlay button { background: rgba(255,255,255,0.2); border: none; color: white; border-radius: 20px; padding: 0.2rem 0.5rem; cursor: pointer; }
.gallery-mgmt-item .overlay button:hover { background: var(--danger); }
input[type="file"] { padding: 0.5rem; border: 1px solid #e2e8f0; border-radius: 12px; background: white; }