/* THE MAGICIAN - PREMIUM SALON DESIGN */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #d4af37; --primary-dark: #b8941f; --dark: #0a0a0a; --dark-light: #1a1a1a;
  --light-bg: #f5f1e8; --white: #ffffff; --gray-light: #e8e3d8; --gray-mid: #d4ccc0;
  --gray-dark: #9d9589; --text-dark: #1a1a1a; --text-light: #6b6559; --error: #e74c3c;
  --radius-sm: 8px; --radius-md: 14px; --radius-lg: 20px; --radius-xl: 28px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.08); --shadow-md: 0 12px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.18); --shadow-xl: 0 40px 100px rgba(0,0,0,0.25);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1); --transition-fast: all 0.2s ease-out;
}

html { scroll-behavior: smooth; }
body { font-family: "Poppins", sans-serif; background: var(--light-bg); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes scaleIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* NAVBAR */
.navbar { position: sticky; top: 0; z-index: 1000; background: rgba(255,251,245,0.92); backdrop-filter: blur(16px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); animation: slideDown 0.5s ease-out; }
.navbar-container { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 2rem; max-width: 1280px; margin: 0 auto; }
.navbar-brand { display: flex; align-items: center; gap: 1rem; text-decoration: none; color: var(--text-dark); cursor: pointer; }
.brand-logo { font-size: 2rem; font-weight: 800; color: var(--primary); font-family: "Playfair Display", serif; letter-spacing: 0.05em; }
.brand-info h1 { font-family: "Playfair Display", serif; font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin: 0; }
.brand-info p { font-size: 0.75rem; color: var(--text-light); margin: 0; letter-spacing: 0.08em; text-transform: uppercase; }
.navbar-menu { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
.navbar-menu a { color: var(--text-dark); text-decoration: none; font-weight: 500; font-size: 0.95rem; position: relative; transition: var(--transition-fast); }
.navbar-menu a::after { content: ""; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition-fast); }
.navbar-menu a:hover::after { width: 100%; }
.btn-admin { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--text-dark); border: none; padding: 0.7rem 1.5rem; border-radius: var(--radius-lg); font-weight: 600; cursor: pointer; transition: var(--transition-fast); box-shadow: 0 6px 20px rgba(212,175,55,0.25); }
.btn-admin:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,175,55,0.35); }
.navbar-toggle { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text-dark); }

/* ANNOUNCEMENTS */
@keyframes scrollAnnouncements { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

.announcements-banner { position: relative; background: linear-gradient(90deg, rgba(212,175,55,0.15), rgba(212,175,55,0.25), rgba(212,175,55,0.15)); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(212,175,55,0.3); padding: 0.7rem 0; text-align: center; font-weight: 500; display: none; overflow: hidden; height: 50px; }
.announcements-banner.active { display: block; }
.announcements-banner-content { display: flex; align-items: center; height: 100%; animation: scrollAnnouncements linear infinite; padding: 0 2rem; }
.announcements-banner p { margin: 0; font-size: 0.9rem; color: var(--text-dark); letter-spacing: 0.5px; white-space: nowrap; padding: 0 3rem; display: inline-flex; align-items: center; }
.announcements-banner p::before { content: "✦ "; color: var(--primary); margin-right: 0.5rem; }
.announcements-banner p::after { content: " ✦"; color: var(--primary); margin-left: 0.5rem; }

/* HERO */
.hero { position: relative; height: 680px; background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%); background-image: url('https://images.unsplash.com/photo-1585747860715-cd4628902d4a?auto=format&fit=crop&w=1600&q=80'); background-size: cover; background-position: center; background-attachment: fixed; display: flex; align-items: center; justify-content: center; color: var(--white); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(212,175,55,0.15), transparent 50%), linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.95)); z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; animation: slideUp 0.8s ease-out; max-width: 700px; padding: 0 2rem; }
.hero-title { font-family: "Playfair Display", serif; font-size: clamp(2.8rem, 7vw, 4.5rem); font-weight: 800; margin-bottom: 1.2rem; line-height: 1.1; letter-spacing: 0.02em; }
.hero-subtitle { font-size: 1.2rem; margin-bottom: 2.5rem; opacity: 0.92; color: rgba(255,255,255,0.9); font-weight: 300; }
.hero-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--text-dark); border: none; padding: 1rem 2.5rem; border-radius: var(--radius-lg); font-weight: 600; font-size: 1rem; cursor: pointer; transition: var(--transition-fast); display: inline-block; text-decoration: none; box-shadow: 0 12px 40px rgba(212,175,55,0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(212,175,55,0.4); }
.btn-secondary { background: rgba(255,255,255,0.12); color: var(--white); border: 2px solid rgba(255,255,255,0.3); padding: 0.9rem 2.3rem; border-radius: var(--radius-lg); font-weight: 600; font-size: 1rem; cursor: pointer; transition: var(--transition-fast); display: inline-block; text-decoration: none; backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }
.btn-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-light); }
.btn-logout { width: 100%; background: var(--error); color: var(--white); border: none; padding: 0.8rem; border-radius: var(--radius-md); cursor: pointer; font-weight: 600; margin-top: 2rem; }

