/* ============================================
   Club De Boerderij — STYLE UPGRADE v1.0
   Drop-in luxury visual upgrade
   Load this INSTEAD of style.css for instant refresh
   ============================================ */

/* === 1. GOOGLE FONTS (Luxury Typography) === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Cormorant+SC:wght@300;400;500;600&display=swap');

/* === 2. CSS VARIABLES (Refined Luxury Palette) === */
:root {
  /* CORE PALETTE */
  --bg: #080808;
  --card: #0f0f0f;
  --card2: #161616;

  /* ACCENT: WARM GOLD (refined) */
  --accent: #722f37;
  --accent-light: #9b3a47;
  --accent-glow: rgba(114, 47, 55, 0.3);

  /* ACCENT: LUXURY GOLD */
  --gold: #c9a962;
  --gold-deep: #b8942e;
  --gold-light: #e8cc6e;
  --gold-glow: rgba(201, 169, 98, 0.2);

  /* TEXT (warmer, less grey) */
  --text: #f0e8d8;
  --text-muted: #8a8278;

  /* BORDERS */
  --border: #1e1a16;
  --border-gold: rgba(201, 169, 98, 0.15);

  /* TRANSITIONS */
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t: 0.4s;
}

/* === 3. BASE RESETS === */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* === 4. FILM GRAIN OVERLAY (CSS-only, no image) === */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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");
  background-repeat: repeat;
  background-size: 256px 256px;
  animation: grain 0.8s steps(4) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -2%); }
  20% { transform: translate(2%, 2%); }
  30% { transform: translate(-1%, 1%); }
  40% { transform: translate(1%, -1%); }
  50% { transform: translate(-2%, 2%); }
  60% { transform: translate(2%, -2%); }
  70% { transform: translate(-1%, -1%); }
  80% { transform: translate(1%, 1%); }
  90% { transform: translate(-2%, -1%); }
}

/* === 5. VIGNETTE (dark edges) === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.45) 100%);
}

/* === 6. TYPOGRAPHY UPGRADES === */

/* Headlines: Cormorant Garamond (elegant serif) */
.hero h1,
.section-title,
.age-gate-title,
.dame-card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Navigation & Labels: Cormorant SC (small caps) */
.section-label,
.nav-logo,
.kamer-badge {
  font-family: 'Cormorant SC', Georgia, serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Body & UI: DM Sans (modern, readable) */
body, p, li,
.nav-links a,
.btn,
input, textarea, select {
  font-family: 'DM Sans', system-ui, sans-serif;
}

/* Hero headline: large, light serif */
.hero h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.hero h1 strong {
  font-weight: 600;
  color: var(--gold);
  display: block;
  letter-spacing: -0.02em;
}

/* Section titles */
.section-title {
  font-size: clamp(1.8rem, 2.5vw + 0.5rem, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
}

.section-title strong { font-weight: 700; }

/* Labels */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

/* Dame names: elegant serif */
.dame-card-name {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* === 7. NAVIGATION (Glassmorphism) === */
.nav {
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-gold);
}

.nav-logo {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t) var(--ease-luxury);
}

.nav-links a::after {
  background: var(--gold);
  height: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--accent);
  letter-spacing: 0.1em;
}

/* === 8. HERO (Cinematic) === */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
}

.hero-badge {
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 0.65rem;
  padding: 0.4rem 1.5rem;
}

.hero p {
  color: rgba(240, 232, 216, 0.7);
  max-width: 520px;
  margin: 0 auto;
}

/* === 9. INFO BAR === */
.info-bar {
  background: rgba(15, 15, 15, 0.8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.info-item {
  border-right: 1px solid var(--border);
  transition: background var(--t);
}

.info-item:hover {
  background: rgba(201, 169, 98, 0.03);
}

.info-item h4 {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-family: 'Cormorant SC', serif;
  font-size: 0.7rem;
}

.info-item p { color: var(--text-muted); }

/* === 10. FEATURE CARDS (Glassmorphism + Hover) === */
.feature {
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  transition: all var(--t) var(--ease-luxury);
}

.feature::before {
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease-luxury);
}

.feature:hover::before { transform: scaleX(1); }

.feature:hover {
  border-color: rgba(201, 169, 98, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(201, 169, 98, 0.05);
}

.feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.feature h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.feature p { color: var(--text-muted); line-height: 1.7; }

/* === 11. KAMER CARDS (3D Hover Ready) */
.kamer-card {
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--t) var(--ease-luxury);
  transform-style: preserve-3d;
}

.kamer-card:hover {
  border-color: rgba(201, 169, 98, 0.4);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 30px rgba(201, 169, 98, 0.08);
}

.kamer-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
  transition: filter var(--t), transform var(--t);
}

.kamer-card:hover img {
  filter: brightness(0.95) saturate(1.2);
  transform: scale(1.05);
}

.kamer-card .kamer-info { padding: 1.5rem; }

.kamer-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.kamer-badge {
  font-size: 0.6rem;
  background: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  letter-spacing: 0.1em;
}

.kamer-card p { color: var(--text-muted); font-size: 0.88rem; }

/* === 12. DAME CARDS === */
.dame-card {
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--t) var(--ease-luxury);
}

