/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #c8a84e;
  --gold-light: #e0cc8a;
  --gold-hover: #a68a3a;
  --dark: #08080a;
  --dark-light: #111114;
  --dark-card: #0e0e11;
  --text-white: #f0ece4;
  --text-gray: #8a8a95;
  --text-muted: #555560;
  --green: #2e9b37;
  --red: #e74c3c;
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.4), 0 6px 20px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 20px rgba(200, 168, 78, 0.15);
  --transition: all ease-in-out 0.3s;
  --font-body: 'Bricolage Grotesque', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-logo: 'Dancing Script', cursive;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Subtle noise texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAVBAR ============ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: var(--font-logo);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.nav-info {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.nav-info-item i {
  color: var(--gold);
  margin-right: 6px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
}

.nav-links a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
  transform: scale(1.05);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition);
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 99;
  padding: 90px 24px 30px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: top 0.4s ease;
}

.mobile-nav.active {
  top: 0;
}

.mobile-nav-link {
  color: var(--text-white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 12px;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--gold);
}

.mobile-nav-info {
  margin-top: 16px;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.mobile-nav-info i {
  color: var(--gold);
}

/* ============ HERO ============ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('images/Picsart_24-06-06_10-03-38-354-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.35));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
}

.hero-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 28px;
  animation: heroFadeIn 1s ease 0.35s both;
}

.hero-content h1 {
  font-family: var(--font-logo);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.1;
  animation: heroFadeIn 1s ease both;
}

.hero-content p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(240, 236, 228, 0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.3px;
  animation: heroFadeIn 1s ease 0.2s both;
}

.hero-content .btn-gold {
  animation: heroFadeIn 1s ease 0.4s both;
}

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

/* ============ BUTTONS ============ */
.btn-gold {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-gold:hover {
  background-position: 100% 100%;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(200, 168, 78, 0.35);
}

.btn-full {
  width: 100%;
}

.btn-gold:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
  border-radius: 20px;
}

/* ============ SECTION TITLES ============ */
.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 1px;
}

.section-title.light {
  color: var(--text-white);
}

.title-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 40px;
  border-radius: 2px;
}

.title-divider.small {
  margin: 12px auto 24px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* ============ SERVICES ============ */
#services {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 168, 78, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(200, 168, 78, 0.02) 0%, transparent 50%),
    var(--dark-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--dark-card);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.service-img-wrapper {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-img-wrapper {
  transform: scale(1.05);
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-price {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 8px 28px;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ============ HOURS ============ */
#hours {
  position: relative;
  padding: 100px 0;
  background-image: url('images/Picsart_24-06-06_10-03-38-354-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hours-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5));
}

.hours-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hours-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hour-box {
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 24px 20px;
  min-width: 130px;
  text-align: center;
  transition: var(--transition);
  background: rgba(0, 0, 0, 0.3);
}

.hour-box:hover {
  transform: translateY(-15px);
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.5);
}

.hour-box.today {
  border-color: var(--green);
  border-width: 3px;
  background: rgba(46, 155, 55, 0.1);
}

.hour-box.closed {
  opacity: 0.5;
}

.hour-box h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-white);
}

.hour-box p {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* ============ BOOKING ============ */
#booking {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 168, 78, 0.04) 0%, transparent 60%),
    var(--dark-light);
}

/* Day Picker */
.day-picker-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.day-picker-arrow {
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.day-picker-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 168, 78, 0.1);
}

.day-picker {
  display: flex;
  gap: 10px;
  overflow: hidden;
  flex: 1;
  justify-content: center;
}

.day-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  min-width: 80px;
  flex: 1;
  max-width: 110px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  color: var(--text-white);
  gap: 4px;
}

.day-card:hover {
  border-color: var(--gold);
  background: rgba(200, 168, 78, 0.08);
  transform: translateY(-4px);
}

.day-card.today {
  border-color: var(--green);
  background: rgba(46, 155, 55, 0.08);
}

.day-card.today:hover {
  border-color: var(--gold);
}

.day-card.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(200, 168, 78, 0.3);
}

