/* ===================================================
   SundayCamp.pl â€” Premium Mobile-First CSS
   Palette: Cold Dark Green + Mustard Yellow
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* --- CSS Tokens --- */
:root {
  --green-900: #0f172a;
  /* deep blue slate */
  --green-800: #1e293b;
  --green-700: #334155;
  --green-600: #475569;
  --green-500: #64748b;
  --green-400: #94a3b8;
  --green-300: #cbd5e1;
  --green-glass: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(15, 23, 42, 0.15);
  --glass-highlight: rgba(15, 23, 42, 0.05);

  --yellow-main: #0f172a;
  /* dark slate main accent */
  --yellow-light: #1e293b;
  --yellow-dark: #000000;
  --yellow-glow: rgba(15, 23, 42, 0.1);

  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;

  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;

  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-glow: none;

  --transition-fast: 0.15s ease-out;
  --transition: 0.25s ease-out;
  --transition-slow: 0.4s ease-out;

  --font-sans: 'Inter', sans-serif;
  --font-display: 'Inter', sans-serif;

  --nav-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-sans);
  background: #ffffff;
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--green-400);
  border-radius: 0px;
  border: none;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green-600);
}

/* --- Typography --- */
.display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.title {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.body-lg {
  font-size: 1.1rem;
  line-height: 1.8;
}

.body {
  font-size: 1rem;
  line-height: 1.7;
}

.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

img {
  max-width: 100%;
  display: block;
  border-radius: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Text Gradients & Accents */
.accent {
  background: linear-gradient(135deg, var(--yellow-light), var(--yellow-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(245, 185, 39, 0.05);
  border: 1px solid rgba(245, 185, 39, 0.15);
  box-shadow: inset 0 0 10px rgba(245, 185, 39, 0.05);
  backdrop-filter: blur(10px);
}

.section-tag::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow-main);
  box-shadow: 0 0 8px var(--yellow-main);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 120px 0;
  position: relative;
  z-index: 10;
}

@media(max-width:768px) {
  section {
    padding: 80px 0;
  }
}

/* Admin Edit Mode */
[contenteditable="true"] {
  outline: 1px dashed transparent;
  transition: outline 0.2s;
}

[contenteditable="true"]:hover,
[contenteditable="true"]:focus {
  outline: 2px dashed var(--yellow-main);
}

/* Booking System Styles */
.booking__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .booking__grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.booking-services {
  margin: 1.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.booking-services h4 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.service-row label {
  flex: 1;
}

.service-row input[type="number"] {
  width: 80px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.5rem;
  background: var(--bg-card);
  color: var(--text-primary);
}

.booking-summary {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid var(--border-color);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.summary-line.total-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--yellow-main);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
}

/* Custom Forms & Steppers */
.stepper {
  display: flex;
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
}

.stepper-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.stepper-btn:hover {
  background: rgba(240, 180, 41, 0.1);
  color: var(--yellow-main);
}

.stepper input[type="number"] {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  -moz-appearance: textfield;
}

.stepper input[type="number"]::-webkit-outer-spin-button,
.stepper input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Flatpickr Visibility Fix */
.flatpickr-calendar {
  z-index: 999999 !important;
}

/* Cinematic Aesthetics Setup */
.glass,
.card,
.pricing__card,
.acc-card,
.contact-item,
.contact__form,
.admin-panel,
.map-container,
.booking__form,
.booking__info,
.booking-summary {
  border-radius: 2rem !important;
}

.btn {
  border-radius: 2rem !important;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.btn:hover {
  transform: scale(1.03) translateY(-1px);
}

.btn:hover::before {
  left: 0;
}

.btn>* {
  position: relative;
  z-index: 1;
}

a:not(.btn) {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

a:not(.btn):hover {
  transform: translateY(-1px);
}

/* Hero Video Background */
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.85;
}

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--nav-height);
  padding: 0.5rem 0;
  display: block;
  background: #ffffff;
  border-bottom: 2px solid var(--green-900);
  transition: var(--transition);
}

.nav.scrolled {
  background: #ffffff;
  border-bottom: 2px solid var(--green-900);
  padding: 0.25rem 0;
}

.nav.scrolled .nav__logo,
.nav.scrolled .nav__actions {
  display: none !important;
}

.nav.scrolled .nav__links {
  padding-bottom: 0;
}

.nav__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem 0;
  row-gap: 15px;
}