/* SECTIONS */
.section-title { font-family: "Playfair Display", serif; font-size: clamp(2rem, 5vw, 3rem); text-align: center; margin-bottom: 0.8rem; color: var(--text-dark); font-weight: 700; position: relative; }
.section-title::after { content: ""; position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 70px; height: 3px; background: var(--primary); border-radius: 2px; }
.section-subtitle { text-align: center; color: var(--text-light); margin-bottom: 3.5rem; font-size: 1.05rem; max-width: 600px; margin-left: auto; margin-right: auto; }
section { padding: 6rem 0; }

/* OFFERS */
.offers { background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 50%, var(--light-bg) 100%); }
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-top: 3rem; }
.offer-card { background: rgba(255,255,255,0.95); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,0.6); transition: var(--transition); animation: slideUp 0.6s ease-out; }
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.offer-card h3 { font-size: 1.4rem; color: var(--text-dark); margin-bottom: 1rem; font-weight: 700; }
.offer-card p { color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.7; }
.offer-tag { display: inline-block; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--text-dark); padding: 0.5rem 1.2rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; }

/* SERVICES */
.services { background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-top: 3.5rem; }
.service-card { background: rgba(255,255,255,0.98); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,0.7); transition: var(--transition); animation: slideUp 0.6s ease-out; backdrop-filter: blur(10px); }
.service-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }
.service-image { width: 100%; height: 280px; overflow: hidden; background: linear-gradient(135deg, var(--gray-light), var(--gray-mid)); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-image img { transform: scale(1.08); }
.service-content { padding: 2rem; }
.service-content h3 { font-size: 1.4rem; color: var(--text-dark); margin-bottom: 1.2rem; font-weight: 700; }
.service-content ul { list-style: none; }
.service-content li { padding: 0.6rem 0; color: var(--text-light); border-bottom: 1px solid var(--gray-light); margin-bottom: 0.8rem; padding-bottom: 0.8rem; font-size: 0.95rem; }
.service-content li:last-child { border-bottom: none; }

/* TEAM */
.team { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-top: 3.5rem; }
.team-card { background: #f9f6f0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,0.7); transition: var(--transition); text-align: center; animation: slideUp 0.6s ease-out; }
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.team-image { position: relative; width: 100%; height: 320px; overflow: hidden; background: linear-gradient(135deg, var(--gray-light), var(--gray-mid)); }
.team-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.team-card:hover .team-image img { transform: scale(1.1); }
.team-overlay { position: absolute; inset: 0; background: rgba(212,175,55,0.92); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.team-card:hover .team-overlay { opacity: 1; }
.team-overlay p { color: var(--text-dark); font-weight: 600; font-size: 1.1rem; }
.team-card h3 { font-size: 1.4rem; color: var(--text-dark); margin: 1.5rem 0 0.5rem; font-weight: 700; }
.team-card .role { color: var(--primary); font-weight: 600; margin-bottom: 0.5rem; font-size: 0.95rem; }
.team-card .specialty { color: var(--text-light); font-size: 0.9rem; padding: 0 1rem 1.5rem; line-height: 1.6; }

/* BOOKING */
.booking { background: radial-gradient(circle at top, #fdf9f2 0%, var(--light-bg) 40%, #efe7dc 100%); }
.booking-wrapper { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; margin-top: 3.5rem; align-items: flex-start; }
.booking-calendar { background: rgba(255,255,255,0.98); padding: 2.2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,0.7); animation: slideUp 0.6s ease-out; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.calendar-header h3 { font-family: "Playfair Display", serif; font-size: 1.5rem; color: var(--text-dark); font-weight: 700; margin: 0; }
.btn-nav { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--text-dark); border: none; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; transition: var(--transition-fast); font-weight: 600; box-shadow: 0 4px 12px rgba(212,175,55,0.2); }
.btn-nav:hover { transform: scale(1.12); }
.calendar-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.5rem; margin-bottom: 1rem; text-align: center; font-weight: 600; color: var(--text-light); font-size: 0.85rem; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.5rem; margin-bottom: 1.5rem; }
.calendar-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border: 2px solid var(--gray-light); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition-fast); font-weight: 600; background: var(--white); position: relative; font-size: 0.95rem; color: var(--text-dark); }
.calendar-day:hover:not(.disabled):not(.closed) { border-color: var(--primary); background: #faf8f3; transform: scale(1.08); }
.calendar-day.selected { background: var(--primary); color: var(--text-dark); border-color: var(--primary-dark); box-shadow: 0 6px 20px rgba(212,175,55,0.3); }
.calendar-day.disabled { opacity: 0.4; cursor: not-allowed; background: var(--gray-light); }
.calendar-day.closed { opacity: 0.6; cursor: not-allowed; background: #ffe6e6; border-color: var(--error); color: var(--error); }
.calendar-day.has-booking::after { content: "•"; position: absolute; top: 2px; right: 5px; font-size: 1.2rem; color: var(--primary); }
.calendar-legend { display: flex; gap: 2rem; font-size: 0.85rem; padding-top: 1rem; border-top: 1px solid var(--gray-light); flex-wrap: wrap; }
.legend-available, .legend-booked, .legend-closed { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
.legend-available { background: var(--white); border: 2px solid var(--gray-light); }
.legend-booked { background: var(--primary); }
.legend-closed { background: #ffe6e6; border: 2px solid var(--error); }

.booking-form-wrapper { display: flex; flex-direction: column; gap: 2rem; }
.booking-form { background: rgba(255,255,255,0.98); padding: 2.2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,0.7); animation: slideUp 0.6s ease-out; }
.booking-form h3 { font-size: 1.25rem; color: var(--text-dark); margin-bottom: 1.6rem; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; position: relative; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--text-light); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.9rem 1rem; border: 1.8px solid var(--gray-light); border-radius: var(--radius-lg); font-family: inherit; font-size: 0.95rem; transition: var(--transition-fast); background: rgba(255,255,255,0.96); color: var(--text-dark); }
.form-group textarea { border-radius: var(--radius-md); resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(212,175,55,0.12); background: var(--white); }
.btn-submit { width: 100%; padding: 1rem; margin-top: 1rem; }
.form-message { padding: 1rem; border-radius: var(--radius-md); margin-top: 1rem; display: none; font-weight: 500; }
.form-message.success { display: block; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-message.error { display: block; background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.booking-info { background: rgba(255,255,255,0.98); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,0.7); animation: slideUp 0.6s ease-out; }
.booking-info h3 { font-size: 1.2rem; color: var(--text-dark); margin-bottom: 1.5rem; font-weight: 700; }
.info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-light); }
.info-item:last-of-type { border-bottom: none; }
.info-icon { font-size: 1.8rem; min-width: 40px; }
.info-item strong { color: var(--text-dark); display: block; margin-bottom: 0.3rem; }
.info-item p { color: var(--text-light); margin: 0; font-size: 0.9rem; }
.info-item a { color: var(--primary); text-decoration: none; font-weight: 600; }
.hours { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 2px solid var(--gray-light); }
.hours h4 { color: var(--text-dark); font-weight: 700; margin-bottom: 1rem; }

/* MY BOOKINGS */
.my-bookings { background: var(--white); }
.bookings-search { display: flex; gap: 1rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.bookings-search input { flex: 1; padding: 0.9rem 1rem; border: 1.8px solid var(--gray-light); border-radius: var(--radius-lg); font-size: 0.95rem; }
.bookings-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; margin-top: 2rem; }
.booking-item { background: #f9f6f0; padding: 2rem; border-radius: var(--radius-lg); border-left: 4px solid var(--primary); box-shadow: var(--shadow-sm); animation: slideUp 0.6s ease-out; }
.booking-item h4 { color: var(--text-dark); margin-bottom: 1rem; font-weight: 700; }
.booking-item p { margin-bottom: 0.5rem; color: var(--text-light); font-size: 0.9rem; }
.booking-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }
.booking-actions button { flex: 1; padding: 0.7rem; border: none; border-radius: var(--radius-md); cursor: pointer; font-weight: 600; transition: var(--transition-fast); }
.btn-edit { background: var(--primary); color: var(--text-dark); }
.btn-edit:hover { background: var(--primary-dark); }
.btn-delete { background: var(--error); color: var(--white); }
.btn-delete:hover { background: #d63031; }

/* CONTACT */
.contact { background: var(--light-bg); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; margin-top: 3rem; }
.contact-item { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-md); transition: var(--transition); animation: slideUp 0.6s ease-out; }
.contact-item:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.contact-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-item h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--text-dark); font-weight: 700; }
.contact-item a { color: var(--primary); text-decoration: none; font-weight: 600; }

