/* ============================================
   HAPPYTATSS – Main Stylesheet
   Dark, Raw, Powerful Aesthetic
   ============================================ */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #242424;
  --red: #c8001e;
  --red-bright: #ff0a2f;
  --red-dim: #7a0012;
  --gold: #c9963a;
  --gold-bright: #f5c142;
  --white: #f0ece4;
  --white-dim: #a09c95;
  --font-display: 'Cinzel', serif;
  --font-heading: 'Black Ops One', cursive;
  --font-body: 'Rajdhani', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-red: 0 0 30px rgba(200, 0, 30, 0.3);
  --shadow-glow: 0 0 60px rgba(200, 0, 30, 0.15);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

/* ── CUSTOM CURSOR ── */
.custom-cursor {
  position: fixed; width: 32px; height: 32px;
  border: 1.5px solid var(--red);
  border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.2s, height 0.2s, border-color 0.2s;
  z-index: 10000; mix-blend-mode: difference;
}
.custom-cursor-dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--red-bright); border-radius: 50%;
  pointer-events: none; transform: translate(-50%, -50%);
  z-index: 10001;
}
body:hover .custom-cursor { opacity: 1; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; }
p { font-family: var(--font-body); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-bright);
  border: 1px solid var(--red-dim);
  padding: 4px 14px;
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.section-text {
  font-size: 1.1rem;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 540px;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-text { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  padding: 14px 32px; transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }
.btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(240, 236, 228, 0.3);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red-bright);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 42px; font-size: 1rem; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.7);
  border-bottom: 1px solid rgba(200, 0, 30, 0.2);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
}
.nav-logo { text-decoration: none; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 900;
  color: var(--white); letter-spacing: 0.05em;
}
.logo-accent { color: var(--red-bright); }
.logo-placeholder img { max-height: 50px; object-fit: contain; }

.nav-links {
  list-style: none; display: flex; align-items: center; gap: 36px;
}
.nav-link {
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; color: var(--white-dim);
  transition: color 0.25s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--red-bright);
  transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-admin {
  color: var(--red-dim);
  border: 1px solid var(--red-dim);
  padding: 5px 12px;
  font-size: 0.75rem;
}
.nav-admin:hover { color: var(--red-bright); border-color: var(--red-bright); }
.nav-admin::after { display: none; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--white); transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 40px 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(200, 0, 30, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(201, 150, 58, 0.06) 0%, transparent 50%),
              var(--black);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(200,0,30,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,0,30,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-particles { position: absolute; inset: 0; }

.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 12rem);
  line-height: 0.88; letter-spacing: -0.02em;
  margin-bottom: 1.5rem; color: var(--white);
}
.hero-title .line1 { display: block; color: var(--white); }
.hero-title .line2 { 
  display: block; 
  -webkit-text-stroke: 2px var(--red);
  color: transparent;
}
.hero-title .line3 { display: block; color: var(--red-bright); text-shadow: var(--shadow-red); }

.hero-sub {
  font-size: 1.15rem; color: var(--white-dim);
  max-width: 500px; margin-bottom: 2.5rem; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px; z-index: 1;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--red-bright), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-indicator span {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--white-dim);
}

/* ── MARQUEE ── */
.marquee-strip {
  overflow: hidden; padding: 16px 0;
  background: var(--red);
  border-top: 1px solid var(--red-bright);
  border-bottom: 1px solid var(--red-bright);
}
.marquee-track {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap; animation: marqueeScroll 20s linear infinite;
  font-family: var(--font-heading); font-size: 0.9rem;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.9);
}
.marquee-track span { flex-shrink: 0; }

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

/* ── ABOUT ── */
.about-section { background: var(--dark); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-image-block { position: relative; }
.about-img-frame {
  position: relative; aspect-ratio: 3/4;
  max-width: 420px;
}
.about-img-frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%) contrast(1.1);
}
.img-placeholder {
  width: 100%; height: 100%;
  background: var(--dark3);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-dim); font-size: 0.9rem;
  border: 1px dashed rgba(200,0,30,0.3);
}
.img-deco-frame {
  position: absolute; inset: -12px;
  border: 1px solid rgba(200, 0, 30, 0.25);
  pointer-events: none;
  clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
}
.about-stat-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--red);
  padding: 24px 28px; text-align: center;
}
.stat-number {
  display: block; font-family: var(--font-heading);
  font-size: 2.5rem; color: var(--white);
}
.stat-label {
  display: block; font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
}
.about-features { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.2rem; }
.feature-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.feature-icon {
  font-size: 1.5rem; width: 44px; height: 44px;
  background: var(--dark3); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  border: 1px solid rgba(200,0,30,0.2);
}
.feature-item strong {
  display: block; font-family: var(--font-body);
  font-size: 1rem; font-weight: 700; color: var(--white);
  margin-bottom: 2px;
}
.feature-item p { font-size: 0.9rem; color: var(--white-dim); margin: 0; }