.nav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  order: 2;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.nav__logo strong {
  color: var(--yellow-main);
  font-weight: 800;
}

.nav__logo:hover {
  transform: scale(1.02);
}

.nav__logo-img {
  width: 70vw;
  max-width: 900px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: var(--transition-fast);
}

.nav__logo-sun {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  transition: var(--transition-fast);
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  order: 3;
  gap: 1.5rem;
  padding-bottom: 10px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yellow-main);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Nav Dropdown (Desktop) */
.nav__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__dropdown>a {
  padding-right: 0.5rem;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border: 2px solid var(--green-900);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  min-width: 240px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-out;
  z-index: 1000;
  list-style: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav__dropdown:hover .nav__dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-menu li {
  margin: 0;
  width: 100%;
}

.nav__dropdown-menu a {
  padding: 0.75rem 1.5rem !important;
  display: block;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: var(--text-secondary) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
  white-space: normal;
}

.nav__dropdown-menu a::after {
  display: none !important;
}

.nav__dropdown-menu li:last-child a {
  border-bottom: none;
}

.nav__dropdown-menu a:hover {
  background: rgba(15, 23, 42, 0.05);
  color: var(--yellow-main) !important;
  padding-left: 2rem !important;
}

.nav__chevron {
  font-size: 0.6em;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav__dropdown:hover .nav__chevron {
  transform: rotate(180deg);
}

/* Nav Dropdown (Mobile) */
.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  border-left: 2px solid var(--glass-highlight);
  gap: 0.75rem;
}

.mobile-dropdown-content.open {
  display: flex;
}

.mobile-sublink {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

.mobile-sublink:hover {
  color: var(--yellow-main);
}

.nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  order: 1;
  gap: 1rem;
}

.nav__social,
.nav__admin-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.nav__social::before,
.nav__admin-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--yellow-main);
  opacity: 0;
  transition: opacity var(--transition);
}

.nav__social svg,
.nav__admin-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  z-index: 1;
  transition: var(--transition);
}

.nav__social:hover::before,
.nav__admin-btn:hover::before {
  opacity: 1;
}

.nav__social:hover svg,
.nav__admin-btn:hover svg {
  color: var(--green-900);
}

/* Hamburger Menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid transparent;
  transition: var(--transition);
}

.nav__hamburger:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--yellow-main);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--yellow-main);
}

@media(max-width:960px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}

.nav__mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(4, 9, 6, 0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateY(-120%);
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.nav__mobile.open {
  transform: translateY(0);
}

.nav__mobile a {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition);
}

.nav__mobile a:hover {
  color: var(--green-900);
  background: var(--yellow-main);
  transform: translateX(10px);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: #ffffff;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
  pointer-events: none;
  z-index: 4;
  opacity: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #f8fafc;
  z-index: 0;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  /* Expected to be provided or fallback to color */
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
  mix-blend-mode: multiply;
  filter: grayscale(100%) contrast(1.2);
}

@keyframes bgZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero__overlay {
  display: none;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  animation: blobFloat 15s ease-in-out infinite alternate;
}

.hero__blob--1 {
  display: none;
}

.hero__blob--2 {
  display: none;
}

.hero__blob--3 {
  display: none;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, -30px) scale(1.1);
  }

  100% {
    transform: translate(-30px, 40px) scale(0.9);
  }
}