.day-card.selected .day-card-name,
.day-card.selected .day-card-month {
  color: var(--dark);
  opacity: 0.7;
}

.day-card-name {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray);
}

.day-card-number {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.day-card-month {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-gray);
}

/* Slots Section */
.slots-section-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.slots-section-hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  margin-top: -12px;
}

/* Slot animate in */
.slot-animate {
  animation: slotFadeIn 0.3s ease both;
}

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

/* Booking Form Card (inline, not modal) */
.booking-form-card {
  max-width: 440px;
  margin: 40px auto 0;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  animation: slideUp 0.3s ease;
}

.booking-form-card h3 {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

/* ============ MODALS ============ */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px;
  max-width: 480px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow);
  animation: slideUp 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-gray);
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-white);
  transform: scale(1.1);
}

.modal-content h3 {
  font-size: 1.4rem;
  text-align: center;
  color: var(--text-white);
}

.slot-info {
  text-align: center;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.modal-success {
  text-align: center;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--green);
  margin-bottom: 16px;
}

.modal-success h3 {
  color: var(--green);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.modal-success p {
  color: var(--text-gray);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ============ DRUM TIME PICKER ============ */

/* Loading state */
.slots-loading {
  text-align: center;
  color: var(--text-gray);
  padding: 32px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.slots-loading .spinner {
  border-color: rgba(200, 168, 78, 0.2);
  border-top-color: var(--gold);
}

/* Empty / all booked state */
.slots-empty {
  text-align: center;
  padding: 48px 24px;
  animation: slotFadeIn 0.4s ease both;
}

.slots-empty-icon {
  font-size: 2.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  opacity: 0.6;
}

.slots-empty-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
}

.slots-empty-sub {
  color: var(--text-gray);
  font-size: 0.9rem;
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Drum picker container */
.drum-picker {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  animation: slotFadeIn 0.4s ease both;
}

/* Center highlight bar */
.drum-highlight {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(200, 168, 78, 0.08);
  border-top: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
}

/* Gradient fade masks */
.drum-mask {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
}

.drum-mask-top {
  top: 0;
  background: linear-gradient(to bottom, var(--dark-card) 0%, rgba(14, 14, 17, 0.85) 40%, transparent 100%);
}

.drum-mask-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--dark-card) 0%, rgba(14, 14, 17, 0.85) 40%, transparent 100%);
}

/* Scrollable track */
.drum-scroll {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.drum-scroll::-webkit-scrollbar {
  display: none;
}

/* Individual time item */
.drum-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  scroll-snap-align: start;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.drum-item-time {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-gray);
  transition: all 0.25s ease;
  letter-spacing: 1px;
}

/* Active/centered item */
.drum-item-active .drum-item-time {
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(200, 168, 78, 0.3);
}

/* Booked items */
.drum-item-booked {
  cursor: not-allowed;
}

.drum-item-booked .drum-item-time {
  color: var(--text-muted);
  opacity: 0.4;
  text-decoration: line-through;
  text-decoration-color: rgba(231, 76, 60, 0.5);
}

.drum-item-booked.drum-item-active .drum-item-time {
  color: var(--red);
  opacity: 0.7;
  font-size: 1.5rem;
  text-shadow: none;
}

/* "Zauzeto" badge */
.drum-item-badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  background: rgba(231, 76, 60, 0.12);
  padding: 3px 10px;
  border-radius: 10px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.drum-item-active .drum-item-badge {
  opacity: 1;
}

/* Status bar below picker */
.drum-status {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 28px;
  transition: all 0.3s ease;
}

.drum-status-free {
  color: var(--green);
}

.drum-status-free i {
  font-size: 1rem;
}

.drum-status-booked {
  color: var(--red);
  opacity: 0.7;
}

.drum-status-booked i {
  font-size: 0.85rem;
}

/* Confirm button */
.drum-confirm-btn {
  display: block;
  max-width: 320px;
  margin: 16px auto 0;
  animation: slotFadeIn 0.3s ease both;
}

/* ============ FORM ============ */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-gray);
}