/* ── SERVICES ── */
.services-section { background: var(--black); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  background: rgba(200,0,30,0.15);
  border: 1px solid rgba(200,0,30,0.15);
}
.service-card {
  background: var(--dark); padding: 40px 32px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover { background: var(--dark2); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 2.2rem; margin-bottom: 1.2rem; display: block;
  filter: drop-shadow(0 0 8px rgba(200,0,30,0.4));
}
.service-card h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--white); margin-bottom: 0.8rem;
}
.service-card p { font-size: 0.95rem; color: var(--white-dim); line-height: 1.6; }

/* ── GALLERY PREVIEW ── */
.gallery-preview-section { background: var(--dark); }
.gallery-preview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px; margin-bottom: 3rem;
}
.gallery-item {
  overflow: hidden; position: relative;
  aspect-ratio: 1; background: var(--dark3);
}
.gallery-item.large { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s;
  filter: grayscale(30%);
}
.gallery-item:hover img { transform: scale(1.06); filter: grayscale(0%); }
.gallery-item.placeholder {
  background: var(--dark3);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item.placeholder::after {
  content: '✦'; font-size: 2rem; color: var(--red-dim);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white);
}
.gallery-cta { text-align: center; }

/* ── CTA SECTION ── */
.cta-section {
  position: relative; text-align: center;
  padding: 120px 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1f0008 50%, var(--dark) 100%);
}
.cta-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,0,30,0.2) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white); margin-bottom: 1.2rem;
}
.cta-content p {
  font-size: 1.1rem; color: var(--white-dim);
  max-width: 560px; margin: 0 auto 2.5rem;
}
.btn-lg svg { width: 22px; height: 22px; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--black); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--dark2); padding: 36px 32px;
  border: 1px solid rgba(200,0,30,0.1);
  border-top: 2px solid var(--red);
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--red); transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card p {
  font-size: 0.98rem; color: var(--white-dim);
  line-height: 1.7; margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 1rem;
  color: var(--white);
}
.testimonial-author span {
  font-weight: 700; font-size: 0.9rem; color: var(--white);
}

/* ── CONTACT STRIP ── */
.contact-strip {
  background: var(--dark2);
  border-top: 1px solid rgba(200,0,30,0.2);
  border-bottom: 1px solid rgba(200,0,30,0.2);
  padding: 32px 0;
}
.contact-items {
  display: flex; flex-wrap: wrap; gap: 32px;
  justify-content: center; align-items: center;
}
.contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--white-dim);
}
.contact-item svg {
  width: 18px; height: 18px; stroke: var(--red-bright);
  fill: none; stroke-width: 1.5; flex-shrink: 0;
}

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { font-size: 2rem; margin-bottom: 1rem; display: block; }
.footer-brand p {
  font-size: 0.95rem; color: var(--white-dim);
  line-height: 1.6; margin-bottom: 1.5rem; max-width: 300px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--red); background: rgba(200,0,30,0.1); }
.social-link svg {
  width: 18px; height: 18px; stroke: var(--white-dim);
  fill: none; stroke-width: 1.5;
}
.social-link:hover svg { stroke: var(--red-bright); }

.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.5rem;
}
.footer-nav ul { list-style: none; }
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav a, .footer-contact a {
  text-decoration: none; color: var(--white-dim);
  font-size: 0.95rem; transition: color 0.25s;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--red-bright); }
.footer-contact p { font-size: 0.95rem; color: var(--white-dim); margin-bottom: 8px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding: 24px 0; font-size: 0.85rem; color: var(--white-dim);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  text-decoration: none; color: var(--white-dim); transition: color 0.25s;
}
.footer-legal a:hover { color: var(--red-bright); }

/* ── GALLERY PAGE ── */
.page-hero {
  padding: 160px 40px 80px; background: var(--dark);
  border-bottom: 1px solid rgba(200,0,30,0.2);
  text-align: center;
}
.page-hero h1 { font-size: clamp(3rem, 7vw, 6rem); }
.gallery-filter {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; padding: 40px 0;
}
.filter-btn {
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  color: var(--white-dim); font-family: var(--font-body); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 20px; cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red); border-color: var(--red); color: var(--white);
}
.gallery-full-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 8px;
}
.gallery-full-item {
  aspect-ratio: 1; overflow: hidden; position: relative;
  background: var(--dark3); cursor: pointer;
}
.gallery-full-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-full-item:hover img { transform: scale(1.08); }
.gallery-full-item .gallery-overlay { opacity: 1; }