.hero__content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-900);
  border: none;
  border-radius: 0;
  padding: 8px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2rem;
  animation: fadeUp 1s cubic-bezier(0.2, 1, 0.2, 1) 0.1s both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: #ffffff;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.4;
    transform: scale(1.3)
  }
}

.hero__title {
  margin-bottom: 1.5rem;
  animation: fadeUp 1s cubic-bezier(0.2, 1, 0.2, 1) 0.2s both;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--yellow-light), var(--yellow-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero__sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  animation: fadeUp 1s cubic-bezier(0.2, 1, 0.2, 1) 0.3s both;
}

.hero__cta-row {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s cubic-bezier(0.2, 1, 0.2, 1) 0.4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn--primary {
  background: var(--green-900);
  color: #ffffff;
  border: 2px solid var(--green-900);
}

.btn--primary:hover {
  background: #ffffff;
  color: var(--green-900);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--green-900);
  border: 2px solid var(--green-900);
}

.btn--outline:hover {
  background: var(--green-900);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1.5s ease 1s both;
}

.hero__scroll-line {
  width: 2px;
  height: 60px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--yellow-main);
  animation: scrollDrop 2s cubic-bezier(0.6, 0.05, 0.4, 1) infinite;
}

@keyframes scrollDrop {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(200%);
  }
}

/* ===================================================
   STATS BAR
   =================================================== */
.stats {
  padding: 0;
  position: relative;
  z-index: 20;
  background: #ffffff;
  border-top: 2px solid var(--green-900);
  border-bottom: 2px solid var(--green-900);
  margin-top: -1px;
}

.stats__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 2px solid var(--green-900);
  transition: var(--transition);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover::after {
  opacity: 0;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 2;
  text-shadow: none;
}

.stat-item:hover .stat-item__number {
  color: var(--green-900);
}

.stat-item__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}

/* ===================================================
.glass {
  background: #ffffff;
  border: 2px solid var(--green-900);
  border-radius: 0;
  box-shadow: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.glass::before {
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #ffffff;
  opacity: 1;
}

.glass--hover {
  transition: var(--transition);
}

.glass--hover:hover {
  border-color: var(--green-900);
  box-shadow: 4px 4px 0px var(--green-900);
  transform: translateY(-4px);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header .headline {
  margin-bottom: 1.25rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* ===================================================
   O NAS (ABOUT)
   =================================================== */
/* ===================================================
   O NAS (ABOUT)
   =================================================== */
#onas {
  background: #ffffff;
  position: relative;
}

#onas::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: transparent;
  z-index: -1;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media(max-width:960px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about__visual {
  position: relative;
  perspective: 1000px;
}

.about__image-wrap {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: 2px solid var(--green-900);
  transition: transform var(--transition-slow);
}

.about__image-wrap:hover {
  transform: scale(1.02) rotateY(2deg);
}

.about__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s ease;
}

.about__image-wrap:hover img {
  transform: scale(1.05);
}

.about__badge-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  padding: 1.5rem 2.5rem;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-15px)
  }
}

.about__badge-float .big-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--yellow-main);
  line-height: 1;
  margin-bottom: 4px;
}

.about__badge-float .big-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about__text h2 {
  margin-bottom: 1.5rem;
}

.about__text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about__features {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}

.about__feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 0;
  background: transparent;
  border: 2px solid transparent;
  transition: var(--transition);
}

.about__feature:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 185, 39, 0.2);
  transform: translateX(10px);
}

.about__feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: transparent;
  border: 2px solid var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: none;
}

.about__feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.about__feature-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ===================================================
   OFERTA (OFFER)
   =================================================== */
#oferta {
  background: #ffffff;
  position: relative;
}

.offer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.offer-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.offer-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: transparent;
  border: 2px solid var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
  box-shadow: none;
}

.offer-card:hover .offer-card__icon {
  background: var(--yellow-main);
  border-color: var(--yellow-light);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 25px rgba(245, 185, 39, 0.4);
}

