/* ---- FONTS LOADED IN HTML ---- */

@font-face {
  font-family: 'Brittany Signature';
  src: url('fonts/brittany_signature/BrittanySignature.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Aston Script';
  src: url('fonts/Aston Script.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Adelia';
  src: url('fonts/adelia_3/adelia.ttf') format('truetype');
  font-display: swap;
}

:root {
  --bg: #0d0706;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-strong: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-bright: rgba(255, 255, 255, 0.15);
  --text: #fffaf5;
  --text-muted: rgba(255, 250, 245, 0.6);
  --text-dim: rgba(255, 250, 245, 0.35);

  /* Summer Sunset Palette */
  --accent: #ff7e5f;
  /* Sunset Orange */
  --accent2: #feb47b;
  /* Peach */
  --accent3: #ff6a88;
  /* Soft Pink */
  --accent4: #ff99ac;
  /* Light Pink */
  --accent-warm: #ffcc70;
  /* Warm Yellow */

  --glow-orange: rgba(255, 126, 95, 0.2);
  --glow-pink: rgba(255, 106, 136, 0.2);

  --font-script: 'Brittany Signature', cursive;
  --font-logo: 'Adelia', cursive;
  --font-display: 'Montserrat', sans-serif;
  --font-ui: 'Montserrat', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 4px;
  --radius-sm: 2px;

  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

/* ---- BACKGROUND SLIDER ---- */
.bg-slider {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 2s ease-in-out, transform 10s linear;
  filter: brightness(0.35) saturate(1.1);
}

.bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 7, 6, 0.3), rgba(13, 7, 6, 0.7));
  z-index: 1;
}

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

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 7, 6, 0.2);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 80px;
  animation: slideDown 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.5s ease;
}

.brand-name {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  padding: 10px 0;
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.9;
}

.site-header:hover .brand-name {
  opacity: 1;
  letter-spacing: 0.45em;
  color: var(--accent2);
}

.main-nav {
  display: flex;
  gap: 15px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
}

.site-header:hover {
  background: rgba(13, 7, 6, 0.35);
  padding-bottom: 24px;
}

.site-header:hover .main-nav {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  margin-top: 15px;
  max-height: 100px;
}

.main-nav a {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: var(--glass);
  border-color: var(--glass-border-bright);
}

/* ---- HERO ---- */
.hero-section {
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
  position: relative;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 24px;
  animation: fadeInUp 1s 0.2s both;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent2);
  opacity: 0.3;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.2;
  margin-bottom: 15px;
  animation: fadeInUp 1s 0.4s both;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
}

.hero-title .script-text {
  font-family: var(--font-script);
  display: block;
  font-size: 1.25em;
  background: linear-gradient(135deg, var(--accent), var(--accent3), var(--accent-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: none;
  font-weight: normal;
  margin-top: -0.55em;
  /* Even more overlap as requested */
  letter-spacing: 0;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));

  /* Fix clipping for script flourishes */
  padding: 60px 80px;
  margin: -0.55em -80px 0;
  overflow: visible;
  line-height: 1.4;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
  animation: fadeInUp 1s 0.6s both;
  font-family: var(--font-ui);
}

.hero-actions {
  display: flex;
  gap: 15px;
  animation: fadeInUp 1s 0.8s both;
}

/* ---- BUTTONS ---- */
.button {
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  color: white;
  border: none;
  box-shadow: 0 8px 15px -5px var(--glow-orange);
}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -8px var(--glow-orange);
}

.button-secondary {
  background: var(--glass);
  color: white;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  background: var(--glass-strong);
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* ---- STATS ---- */
.hero-stats {
  display: flex;
  gap: 15px;
  margin-top: 60px;
  animation: fadeInUp 1.2s 1s both;
}

.stat-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px 30px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  transform: translateY(20px);
}

.stat-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:hover {
  background: var(--glass-strong);
  border-color: var(--glass-border-bright);
  transform: translateY(-5px);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  display: block;
  color: var(--accent2);
  line-height: 1;
  font-weight: 700;
}

.stat-label {
  font-size: 0.65rem;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-top: 6px;
}

/* ---- SECTIONS ---- */
.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent3);
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
}

/* ---- CARDS ---- */
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card,
.contact-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
  transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  transform: translateY(30px);
}

.about-card.revealed,
.contact-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.about-card:hover,
.contact-card:hover {
  transform: translateY(-10px);
  background: var(--glass-strong);
  border-color: var(--accent);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.about-card h3,
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--accent2);
  font-weight: 600;
}

.about-card p,
.contact-card p {
  font-size: 0.9rem;
  font-family: var(--font-ui);
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--glass-border);
  transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  opacity: 0;
  transform: scale(0.9);
}