.form-group label i {
  color: var(--gold);
  margin-right: 6px;
  width: 16px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  transition: var(--transition);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(200, 168, 78, 0.05);
}

.form-group select option {
  background: var(--dark-card);
  color: var(--text-white);
}

/* ============ FOOTER ============ */
footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0 24px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-brand {
  text-align: center;
  margin-bottom: 20px;
}

.footer-logo {
  font-family: var(--font-logo);
  font-size: 2rem;
  color: var(--gold);
}

.footer-brand p {
  color: var(--text-gray);
  margin-top: 8px;
  font-size: 0.9rem;
}

.footer-contact {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-contact p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--gold);
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.admin-link {
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  font-size: 0.78rem;
  transition: var(--transition);
}

.admin-link:hover {
  color: var(--text-gray);
}

/* ============ LOADING SPINNER ============ */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(10, 10, 10, 0.3);
  border-top-color: var(--dark);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .nav-info {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

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

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

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .service-card {
    padding: 32px 20px;
  }

  .service-img-wrapper {
    width: 150px;
    height: 150px;
  }

  .hours-grid {
    gap: 10px;
  }

  .hour-box {
    min-width: 100px;
    padding: 16px 14px;
  }

  #services,
  #hours,
  #booking {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .modal-content {
    padding: 28px 20px;
    margin: 10px;
  }

  .drum-picker {
    max-width: 280px;
  }

  .drum-item-time {
    font-size: 1.15rem;
  }

  .drum-item-active .drum-item-time {
    font-size: 1.4rem;
  }

  .drum-confirm-btn {
    max-width: 280px;
  }

  .day-picker-wrapper {
    gap: 8px;
  }

  .day-card {
    min-width: 60px;
    padding: 12px 8px;
  }

  .day-card-number {
    font-size: 1.3rem;
  }

  .day-picker-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .booking-form-card {
    padding: 24px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 12px;
  }

  /* Disable parallax on mobile (performance) */
  #hero,
  #hours {
    background-attachment: scroll;
  }
}

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

  .hour-box {
    min-width: 85px;
    padding: 12px 10px;
  }

  .hour-box h4 {
    font-size: 0.8rem;
  }

  .hour-box p {
    font-size: 0.75rem;
  }
}

/* ============ ADMIN STYLES ============ */
.admin-body {
  background: var(--dark);
  min-height: 100vh;
}

.admin-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.login-box {
  max-width: 420px;
  margin: 120px auto;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}

.login-box h2 {
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.login-box .login-subtitle {
  color: var(--text-gray);
  margin-bottom: 28px;
  font-size: 0.9rem;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-header h2 {
  font-size: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-card .number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-card .label {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-top: 4px;
}

.filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-bar select,
.filter-bar input {
  padding: 10px 14px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--dark-card);
  color: var(--text-white);
}

.filter-bar select:focus,
.filter-bar input:focus {
  outline: none;
  border-color: var(--gold);
}

.btn-outline {
  padding: 10px 20px;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.booking-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-item {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 18px 24px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-info {
  flex: 1;
  min-width: 200px;
}

.booking-info .name {
  font-weight: 600;
  font-size: 1.05rem;
}

.booking-info .details {
  color: var(--text-gray);
  font-size: 0.88rem;
  margin-top: 4px;
}

.booking-actions {
  display: flex;
  gap: 8px;
}

.status-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 10px;
}

.status-badge.pending {
  background: rgba(243, 156, 18, 0.15);
  color: #f39c12;
}

.status-badge.confirmed {
  background: rgba(46, 155, 55, 0.15);
  color: var(--green);
}

.status-badge.cancelled {
  background: rgba(231, 76, 60, 0.15);
  color: var(--red);
}

.btn-confirm {
  background: var(--green);
  color: white;
  border: none;
  cursor: pointer;
}

.btn-confirm:hover {
  background: #249a3c;
}

.btn-cancel {
  background: var(--red);
  color: white;
  border: none;
  cursor: pointer;
}

.btn-cancel:hover {
  background: #c0392b;
}

.empty-state {
  text-align: center;
  padding: 48px;
  color: var(--text-gray);
  font-size: 1rem;
}