.offer-card__title {
  font-size: 1.25rem;
  font-weight: 700;
}

.offer-card__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

.offer-card__tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  width: fit-content;
  transition: var(--transition);
}

.offer-card:hover .offer-card__tag {
  background: rgba(245, 185, 39, 0.15);
  color: var(--yellow-main);
  border-color: rgba(245, 185, 39, 0.3);
}

/* ===================================================
   CENNIK (PRICING)
   =================================================== */
#cennik {
  background: #ffffff;
  position: relative;
  z-index: 10;
}

#cennik::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: transparent;
  z-index: -1;
}

.pricing__wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing__note {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-sm);
  display: inline-block;
  width: 100%;
}

.pricing__note strong {
  color: var(--yellow-main);
  font-weight: 700;
}

.pricing__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  border: 2px solid var(--green-900);
}

.pricing__table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.pricing__table th {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--glass-border);
}

.pricing__table th:last-child {
  text-align: right;
}

.pricing__table td {
  padding: 0.35rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-fast);
}

.pricing__table tr:last-child td {
  border-bottom: none;
}

.pricing__table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.pricing__table tr td:last-child {
  text-align: right;
}

.price-amount {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--yellow-main);
  font-size: 1.25rem;
  white-space: nowrap;
}

.price-amount .currency {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 4px;
}

.price-edit-input {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--yellow-main);
  color: var(--yellow-main);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 12px;
  border-radius: 8px;
  width: 100px;
  text-align: right;
  outline: none;
  transition: var(--transition-fast);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.price-edit-input:focus {
  box-shadow: 0 0 0 3px rgba(245, 185, 39, 0.3);
}

.pricing__extra {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.pricing__extra-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.pricing__extra-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

.pricing__extra-card .icon {
  font-size: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.pricing__extra-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.pricing__extra-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.admin__save-btn {
  display: none;
  margin: 3rem auto 0;
  padding: 1rem 3rem;
  border-radius: 100px;
  background: var(--yellow-main);
  color: var(--green-900);
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 25px rgba(245, 185, 39, 0.3);
}

.admin__save-btn:hover {
  background: var(--yellow-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(245, 185, 39, 0.5);
}

/* ===================================================
   NOCLEG / ACCOMMODATION
   =================================================== */
#nocleg {
  background: #ffffff;
  position: relative;
}

.accommodation__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

@media(max-width:800px) {
  .accommodation__grid {
    grid-template-columns: 1fr;
  }
}

.acc-card {
  padding: 3rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.acc-card__label {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(245, 185, 39, 0.15);
  color: var(--yellow-main);
  border: 1px solid rgba(245, 185, 39, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.acc-card h3 {
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  font-family: var(--font-display);
}

.acc-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.acc-card ul {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.acc-card ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.acc-card ul li::before {
  content: '✓';
  color: var(--yellow-main);
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
}

.acc-card ul li:last-child {
  border-bottom: none;
}

.acc-card__bg-num {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: var(--transition-slow);
}

.acc-card:hover .acc-card__bg-num {
  transform: scale(1.1) rotate(-5deg);
  color: rgba(245, 185, 39, 0.05);
}

/* ===================================================
   MAP
   =================================================== */
#mapa {
  background: #ffffff;
  padding: 120px 0 0;
}

.map__wrap {
  border-radius: 0;
  overflow: hidden;
  height: 500px;
  border: 2px solid var(--green-900);
  box-shadow: none;
  position: relative;
}

.map__wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(1.1);
  transition: 1s;
}

.map__wrap:hover iframe {
  filter: none;
}

.map__info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 3rem 0 120px;
}

.map__info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.map__info-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 185, 39, 0.2);
}

.map__info-item .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.map__info-item span {
  color: var(--text-secondary);
  display: block;
  font-size: 0.9rem;
}

.map__info-item strong {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 2px;
}

/* ===================================================
   KONTAKT
   =================================================== */
#kontakt {
  background: #ffffff;
  position: relative;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

@media(max-width:960px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact__info {
  display: grid;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: transparent;
  border: 2px solid var(--green-900);
  border-radius: 0;
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(10px);
  border-color: rgba(245, 185, 39, 0.2);
}

.contact-item__icon {
  width: 54px;
  height: 54px;
  border-radius: 0;
  background: transparent;
  border: 2px solid var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--yellow-main);
}

.contact-item__body .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-item__body p {
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.4;
  margin: 0;
}

.contact-item__body a {
  transition: var(--transition);
}

.contact-item__body a:hover {
  color: var(--yellow-main);
}

.contact__form {
  padding: 3rem;
  background: transparent;
  border: 2px solid var(--green-900);
}

.contact__form h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-family: var(--font-display);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: 2px solid var(--green-900);
  border-radius: 0;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--yellow-main);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 4px rgba(245, 185, 39, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--green-900);
  color: #ffffff;
  border-radius: 0;
  font-weight: 800;
  font-size: 1.05rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(245, 185, 39, 0.3);
}