.dame-card:hover {
  border-color: rgba(201, 169, 98, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.dame-card-img {
  filter: brightness(0.85) saturate(1.1);
  transition: filter var(--t);
}

.dame-card:hover .dame-card-img { filter: brightness(0.95) saturate(1.15); }

.dame-tag {
  background: var(--accent);
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.dame-card-btn {
  background: rgba(22, 22, 22, 0.9);
  border-top: 1px solid var(--border);
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  transition: background var(--t);
}

.dame-card-btn:hover { background: var(--accent); color: #fff; }

.dame-details {
  background: rgba(22, 22, 22, 0.95);
  border-top: 1px solid var(--border);
}

.dame-table td:first-child { color: var(--text-muted); }

/* === 13. GALLERY === */
.gallery img {
  border-radius: 8px;
  border: 1px solid var(--border);
  filter: brightness(0.85) saturate(0.9);
  transition: all var(--t) var(--ease-luxury);
}

.gallery img:hover {
  filter: brightness(1) saturate(1.2);
  border-color: rgba(201, 169, 98, 0.4);
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

/* === 14. BUTTONS (Luxury) === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 500;
  transition: all var(--t) var(--ease-luxury);
  font-family: 'DM Sans', sans-serif;
}

.btn:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 4px 25px rgba(201, 169, 98, 0.25);
  transform: translateY(-2px);
}

.btn-fill {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-fill:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: #fff;
  box-shadow: 0 4px 25px rgba(114, 47, 55, 0.3);
}

/* === 15. AGE GATE (Luxury Redesign) === */
.age-gate {
  background: var(--bg);
}

.age-gate-box {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.03);
}

.age-gate-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--gold);
  font-size: 1.6rem;
}

.age-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.age-sub { color: var(--text-muted); font-size: 0.88rem; }

/* === 16. HOUSE RULES (Enhanced) === */
.regels-list li {
  padding: 1rem 1rem 1rem 3.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--t);
  font-size: 0.95rem;
}

.regels-list li::before {
  background: var(--accent);
  width: 2rem;
  height: 2rem;
  top: 0.85rem;
  font-weight: 600;
}

.regels-list li:hover {
  color: var(--text);
  padding-left: 4rem;
  background: rgba(201, 169, 98, 0.02);
}

/* === 17. CONTACT FORM (Glassmorphism) === */
.contact-form {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 2.5rem;
}

input, textarea {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color var(--t), box-shadow var(--t);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
}

/* === 18. FOOTER === */
footer {
  background: rgba(15, 15, 15, 0.95);
  border-top: 1px solid var(--border-gold);
}

.footer-col h4 {
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-size: 0.7rem;
}

.footer-col p,
.footer-col a { color: var(--text-muted); }

.footer-col a:hover { color: var(--gold); }

/* === 19. LIGHTBOX === */
.lightbox {
  background: rgba(0, 0, 0, 0.97);
}

.lightbox img {
  border-radius: 8px;
  box-shadow: 0 0 100px rgba(0,0,0,0.8);
}

/* === 20. GOLD LINE ACCENT === */
.gold-line {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

/* === 21. SEASONAL BANNER === */
.seasonal-banner {
  background: linear-gradient(90deg, #1a0a0a, var(--accent), #1a0a0a);
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
}

.seasonal-banner strong { color: var(--gold-light); }

/* Holiday theme overrides */
.holiday-premium { background: linear-gradient(90deg,#1a0a0a,#D4AF37,#1a0a0a) !important; }
.holiday-romance  { background: linear-gradient(90deg,#1a0a0a,#722f37,#c0626a,#1a0a0a) !important; }
.holiday-fun     { background: linear-gradient(90deg,#1a0a0a,#6b1515,#a03232,#1a0a0a) !important; }
.holiday-spring  { background: linear-gradient(90deg,#1a0a0a,#8B6914,#c9a962,#5a7a3a,#1a0a0a) !important; }
.holiday-royal   { background: linear-gradient(90deg,#1a0a0a,#D4AF37,#1a0a0a) !important; }
.holiday-summer  { background: linear-gradient(90deg,#1a0a0a,#c0626a,#D4AF37,#1a0a0a) !important; }
.holiday-dark    { background: linear-gradient(90deg,#0a0a0a,#2a0a0a,#0a0a0a) !important; }
.holiday-dutch   { background: linear-gradient(90deg,#1a0a0a,#FF6600,#ffffff22,#1a0a0a) !important; }
.holiday-luxury  { background: linear-gradient(90deg,#0a0a0a,#D4AF37,#8B6914,#D4AF37,#0a0a0a) !important; }
.season-winter   { background: linear-gradient(90deg,#1a0a0a,#4a6fa5,#1a0a0a) !important; }
.season-spring   { background: linear-gradient(90deg,#1a0a0a,#5a7a3a,#c9a962,#1a0a0a) !important; }
.season-summer   { background: linear-gradient(90deg,#1a0a0a,#c0626a,#D4AF37,#1a0a0a) !important; }
.season-autumn   { background: linear-gradient(90deg,#1a0a0a,#8B4513,#c9a962,#1a0a0a) !important; }
.season-default  { background: linear-gradient(90deg,#1a0a0a,var(--accent),#1a0a0a) !important; }

/* Flicker effect for holidays */
.seasonal-banner.flicker { animation: bannerFlicker 3s ease-in-out infinite; }
@keyframes bannerFlicker {
  0%,100% { opacity: 1; }
  50% { opacity: 0.92; }
  75% { opacity: 0.98; }
}

/* === 22. SCROLLBAR (Luxury) === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* === 23. TEXT SELECTION === */
::selection {
  background: rgba(201, 169, 98, 0.25);
  color: var(--gold-light);
}

/* === 24. FADE-IN ANIMATIONS (Enhanced) === */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: forceShow 0s 1.5s forwards;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

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

/* === 25. RESPONSIVE === */
@media (max-width: 768px) {
  .features,
  .kamers-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .info-grid { grid-template-columns: 1fr 1fr; }

  .info-item { border-right: none; border-bottom: 1px solid var(--border); }

  .dame-card-top { flex-direction: column; }

  .dame-card-img { width: 100%; min-height: 280px; }

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

  section { padding: 4rem 1.25rem; }
}

@media (max-width: 480px) {
  .dames-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

/* === 26. ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  body::after { animation: none; }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
