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

/* ── INTRO OVERLAY ── */
#siteIntro {
  position: fixed; inset: 0; z-index: 9999;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  animation: introFadeOut 0.7s ease forwards;
  animation-delay: 2.8s;
}
#siteIntro.skip-now {
  animation: introFadeOut 0.4s ease forwards;
  animation-delay: 0s;
}

.intro-flicker {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(140,0,0,0.18) 0%, transparent 70%);
  animation: introFlicker 2.8s ease-in-out forwards;
}

.intro-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 1.4rem;
  text-align: center; padding: 2rem;
}

.intro-logo {
  width: min(380px, 75vw);
  opacity: 0;
  animation: introLogo 1s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: 0.2s;
  filter: drop-shadow(0 0 0px rgba(255,230,0,0));
}

.intro-tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.85rem, 3vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--yellow);
  opacity: 0;
  animation: introTagline 0.8s ease forwards;
  animation-delay: 1.1s;
}

.intro-skip {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  opacity: 0;
  animation: introTagline 0.6s ease forwards;
  animation-delay: 1.8s;
}

@keyframes introLogo {
  from { opacity: 0; transform: scale(0.88); filter: drop-shadow(0 0 0px rgba(255,230,0,0)); }
  to   { opacity: 1; transform: scale(1);    filter: drop-shadow(0 0 40px rgba(255,230,0,0.55)); }
}
@keyframes introTagline {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes introFlicker {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  12%  { opacity: 0.3; }
  14%  { opacity: 1; }
  60%  { opacity: 1; }
  100% { opacity: 0.6; }
}
@keyframes introFadeOut {
  from { opacity: 1; pointer-events: all; }
  to   { opacity: 0; pointer-events: none; }
}

:root {
  --yellow: #FFE600;
  --yellow-light: #FFF176;
  --black: #000000;
  --surface: #0d0d0d;
  --surface2: #1a1a1a;
  --text: #FFFFFF;
  --muted: #aaaaaa;
  --red: #cc0000;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Raleway', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--text); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: var(--font-heading); letter-spacing: 0.05em; }
a { color: var(--yellow); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--yellow-light); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--yellow); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; padding: 0.85rem 2.2rem;
  background: var(--yellow); color: #000;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--yellow-light); color: #000; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,230,0,0.4); }
.btn-outline {
  display: inline-block; padding: 0.85rem 2.2rem;
  background: transparent; color: var(--yellow);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--yellow); cursor: pointer;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--yellow); color: #000; }

/* ── SECTION LABELS ── */
.section-tagline { text-align: center; font-size: 0.78rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--yellow); margin-bottom: 0.6rem; }
.section-title { font-size: clamp(1.8rem,4vw,2.6rem); color: var(--yellow); text-align: center; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.12em; }
.section-subtitle { text-align: center; color: var(--muted); font-size: 0.95rem; margin-bottom: 3rem; font-weight: 300; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 0.5rem 0; transition: all 0.4s; }
.navbar.scrolled { background: rgba(0,0,0,0.97); border-bottom: 1px solid rgba(255,230,0,0.2); backdrop-filter: blur(12px); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 60px; width: auto; object-fit: contain; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { font-family: var(--font-body); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--yellow); transition: width 0.3s; }
.nav-links a:hover { color: var(--yellow); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-size: 0.75rem; padding: 0.6rem 1.5rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--yellow); transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 860px) {
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: 260px; background: #0d0d0d; flex-direction: column; justify-content: center; align-items: center; gap: 2.5rem; border-left: 1px solid rgba(255,230,0,0.15); transition: right 0.4s; }
  .nav-links.open { right: 0; }
}

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/terrifier.jpg'), url('images/ring.jpg'), url('images/coffin.jpg'), url('images/saw.jpg');
  background-size: 50% 50%;
  background-position: top left, top right, bottom left, bottom right;
  background-repeat: no-repeat;
  filter: brightness(0.18) saturate(1.4) blur(1px);
}
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(150,0,0,0.15) 0%, transparent 65%), linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.9) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 860px; padding: 7rem 2rem 2rem; display: flex; flex-direction: column; align-items: center; }
.hero-tagline { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--yellow); margin-bottom: 2rem; }
.hero-logo-wrap { margin-bottom: 2rem; animation: logoPulse 4s ease-in-out infinite; }
.hero-logo { width: min(420px,80vw); height: auto; object-fit: contain; display: block; margin: 0 auto; }
@keyframes logoPulse {
  0%,100% { filter: drop-shadow(0 0 28px rgba(255,230,0,0.4)); }
  50%      { filter: drop-shadow(0 0 60px rgba(255,230,0,0.75)); }
}
.hero-description { font-size: 1.05rem; color: #cccccc; max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.85; font-weight: 300; }
.hero-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 2.5rem; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--yellow); line-height: 1; }
.stat-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.35rem; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,230,0,0.25); }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-indicator span { display: block; width: 2px; height: 50px; background: linear-gradient(to bottom, var(--yellow), transparent); margin: 0 auto; animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.3; transform: scaleY(0.5); } }