.form-submit:hover {
  background: var(--yellow-light);
  box-shadow: 0 12px 35px rgba(245, 185, 39, 0.5);
  transform: translateY(-4px);
}

/* ===================================================
   INSTAGRAM FEED
   =================================================== */
#instagram {
  background: #ffffff;
  text-align: center;
}

.instagram__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 1.25rem 3rem;
  border-radius: 100px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  margin-top: 3rem;
  box-shadow: 0 10px 30px rgba(220, 39, 67, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.instagram__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
}

.instagram__cta:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(220, 39, 67, 0.6);
}

.instagram__cta:hover::before {
  opacity: 1;
}

/* ===================================================
   REGULAMIN / LEGAL
   =================================================== */
#regulamin {
  background: #ffffff;
  position: relative;
}

#regulamin::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.legal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.legal-card {
  padding: 2.5rem;
  background: transparent;
  border: 2px solid var(--green-900);
  border-radius: 0;
  transition: var(--transition);
}

.legal-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--green-900);
  box-shadow: 4px 4px 0px var(--green-900);
}

.legal-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.legal-card h3 .icon {
  font-size: 1.5rem;
}

.legal-card ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  line-height: 1.6;
}

.legal-card ul li:last-child {
  border-bottom: none;
}

.legal-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: #ffffff;
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--green-900);
  opacity: 1;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

@media(max-width:800px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer__brand .nav__logo {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.footer__brand p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 320px;
  line-height: 1.8;
}

.footer__col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer__col ul li {
  margin-bottom: 0.85rem;
}

.footer__col ul li a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition);
  display: inline-block;
}

.footer__col ul li a:hover {
  color: var(--yellow-main);
  transform: translateX(5px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.footer__copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__legal-links {
  display: flex;
  gap: 2rem;
}

.footer__legal-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__legal-links a:hover {
  color: var(--yellow-main);
}

/* ===================================================
   ADMIN PANEL
   =================================================== */
.admin-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 9, 6, 0.9);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.admin-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.admin-panel {
  background: #ffffff;
  border: 4px solid var(--green-900);
  border-radius: 0;
  padding: 3rem;
  width: 90%;
  max-width: 450px;
  box-shadow: none;
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.2, 1, 0.2, 1);
}

.admin-overlay.open .admin-panel {
  transform: scale(1) translateY(0);
}

.admin-panel__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.admin-panel__sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.admin-panel .form-group {
  margin-bottom: 1.5rem;
}

.admin-panel__row {
  display: flex;
  gap: 1rem;
}

.admin-panel__row .btn {
  flex: 1;
  justify-content: center;
  padding: 1rem;
  border-radius: 0;
}

.admin-panel__row .btn--outline {
  border-color: var(--glass-border);
}