/* ── BOOKING PAGE ── */
.booking-section { padding: 160px 0 80px; background: var(--dark); }
.booking-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.booking-info h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.2rem; }
.booking-info p { font-size: 1rem; color: var(--white-dim); line-height: 1.7; margin-bottom: 1.5rem; }
.booking-details { margin-top: 2rem; }
.booking-detail {
  display: flex; gap: 12px; margin-bottom: 1rem;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.booking-detail svg {
  width: 20px; height: 20px; stroke: var(--red-bright);
  fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px;
}
.booking-detail span { font-size: 0.95rem; color: var(--white-dim); }

.setmore-container {
  background: var(--dark2); border: 1px solid rgba(200,0,30,0.2);
  padding: 8px; min-height: 600px;
}
.setmore-placeholder {
  background: var(--dark3); min-height: 600px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px; text-align: center; padding: 40px;
}
.setmore-placeholder .icon { font-size: 3rem; }
.setmore-placeholder h3 { font-family: var(--font-display); font-size: 1.8rem; }
.setmore-placeholder p { color: var(--white-dim); max-width: 400px; }

/* ── IMPRESSUM / DATENSCHUTZ ── */
.legal-section { padding: 140px 0 80px; }
.legal-content {
  max-width: 800px; margin: 0 auto;
}
.legal-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 2rem; }
.legal-content h2 {
  font-size: 1.4rem; color: var(--white);
  margin: 2.5rem 0 1rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-body); font-weight: 700;
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content p { color: var(--white-dim); margin-bottom: 1rem; line-height: 1.7; }
.legal-content a { color: var(--red-bright); }
.legal-content ul { color: var(--white-dim); padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: 0.4rem; }

/* ── ADMIN PAGE ── */
.admin-section { padding: 100px 0 80px; min-height: 100vh; }
.admin-login {
  max-width: 420px; margin: 100px auto 0;
  background: var(--dark2); padding: 50px 40px;
  border: 1px solid rgba(200,0,30,0.2);
}
.admin-login h2 {
  font-size: 1.8rem; margin-bottom: 0.5rem; text-align: center;
}
.admin-login p { color: var(--white-dim); text-align: center; margin-bottom: 2rem; font-size: 0.9rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white-dim); margin-bottom: 8px;
}
.form-control {
  width: 100%; background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-family: var(--font-body);
  font-size: 1rem; padding: 12px 16px; outline: none;
  transition: border-color 0.25s;
}
.form-control:focus { border-color: var(--red); }
.admin-error { color: var(--red-bright); font-size: 0.85rem; margin-top: 8px; display: none; }

.admin-panel { display: none; }
.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-header h1 { font-size: 2rem; }
.admin-tabs {
  display: flex; flex-wrap: wrap; gap: 4px;
  background: var(--dark2); padding: 6px;
  margin-bottom: 40px; border: 1px solid rgba(255,255,255,0.06);
}
.admin-tab {
  background: transparent; border: none; color: var(--white-dim);
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 22px; cursor: pointer; transition: var(--transition);
}
.admin-tab.active { background: var(--red); color: var(--white); }
.admin-tab:hover:not(.active) { color: var(--white); background: rgba(255,255,255,0.05); }
.admin-pane { display: none; }
.admin-pane.active { display: block; }

.admin-section-box {
  background: var(--dark2); padding: 36px;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}
.admin-section-box h3 {
  font-family: var(--font-body); font-weight: 700;
  font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 24px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(200,0,30,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
textarea.form-control { resize: vertical; min-height: 100px; }
.file-upload-area {
  border: 2px dashed rgba(200,0,30,0.3); padding: 40px;
  text-align: center; cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
}
.file-upload-area:hover { border-color: var(--red); background: rgba(200,0,30,0.05); }
.file-upload-area input[type=file] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%;
}
.file-upload-area .upload-icon { font-size: 2.5rem; margin-bottom: 12px; }
.file-upload-area p { color: var(--white-dim); font-size: 0.9rem; }
.file-upload-area span { color: var(--red-bright); }

.gallery-admin-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px; margin-top: 16px;
}
.gallery-admin-item {
  position: relative; aspect-ratio: 1;
  background: var(--dark3); overflow: hidden;
}
.gallery-admin-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-admin-item .remove-btn {
  position: absolute; top: 8px; right: 8px;
  background: var(--red); border: none; color: var(--white);
  width: 28px; height: 28px; cursor: pointer;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.gallery-admin-item:hover .remove-btn { opacity: 1; }

.setmore-config { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-save-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  border: none; cursor: pointer; padding: 14px 32px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: var(--transition); margin-top: 16px;
}
.admin-save-btn:hover { background: var(--red-bright); }
.admin-logout {
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  color: var(--white-dim); font-family: var(--font-body);
  font-size: 0.85rem; padding: 8px 20px; cursor: pointer; transition: var(--transition);
}
.admin-logout:hover { border-color: var(--red); color: var(--red-bright); }
.save-toast {
  position: fixed; bottom: 30px; right: 30px;
  background: #16a34a; color: white;
  padding: 14px 24px; font-weight: 700;
  font-family: var(--font-body); font-size: 0.9rem;
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
}
.save-toast.show { transform: translateY(0); opacity: 1; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 9000; display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 1.5rem; cursor: pointer;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { border-color: var(--red); color: var(--red-bright); }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-stat-card { right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .setmore-config { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex; position: fixed; inset: 0; top: 70px;
    background: var(--dark); padding: 30px; z-index: 999;
  }
  .nav-links.open .nav-link {
    padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1.2rem;
  }
  .nav-toggle { display: flex; }
  .nav-container { padding: 16px 20px; }
  .hero { padding: 120px 20px 60px; }
  .hero-title { font-size: clamp(4rem, 18vw, 8rem); }
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large, .gallery-item.tall { grid-row: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-items { flex-direction: column; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .admin-section-box { padding: 20px; }
}