/* FOOTER */
.footer { background: var(--dark); color: var(--white); text-align: center; padding: 2rem; font-size: 0.9rem; }

/* MODAL */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 2000; align-items: center; justify-content: center; }
.modal.active { display: flex; }
.modal-content { background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); max-width: 400px; width: 90%; box-shadow: var(--shadow-lg); position: relative; animation: scaleIn 0.3s ease-out; }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-light); }
.modal-content h2 { margin-bottom: 1.5rem; color: var(--text-dark); font-weight: 700; }
.modal-content input { width: 100%; padding: 0.9rem; margin-bottom: 1rem; border: 1.8px solid var(--gray-light); border-radius: var(--radius-lg); }

/* ADMIN PANEL */
.admin-panel { position: fixed; top: 0; right: 0; width: 100%; max-width: 1400px; height: 100vh; background: linear-gradient(135deg, #0f1012 0%, #15161a 40%, #0d0e10 100%); z-index: 2000; display: flex; transform: translateX(100%); transition: var(--transition); box-shadow: -5px 0 25px rgba(0,0,0,0.55); }
.admin-panel.active { transform: translateX(0); }
.admin-sidebar { width: 260px; background: radial-gradient(circle at top, #20222a 0%, #14151a 55%, #0c0d10 100%); color: var(--white); padding: 2rem 0; overflow-y: auto; border-right: 1px solid rgba(255,255,255,0.06); }
.admin-header { padding: 0 1.5rem; margin-bottom: 2rem; display: flex; justify-content: space-between; align-items: center; }
.admin-header h2 { font-size: 1.3rem; margin: 0; font-weight: 700; }
.admin-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.admin-nav-btn { background: none; border: none; color: #999; padding: 1rem 1.5rem; text-align: left; cursor: pointer; transition: var(--transition); font-weight: 500; border-left: 3px solid transparent; }
.admin-nav-btn:hover { background: var(--dark-light); color: var(--white); }
.admin-nav-btn.active { background: var(--dark-light); color: var(--primary); border-left-color: var(--primary); }
.admin-content { flex: 1; padding: 2rem; overflow-y: auto; background: radial-gradient(circle at top left, rgba(255,255,255,0.03), transparent 55%); }
.admin-tab { display: none; }
.admin-tab.active { display: block; }
.admin-tab h2 { font-size: 1.8rem; margin-bottom: 2rem; color: #f9f5e8; font-weight: 700; }
.admin-tab h3 { font-size: 1.3rem; margin-top: 2rem; margin-bottom: 1rem; color: #f9f5e8; font-weight: 700; }
.dashboard-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.stat-card { background: radial-gradient(circle at top left, rgba(212,175,55,0.18), rgba(0,0,0,0.9)); color: #f9f5e8; padding: 2rem; border-radius: 18px; text-align: left; box-shadow: 0 24px 60px rgba(0,0,0,0.7); border: 1px solid rgba(212,175,55,0.25); }
.stat-number { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.stat-label { font-size: 1rem; font-weight: 600; }
.admin-filters { display: flex; gap: 1rem; margin-bottom: 2rem; }
.admin-filters input, .admin-filters select { padding: 0.8rem; border: 2px solid var(--gray-light); border-radius: var(--radius-md); font-size: 1rem; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; box-shadow: var(--shadow-md); border-radius: var(--radius-md); overflow: hidden; }
.admin-table th { background: var(--dark); color: var(--white); padding: 1rem; text-align: left; font-weight: 600; }
.admin-table td { padding: 1rem; border-bottom: 1px solid var(--gray-light); color: #f9f5e8; }
.admin-table tr:hover { background: rgba(255,255,255,0.05); }
.block-form, .announcement-form { background: rgba(255,255,255,0.05); padding: 2rem; border-radius: var(--radius-lg); margin-bottom: 2rem; border: 1px solid rgba(255,255,255,0.1); }
.blocked-list, .announcements-list { display: flex; flex-direction: column; gap: 1rem; }
.blocked-item, .announcement-item { background: rgba(255,255,255,0.08); padding: 1.5rem; border-radius: var(--radius-lg); border-left: 4px solid var(--primary); display: flex; justify-content: space-between; align-items: center; box-shadow: var(--shadow-sm); color: #f9f5e8; }
.upcoming-bookings { background: rgba(255,255,255,0.05); padding: 2rem; border-radius: var(--radius-lg); margin-top: 2rem; border: 1px solid rgba(255,255,255,0.1); }
.upcoming-booking { background: rgba(255,255,255,0.08); padding: 1.5rem; border-radius: var(--radius-lg); margin-bottom: 1rem; border-left: 4px solid var(--primary); color: #f9f5e8; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .navbar-container { padding: 1rem 1.5rem; }
  .navbar-menu { gap: 1.5rem; }
  .hero { height: 500px; }
  .booking-wrapper { grid-template-columns: 1fr; }
  .services-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .calendar-grid { gap: 0.4rem; }
  .calendar-day { font-size: 0.9rem; }
}

@media (max-width: 768px) {
  .navbar-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--white); padding: 1rem; gap: 0.5rem; box-shadow: var(--shadow-md); z-index: 999; }
  .navbar-menu.active { display: flex; }
  .navbar-toggle { display: block; color: var(--text-dark); }
  .hero { height: 400px; }
  .hero-title { font-size: 2rem; }
  .booking-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .admin-panel { max-width: 100%; left: 0; right: 0; flex-direction: column; }
  .admin-sidebar { width: 100%; max-height: none; padding: 1rem 1rem 0.5rem; overflow-x: visible; overflow-y: visible; }
  .admin-header { padding: 0 0 0.5rem; margin-bottom: 0.5rem; }
  .admin-header h2 { font-size: 1.1rem; }
  .admin-nav { flex-direction: row; overflow-x: auto; gap: 0.5rem; padding: 0.25rem 0 0.5rem; }
  .admin-nav-btn { padding: 0.6rem 0.9rem; white-space: nowrap; font-size: 0.9rem; }
  .btn-logout { margin: 0.5rem 0 0; padding: 0.6rem 1rem; font-size: 0.9rem; }
  .admin-content { padding: 1rem; height: calc(100vh - 120px); }
  .admin-table { font-size: 0.85rem; }
  .admin-table th, .admin-table td { padding: 0.7rem; }
  section { padding: 3rem 0; }
  .services-grid, .team-grid, .contact-grid { grid-template-columns: 1fr; }
  .bookings-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .navbar-container { padding: 0.8rem 1rem; }
  .brand-info h1 { font-size: 1.1rem; }
  .brand-info p { font-size: 0.7rem; }
  .hero { height: 350px; }
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  .section-title { font-size: 1.4rem; }
  .section-subtitle { font-size: 0.95rem; }
  .services-grid, .team-grid, .contact-grid { grid-template-columns: 1fr; }
  .booking-wrapper { gap: 2rem; }
  .calendar-grid { gap: 0.3rem; }
  .calendar-day { font-size: 0.75rem; padding: 0.5rem; }
  .calendar-weekdays { font-size: 0.8rem; }
  .booking-form { padding: 1.5rem; }
  .booking-info { padding: 1.5rem; }
  .form-group input, .form-group select, .form-group textarea { padding: 0.7rem; font-size: 0.95rem; }
  .btn-primary { padding: 0.8rem 1.5rem; font-size: 0.95rem; }
  .booking-item { padding: 1.2rem; }
  .booking-actions button { padding: 0.6rem; font-size: 0.85rem; }
  .admin-table { font-size: 0.8rem; }
  .admin-table th, .admin-table td { padding: 0.6rem; }
  .modal-content { padding: 1.5rem; }
  .modal-content h2 { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .navbar-container { padding: 0.6rem 0.8rem; }
  .brand-logo { font-size: 1.5rem; }
  .brand-info h1 { font-size: 1rem; }
  .brand-info p { font-size: 0.65rem; }
  .btn-admin { padding: 0.5rem 1rem; font-size: 0.9rem; }
  .hero { height: 300px; }
  .hero-title { font-size: 1.5rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .section-title { font-size: 1.2rem; }
  .section-subtitle { font-size: 0.9rem; }
  .services-grid, .team-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-image, .team-image { height: 200px; }
  .booking-wrapper { gap: 1.5rem; }
  .calendar-grid { gap: 0.2rem; }
  .calendar-day { font-size: 0.7rem; aspect-ratio: auto; padding: 0.3rem; height: 35px; }
  .calendar-weekdays { font-size: 0.7rem; gap: 0.2rem; }
  .booking-form, .booking-info { padding: 1rem; }
  .booking-form h3, .booking-info h3 { font-size: 1rem; }
  .form-group { margin-bottom: 1rem; }
  .form-group label { font-size: 0.9rem; }
  .form-group input, .form-group select, .form-group textarea { padding: 0.6rem; font-size: 0.9rem; }
  .btn-primary { padding: 0.7rem 1.2rem; font-size: 0.9rem; }
  .btn-submit { padding: 0.8rem; }
  .booking-item { padding: 1rem; }
  .booking-item h4 { font-size: 1rem; }
  .booking-item p { font-size: 0.85rem; }
  .booking-actions { gap: 0.5rem; }
  .booking-actions button { padding: 0.5rem; font-size: 0.8rem; }
  .info-item { gap: 0.5rem; margin-bottom: 1rem; padding-bottom: 1rem; }
  .info-icon { font-size: 1.2rem; }
  .admin-table { font-size: 0.75rem; }
  .admin-table th, .admin-table td { padding: 0.4rem; }
  .modal-content { padding: 1.2rem; max-width: 90vw; }
  .modal-content h2 { font-size: 1.1rem; margin-bottom: 1rem; }
  .modal-content input { padding: 0.6rem; margin-bottom: 0.8rem; }
  .blocked-item, .announcement-item { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .blocked-item button, .announcement-item button { width: 100%; }
}