.admin-error {
  font-size: 0.85rem;
  color: #f87171;
  margin-top: 0.5rem;
  display: none;
}

/* Logo changer */
.logo-changer {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  border-radius: 0;
  padding: 0.85rem 1.5rem;
  background: transparent;
  border: 2px solid var(--green-900);
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  align-items: center;
  gap: 10px;
  box-shadow: none;
}

.logo-changer:hover {
  background: var(--yellow-main);
  color: var(--green-900);
  transform: translateY(-3px);
}

.logo-changer.visible {
  display: flex;
}

#logo-file-input {
  display: none;
}

/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 1s cubic-bezier(0.2, 1, 0.2, 1), transform 1s cubic-bezier(0.2, 1, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===================================================
   RESPONSIVE TWEAKS
   =================================================== */
@media(max-width:480px) {
  .hero__title {
    font-size: 2.8rem;
  }

  .nav__logo {
    font-size: 1.25rem;
  }

  .nav__logo-sun {
    width: 60px;
    height: 60px;
  }

  .nav__logo-img {
    width: 100%;
    max-width: 100vw;
    height: auto;
  }

  .stat-item {
    min-width: 50%;
    padding: 2rem 1rem;
  }

  .btn {
    padding: 0.85rem 1.75rem;
    font-size: 0.9rem;
  }

  .acc-card {
    padding: 2rem;
  }

  .contact__form {
    padding: 2rem;
  }

  .map__wrap {
    height: 350px;
  }

  section {
    padding: 80px 0;
  }

  .nav__actions {
    padding: 0 1rem;
    gap: 0.5rem;
  }

  /* Mobile compact table */
  .pricing__table th,
  .pricing__table td {
    padding: 0.4rem 0.2rem;
    font-size: 0.85rem;
  }

  .price-amount {
    font-size: 1rem;
  }

  .stepper-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .stepper input[type="number"] {
    width: 32px;
    font-size: 0.9rem;
  }
}

/* Admin Edit Mode */
[contenteditable="true"] {
  outline: 1px dashed transparent;
  transition: outline 0.2s;
}

[contenteditable="true"]:hover,
[contenteditable="true"]:focus {
  outline: 2px dashed var(--yellow-main);
}

/* Booking System Styles */
.booking__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.booking__left-col,
.booking__right-col {
  min-width: 0;
  width: 100%;
}

@media (min-width: 900px) {
  .booking__grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.booking-services {
  margin: 1.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.booking-services h4 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.service-row label {
  flex: 1;
}

.service-row input[type="number"] {
  width: 80px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.5rem;
  background: var(--bg-card);
  color: var(--text-primary);
}

.booking-summary {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid var(--border-color);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.summary-line.total-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--yellow-main);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
}

/* Custom Forms & Steppers */
.stepper {
  display: flex;
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
}

.stepper-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.stepper-btn:hover {
  background: rgba(240, 180, 41, 0.1);
  color: var(--yellow-main);
}

.stepper input[type="number"] {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  -moz-appearance: textfield;
}

.stepper input[type="number"]::-webkit-outer-spin-button,
.stepper input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Flatpickr Visibility Fix */
.flatpickr-calendar {
  z-index: 999999 !important;
}

/* Cinematic Aesthetics Setup */
.glass,
.card,
.pricing__card,
.acc-card,
.contact-item,
.contact__form,
.admin-panel,
.map-container,
.booking__form,
.booking__info,
.booking-summary {
  border-radius: 2rem !important;
}

.btn {
  border-radius: 2rem !important;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.btn:hover {
  transform: scale(1.03) translateY(-1px);
}

.btn:hover::before {
  left: 0;
}

.btn>* {
  position: relative;
  z-index: 1;
}

a:not(.btn) {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

a:not(.btn):hover {
  transform: translateY(-1px);
}

/* Hero Video Background */
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.85;
}