.gallery-item.revealed {
  opacity: 1;
  transform: scale(1);
}

.gallery-item:hover {
  transform: scale(1.03);
  border-color: var(--accent2);
}

/* ---- ROOMS ---- */
.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.room-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: 0.4s;
}

/* ---- BOOKING PANEL ---- */
.booking-panel {
  margin-top: 60px;
  background: var(--glass-strong);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border-bright);
  border-radius: var(--radius);
  padding: 36px;
}

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 7, 6, 0.85);
}

.lightbox-content {
  position: relative;
  z-index: 10;
  max-width: 90vw;
  max-height: 85vh;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
  transform: scale(1) translateY(0);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--glass-border-bright);
  transition: opacity 0.3s ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 20;
  background: var(--glass-strong);
  border: 1px solid var(--glass-border-bright);
  color: white;
  font-size: 1.5rem;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.lightbox-close {
  top: 40px;
  right: 40px;
}

.lightbox-prev {
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  border-color: white;
  transform: scale(1.1);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ---- FOOTER ---- */
.site-footer {
  background: rgba(13, 7, 6, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 80px 40px 40px;
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .brand-name {
  padding: 0;
  margin-bottom: 20px;
  display: inline-block;
  opacity: 1;
  font-size: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 320px;
  line-height: 1.8;
  font-family: var(--font-ui);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent2);
  margin-bottom: 30px;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-family: var(--font-ui);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(8px);
}

.footer-contact p {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-family: var(--font-ui);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.65rem;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.footer-bottom a {
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: var(--accent3);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes orbMove {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(60px, 30px) rotate(10deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .lightbox-prev,
  .lightbox-next {
    bottom: 40px;
    top: auto;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 60px);
  }

  .lightbox-next {
    right: calc(50% - 60px);
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .about-grid,
  .contact-grid,
  .room-grid,
  .booking-panel-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
  }
}

/* ---- BOOKING SYSTEM ---- */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

.booking-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-blur {
  position: absolute;
  inset: 0;
  background: rgba(13, 7, 6, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.modal-window {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 800px;
  background: #1a1412;
  border: 1px solid var(--glass-border-bright);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
  transform: translateY(30px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.booking-modal.active .modal-window {
  transform: translateY(0);
}

.modal-header {
  padding: 24px 30px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1;
}

.modal-close:hover {
  color: var(--accent);
}

.modal-body {
  padding: 30px;
  max-height: 75vh;
  overflow-y: auto;
}

.modal-footer {
  padding: 24px 30px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  background: rgba(255, 255, 255, 0.02);
}

/* Room Cards Grid */
.room-vizytowka {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.room-vizytowka:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  background: var(--glass-strong);
}

.room-thumb {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.room-price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  color: white;
  padding: 6px 16px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.room-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.room-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #fff;
  text-transform: uppercase;
}

.room-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Modal Content Parts */
.modal-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.gallery-main {
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

.gallery-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.gallery-side-item {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

.modal-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
  background: var(--glass);
  padding: 20px;
  border-radius: var(--radius);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.feature-icon {
  color: var(--accent2);
}

/* Regular Config */
.regular-config {
  margin-bottom: 30px;
  padding: 20px;
  background: var(--glow-orange);
  border-radius: var(--radius);
}

.regular-config label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent2);
  margin-bottom: 10px;
}

.regular-config select {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border-bright);
  color: white;
  padding: 12px;
  border-radius: var(--radius-sm);
  outline: none;
}

/* Date Picker */
.calendar-container {
  padding: 10px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.calendar-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: white;
}

.calendar-nav {
  display: flex;
  gap: 10px;
}

.cal-nav-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: white;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}

.cal-day-header {
  font-size: 0.65rem;
  color: var(--accent2);
  font-weight: 700;
  padding: 10px 0;
  text-transform: uppercase;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: 0.2s;
  border: 1px solid transparent;
}

.cal-day:not(.empty):not(.disabled):hover {
  background: var(--glass-strong);
  color: white;
  border-color: var(--accent);
}

.cal-day.disabled {
  opacity: 0.2;
  cursor: default;
}

.cal-day.selected {
  background: var(--accent) !important;
  color: white !important;
  font-weight: 700;
}

.cal-day.in-range {
  background: rgba(255, 126, 95, 0.15);
  color: white;
}

/* Personal Info Form */
.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  color: white;
  transition: 0.3s;
  font-size: 0.9rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.cash-info {
  background: rgba(255, 106, 136, 0.1);
  border-left: 3px solid var(--accent3);
  padding: 20px 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 30px;
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.6;
}

/* Processing View */
.processing-view {
  text-align: center;
  padding: 80px 40px;
}

.loader {
  width: 80px;
  height: 80px;
  border: 3px solid var(--glass-border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 40px;
  animation: spin 1s linear infinite;
}

.processing-view h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: white;
}

.processing-view p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.error-view {
  text-align: center;
  padding: 60px 40px;
}

.error-icon {
  font-size: 5rem;
  margin-bottom: 30px;
  display: block;
  filter: drop-shadow(0 10px 20px var(--glow-pink));
}

.error-view h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent3);
  margin-bottom: 16px;
}

.error-view p {
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto;
}


/* Price Display in Calendar */
.booking-summary {
  margin-top: 30px;
  padding: 20px 24px;
  background: var(--glass-strong);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border-bright);
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.summary-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.summary-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.summary-value {
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: var(--accent-warm);
  font-weight: 800;
}

/* ---- CONTACT FORM ---- */
.contact-form-container {
  max-width: 800px;
  margin: 0 auto 60px;
  background: var(--glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border-bright);
  border-radius: var(--radius);
  padding: 40px;
  animation: fadeInUp 0.8s ease;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent2);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: white;
  font-family: var(--font-body);
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  margin-top: 10px;
  font-size: 0.85rem;
  padding: 12px;
  border-radius: var(--radius-sm);
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(46, 213, 115, 0.1);
  color: #2ed573;
  border: 1px solid rgba(46, 213, 115, 0.2);
}

.form-status.error {
  display: block;
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
  border: 1px solid rgba(255, 71, 87, 0.2);
}

@media (max-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* ---- MOBILE REFINEMENTS ---- */
@media (max-width: 768px) {

  /* Header always visible on mobile */
  .site-header {
    background: rgba(13, 7, 6, 0.8) !important;
    backdrop-filter: blur(10px);
    padding-bottom: 20px !important;
  }

  .brand-name {
    opacity: 1 !important;
    letter-spacing: 0.2em !important;
    font-size: 0.6rem !important;
    margin-bottom: 10px;
  }

  .main-nav {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    max-height: 500px !important;
    margin-top: 15px !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .main-nav a {
    padding: 6px 12px;
    font-size: 0.6rem;
  }

  /* Lightbox buttons on mobile */
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 100;
  }
}

/* ---- HERO & STATS MOBILE FIXES ---- */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem) !important;
  }

  .hero-actions {
    flex-direction: column !important;
    gap: 15px !important;
    width: 100%;
    padding: 0 20px;
  }

  .hero-actions .button {
    width: 100% !important;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
    padding: 0 20px;
  }

  .stat-card {
    width: 100% !important;
    padding: 15px !important;
  }

  .stat-num {
    font-size: 1.8rem !important;
  }
}

/* Fix for overlapping section content */
@media (max-width: 480px) {
  .section {
    padding: 60px 20px !important;
  }

  .section-header h2 {
    font-size: 2.2rem !important;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ---- CALENDAR NAV STYLES ---- */
.cal-nav-btn {
  width: 36px;
  height: 36px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  /* Square with slight rounding */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.2rem;
}

.cal-nav-btn:hover {
  background: var(--glass-strong);
  border-color: var(--accent);
  color: var(--accent);
}

.cal-day.empty {
  pointer-events: none;
  background: transparent;
  border: none;
}

/* ---- SLOT MACHINE EASTER EGG ---- */
.hidden-link {
  font-size: 0.85rem;
  color: var(--accent2);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s;
  cursor: pointer;
  display: inline;
  margin-left: 5px;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.hidden-link:hover {
  opacity: 1;
  border-bottom-color: var(--accent);
}

.slot-machine-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 60px 40px;
  background: radial-gradient(circle at center, rgba(42, 31, 28, 0.8) 0%, rgba(26, 20, 18, 0) 70%);
  min-height: 400px;
  justify-content: center;
}

.slots-wrapper {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #000;
  border: 4px solid #333;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 10px var(--accent);
}

.slot {
  width: 100px;
  height: 120px;
  background: #251d1a;
  border: 2px solid #444;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.slot-strip {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  transition: top 3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.slot-item {
  height: 120px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-message {
  text-align: center;
  font-family: var(--font-ui);
  min-height: 1.5em;
}

.slot-win {
  color: #4ade80;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.cash-info.win {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid #4ade80;
  color: #4ade80;
}

.slot-intro {
  text-align: center;
  max-width: 400px;
  line-height: 1.6;
}

.slot-intro h3 {
  color: var(--accent2);
  margin-bottom: 15px;
}