/* ── ROOMS ── */
.services { padding: 7rem 2rem; background: var(--black); position: relative; }
.services::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, var(--yellow), transparent); }
.services-container { max-width: 1200px; margin: 0 auto; }

.rooms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.room-card {
  flex: 0 0 calc(33.33% - 1rem);
  max-width: calc(33.33% - 1rem);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid rgba(255,230,0,0.1);
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
@media (max-width: 960px) { .room-card { flex: 0 0 calc(50% - 0.75rem); max-width: calc(50% - 0.75rem); } }
@media (max-width: 580px) { .room-card { flex: 0 0 100%; max-width: 100%; } }

.room-card:hover { border-color: var(--yellow); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.85), 0 0 30px rgba(255,230,0,0.12); }
.room-terrifier { background: radial-gradient(ellipse at 50% 20%, #3d0000 0%, #0d0000 45%, #000 100%); }
.room-ring      { background: radial-gradient(ellipse at 50% 20%, #001e33 0%, #000d1a 45%, #000 100%); }
.room-coffin    { background: radial-gradient(ellipse at 50% 20%, #1a1100 0%, #0d0800 45%, #000 100%); }
.room-saw       { background: radial-gradient(ellipse at 50% 20%, #151500 0%, #0a0a00 45%, #000 100%); }
.room-haunted   { background: radial-gradient(ellipse at 50% 20%, #0a1a10 0%, #050d08 45%, #000 100%); }

.room-poster { position: absolute; inset: 0; background-size: cover; background-position: center top; background-repeat: no-repeat; transition: transform 0.6s ease; }
.room-card:hover .room-poster { transform: scale(1.06); }
.room-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.15) 70%, transparent 100%); transition: background 0.4s; }
.room-card:hover .room-overlay { background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.28) 80%, transparent 100%); }
.room-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.8rem 1.6rem; z-index: 2; }
.room-meta { display: flex; gap: 0.7rem; align-items: center; margin-bottom: 0.7rem; flex-wrap: wrap; }
.difficulty { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.22rem 0.65rem; }
.difficulty.easy   { background: rgba(76,175,80,0.2);  color: #81c784; border: 1px solid rgba(76,175,80,0.4); }
.difficulty.medium { background: rgba(255,193,7,0.2);  color: #ffd54f; border: 1px solid rgba(255,193,7,0.4); }
.difficulty.hard   { background: rgba(220,50,50,0.2);  color: #ef9a9a; border: 1px solid rgba(220,50,50,0.4); }
.difficulty.expert { background: rgba(255,230,0,0.12); color: var(--yellow); border: 1px solid rgba(255,230,0,0.4); }
.meta-item { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; gap: 0.3rem; }
.meta-item i { color: var(--yellow); font-size: 0.65rem; }
.room-title { font-size: clamp(1.2rem,2.5vw,1.8rem); font-weight: 900; color: var(--yellow); letter-spacing: 0.14em; text-transform: uppercase; text-shadow: 0 2px 16px rgba(0,0,0,0.9); margin-bottom: 0.6rem; }
.room-desc { font-size: 0.82rem; color: #cccccc; line-height: 1.65; margin-bottom: 1.2rem; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.room-btn { font-size: 0.75rem; padding: 0.6rem 1.6rem; clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%); }
.room-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--yellow); transform: scaleX(0); transition: transform 0.4s ease; z-index: 3; }
.room-card:hover::after { transform: scaleX(1); }

/* ── BOOKING CALENDAR ── */
.booking-section { padding: 7rem 2rem; background: var(--surface); position: relative; }
.booking-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, var(--yellow), transparent); }
.booking-container { max-width: 900px; margin: 0 auto; }

.calendar-wrap { background: rgba(0,0,0,0.5); border: 1px solid rgba(255,230,0,0.15); padding: 2rem; }

.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-month-label { font-family: var(--font-heading); font-size: 1.3rem; color: var(--yellow); letter-spacing: 0.1em; text-transform: uppercase; }
.cal-arrow { background: none; border: 1px solid rgba(255,230,0,0.3); color: var(--yellow); width: 38px; height: 38px; cursor: pointer; font-size: 0.9rem; transition: all 0.3s; }
.cal-arrow:hover { background: var(--yellow); color: #000; }
.cal-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

.cal-legend { display: flex; gap: 1.5rem; margin-bottom: 1.2rem; font-size: 0.75rem; color: var(--muted); align-items: center; }
.leg-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 0.3rem; }
.leg-available { background: #4caf50; }
.leg-partial   { background: var(--yellow); }
.leg-full      { background: #cc0000; }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { text-align: center; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 0.5rem 0; }
.cal-day {
  aspect-ratio: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: 1px solid transparent;
  position: relative; transition: all 0.25s;
  background: rgba(255,255,255,0.03);
  gap: 3px;
}
.cal-day:hover:not(.cal-past):not(.cal-empty) { border-color: var(--yellow); background: rgba(255,230,0,0.08); }
.cal-day.cal-selected { border-color: var(--yellow); background: rgba(255,230,0,0.12); color: var(--yellow); }
.cal-day.cal-today { color: var(--yellow); font-weight: 900; }
.cal-day.cal-past { opacity: 0.25; cursor: not-allowed; }
.cal-day.cal-empty { background: none; border: none; cursor: default; }
.cal-dot { width: 6px; height: 6px; border-radius: 50%; }
.cal-dot.dot-available { background: #4caf50; }
.cal-dot.dot-partial   { background: var(--yellow); }
.cal-dot.dot-full      { background: #cc0000; }

/* Time Picker Panel */
.slots-panel { margin-top: 2rem; }
.slots-date-label { font-family: var(--font-heading); font-size: 1.1rem; color: var(--yellow); margin-bottom: 1.5rem; letter-spacing: 0.08em; }

.time-picker-wrap { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; max-width: 360px; }
.time-picker-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; }
.time-picker-label i { color: var(--yellow); }
.time-picker-select {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,230,0,0.3);
  color: var(--text); padding: 0.85rem 2.5rem 0.85rem 1rem;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  outline: none; cursor: pointer; transition: border-color 0.3s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FFE600' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.time-picker-select:focus { border-color: var(--yellow); }
.time-picker-select option { background: #1a1a1a; }
.time-picker-note { font-size: 0.72rem; color: var(--muted); }

/* Room Availability Grid */
.avail-label { font-family: var(--font-heading); font-size: 1rem; color: var(--yellow); margin-bottom: 1.2rem; font-weight: 400; letter-spacing: 0.06em; }
.rooms-avail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; }
.avail-room-card {
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,230,0,0.12);
  padding: 1.2rem 1.4rem; display: flex; flex-direction: column; gap: 0.8rem;
  transition: border-color 0.3s;
}
.avail-room-card.available { border-color: rgba(76,175,80,0.3); }
.avail-room-card.taken     { border-color: rgba(200,0,0,0.2); opacity: 0.55; }
.avail-room-name { font-family: var(--font-heading); font-size: 0.92rem; color: var(--text); letter-spacing: 0.08em; text-transform: uppercase; }
.avail-status { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; display: flex; align-items: center; gap: 0.4rem; }
.avail-status.free { color: #81c784; }
.avail-status.busy { color: #ef9a9a; }
.avail-status i { font-size: 0.65rem; }
.avail-book-btn {
  padding: 0.5rem 0.9rem; font-size: 0.72rem; font-family: var(--font-body);
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--yellow); background: transparent; color: var(--yellow);
  cursor: pointer; transition: all 0.25s; text-align: center;
}
.avail-book-btn:hover { background: var(--yellow); color: #000; }
.avail-taken-until { font-size: 0.72rem; color: #ef9a9a; }
.avail-room-duration { font-size: 0.72rem; color: var(--muted); display: flex; align-items: center; gap: 0.4rem; }
.avail-room-duration i { color: var(--yellow); font-size: 0.65rem; }

/* ── CONTACT ── */
.contact { padding: 6rem 2rem; background: var(--black); position: relative; }
.contact::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, var(--yellow), transparent); }
.contact-container { max-width: 700px; margin: 0 auto; }
.contact-simple { display: flex; justify-content: center; }
.contact-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,230,0,0.12); padding: 3rem; text-align: center; width: 100%; }
.info-logo { margin-bottom: 1.5rem; }
.contact-logo-img { width: 150px; height: auto; margin: 0 auto; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; text-align: left; max-width: 320px; margin-left: auto; margin-right: auto; }
.contact-list li { display: flex; gap: 1rem; font-size: 0.88rem; color: var(--muted); line-height: 1.6; align-items: flex-start; }
.contact-list li i { color: var(--yellow); flex-shrink: 0; width: 14px; margin-top: 3px; }
.contact-list li a { color: var(--yellow); }
.contact-list li a:hover { color: var(--yellow-light); }
.social-links { display: flex; gap: 0.8rem; justify-content: center; }
.social-links a { width: 40px; height: 40px; border: 1px solid rgba(255,230,0,0.3); display: flex; align-items: center; justify-content: center; color: var(--yellow); font-size: 0.85rem; transition: all 0.3s; }
.social-links a:hover { background: var(--yellow); color: #000; border-color: var(--yellow); }

/* ── FOOTER ── */
.footer { background: #000; border-top: 2px solid rgba(255,230,0,0.15); padding: 3rem 2rem; }
.footer-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.footer-logo { width: 110px; height: auto; opacity: 0.9; }
.footer-brand p { font-size: 0.8rem; color: var(--muted); font-style: italic; }
.footer-links { display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--yellow); }
.footer-copy { font-size: 0.72rem; color: rgba(170,170,170,0.35); }

/* ── BOOKING MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(4px); }
.modal-overlay.open { display: flex; }
.modal-box { background: #0d0d0d; border: 1px solid rgba(255,230,0,0.25); width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto; position: relative; animation: modalIn 0.3s ease; }
@keyframes modalIn { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: var(--muted); font-size: 1.2rem; cursor: pointer; z-index: 2; transition: color 0.3s; }
.modal-close:hover { color: var(--yellow); }
.modal-header { padding: 1.8rem 2rem 0; }
.modal-header h2 { font-size: 1.4rem; color: var(--yellow); margin-bottom: 0.3rem; }
.modal-header p { font-size: 0.82rem; color: var(--muted); }
.modal-body { padding: 1.5rem 2rem 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,230,0,0.2);
  color: var(--text); padding: 0.75rem 1rem;
  font-family: var(--font-body); font-size: 0.88rem;
  outline: none; transition: border-color 0.3s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--yellow); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #555; }
.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 70px; }
.field-error { display: none; font-size: 0.75rem; color: #ef9a9a; margin-top: 0.3rem; }
.field-error::before { content: '⚠ '; }
.form-notice { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.5rem; }
.form-notice i { color: var(--yellow); }
.submit-btn { width: 100%; padding: 1rem; font-size: 0.9rem; letter-spacing: 0.15em; clip-path: none; }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

.booking-success, .booking-error { text-align: center; padding: 2.5rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.booking-success i { font-size: 3.5rem; color: #81c784; }
.booking-success h3 { font-size: 1.4rem; color: var(--yellow); }
.booking-success p { color: var(--muted); font-size: 0.88rem; }
.success-email { font-size: 0.8rem; color: #81c784 !important; }
.booking-error i { font-size: 3rem; color: #ef9a9a; }
.booking-error h3 { font-size: 1.2rem; color: #ef9a9a; }
.booking-error p { color: var(--muted); font-size: 0.88rem; }

/* ── ADMIN STYLES (used by admin.html) ── */
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--black); }
.admin-login-box { background: var(--surface); border: 1px solid rgba(255,230,0,0.2); padding: 3rem; width: 100%; max-width: 400px; text-align: center; }
.admin-login-box img { width: 120px; margin-bottom: 1.5rem; }
.admin-login-box h2 { color: var(--yellow); margin-bottom: 2rem; font-size: 1.2rem; }
.admin-login-box .form-group { text-align: left; margin-bottom: 1.2rem; }
.admin-dashboard { padding: 2rem; max-width: 1200px; margin: 0 auto; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,230,0,0.2); }
.admin-header h1 { color: var(--yellow); font-size: 1.5rem; }
.admin-filters { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.admin-filters select, .admin-filters input { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,230,0,0.2); color: var(--text); padding: 0.5rem 0.8rem; font-family: var(--font-body); font-size: 0.85rem; outline: none; }
.bookings-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.bookings-table th { background: rgba(255,230,0,0.1); color: var(--yellow); padding: 0.8rem 1rem; text-align: left; font-family: var(--font-heading); letter-spacing: 0.06em; border-bottom: 1px solid rgba(255,230,0,0.2); white-space: nowrap; }
.bookings-table td { padding: 0.8rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--muted); vertical-align: middle; }
.bookings-table tr:hover td { background: rgba(255,230,0,0.03); }
.status-badge { display: inline-block; padding: 0.2rem 0.6rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; }
.status-pending   { background: rgba(255,193,7,0.15); color: #ffd54f; border: 1px solid rgba(255,193,7,0.3); }
.status-confirmed { background: rgba(76,175,80,0.15); color: #81c784; border: 1px solid rgba(76,175,80,0.3); }
.status-cancelled { background: rgba(220,50,50,0.15); color: #ef9a9a; border: 1px solid rgba(220,50,50,0.3); }
.action-btn { background: none; border: 1px solid rgba(255,230,0,0.25); color: var(--yellow); padding: 0.3rem 0.7rem; font-size: 0.72rem; cursor: pointer; margin-right: 0.3rem; transition: all 0.2s; }
.action-btn:hover { background: var(--yellow); color: #000; }
.action-btn.danger { border-color: rgba(220,50,50,0.3); color: #ef9a9a; }
.action-btn.danger:hover { background: #cc0000; color: #fff; border-color: #cc0000; }
.admin-stats { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.admin-stat-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,230,0,0.12); padding: 1.2rem 1.8rem; flex: 1; min-width: 140px; }
.admin-stat-card .num { font-family: var(--font-heading); font-size: 2rem; color: var(--yellow); }
.admin-stat-card .lbl { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.empty-state { text-align: center; padding: 3rem; color: var(--muted); font-size: 0.9rem; }

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 480px) {

  /* Sections — reduce vertical padding */
  .services, .booking-section, .contact { padding: 4rem 1rem; }
  .hero-content { padding: 6rem 1.2rem 2rem; }

  /* Hero stats — stack into 2 rows */
  .hero-stats { gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .stat-number { font-size: 1.6rem; }

  /* Calendar — smaller text and dots to fit 7 columns */
  .calendar-wrap { padding: 1.2rem 0.8rem; }
  .cal-dow { font-size: 0.6rem; padding: 0.3rem 0; }
  .cal-day { font-size: 0.72rem; gap: 2px; }
  .cal-dot { width: 4px; height: 4px; }
  .cal-month-label { font-size: 1rem; }
  .cal-arrow { width: 32px; height: 32px; font-size: 0.8rem; }
  .cal-legend { font-size: 0.68rem; gap: 0.8rem; flex-wrap: wrap; }

  /* Time picker */
  .time-picker-wrap { max-width: 100%; }
  .time-picker-select { font-size: 0.92rem; }

  /* Room availability cards — single column */
  .rooms-avail-grid { grid-template-columns: 1fr; }

  /* Booking modal */
  .modal-box { margin: 0; max-height: 100vh; border-radius: 0; }
  .modal-header { padding: 1.2rem 1.2rem 0; }
  .modal-body { padding: 1.2rem; }
  .modal-header h2 { font-size: 1.1rem; }

  /* Contact card */
  .contact-card { padding: 2rem 1.2rem; }

  /* Footer links */
  .footer-links { gap: 1.2rem; }

  /* Section titles */
  .section-title { font-size: 1.5rem; }
}

@media (max-width: 360px) {
  .cal-dow { font-size: 0.55rem; }
  .cal-day { font-size: 0.65rem; }
  .hero-logo { width: 75vw; }
}
