/* Site Theme: interieur-afwerking-nl.nl — "Monochrome sophistiqué" */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
  --theme-bg: #0A0A0A;
  --theme-bg-alt: #141414;
  --theme-bg-card-section: #1A1A1A;
  --theme-text: #D4D4D4;
  --theme-text-light: #9CA3AF;
  --theme-heading: #FFFFFF;
  --theme-accent: #D97706;
  --theme-accent-hover: #B45309;
  --theme-accent-light: rgba(217, 119, 6, 0.3);
  --theme-card-bg: #1A1A1A;
  --theme-card-border: #2D2D2D;
  --theme-font-heading: 'Archivo Narrow', -apple-system, sans-serif;
  --theme-font-body: 'Inter', -apple-system, sans-serif;
  --theme-radius: 0.25rem;
  --theme-radius-lg: 0.375rem;
  --theme-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  --theme-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
  --theme-transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

body {
  font-family: var(--theme-font-body);
  background-color: var(--theme-bg);
  color: var(--theme-text);
  font-weight: 300;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--theme-font-heading);
  color: var(--theme-heading);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Hero — full-bleed dark dramatic */
.hero-section {
  background: var(--theme-bg);
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem;
  color: #fff;
}

/* Cinematic letterbox bars */
.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 40px;
  background: #000;
  z-index: 1;
}

.hero-section::before { top: 0; }
.hero-section::after { bottom: 0; }

.hero-section h1 {
  color: #FFFFFF;
  font-size: 3.5rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.hero-section p {
  color: var(--theme-text-light);
  position: relative;
  z-index: 2;
}

/* Monochrome image → color on hover concept */
@keyframes revealColor {
  0% { filter: grayscale(100%); }
  100% { filter: grayscale(0%); }
}

img {
  filter: grayscale(60%);
  transition: filter var(--theme-transition);
}

img:hover {
  filter: grayscale(0%);
}

/* Cards — dark cinema */
.card,
.bg-white.rounded-lg,
[class*="shadow"] {
  background: var(--theme-card-bg) !important;
  border: 1px solid var(--theme-card-border);
  border-radius: var(--theme-radius-lg);
  box-shadow: var(--theme-shadow);
  transition: all var(--theme-transition);
  color: var(--theme-text);
}

.card:hover,
.bg-white.rounded-lg:hover {
  box-shadow: var(--theme-shadow-hover);
  border-color: var(--theme-accent);
  transform: translateY(-2px);
}

/* Sections */
section:nth-child(even) {
  background-color: var(--theme-bg-alt);
}

section:nth-child(odd) {
  background-color: var(--theme-bg);
}

/* Buttons — midnight blue accent */
.btn-primary,
button[type="submit"],
.cta-button {
  background-color: var(--theme-heading) !important;
  color: var(--theme-bg) !important;
  border: none;
  border-radius: var(--theme-radius);
  font-family: var(--theme-font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  padding: 1rem 2rem;
  transition: all var(--theme-transition);
}

.btn-primary:hover,
button[type="submit"]:hover,
.cta-button:hover {
  background-color: var(--theme-accent-hover) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.4);
}

/* Cinematic fade-in for text */
@keyframes cinematicFadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-section h1 {
  animation: cinematicFadeIn 1s ease-out;
}

.hero-section p {
  animation: cinematicFadeIn 1s ease-out 0.3s backwards;
}

/* Stat numbers — white */
.stat-number,
.text-3xl.font-bold,
.text-4xl.font-bold {
  color: var(--theme-heading);
  font-family: var(--theme-font-heading);
}

/* Links */
a:not(.btn-primary):not([class*="bg-"]) {
  color: #93C5FD;
  transition: color var(--theme-transition);
}

a:not(.btn-primary):not([class*="bg-"]):hover {
  color: #FFFFFF;
}

/* Form inputs — dark */
input, select, textarea {
  background: var(--theme-bg-alt);
  border: 1px solid var(--theme-card-border);
  border-radius: var(--theme-radius);
  color: var(--theme-text);
  transition: all var(--theme-transition);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--theme-accent-hover);
  box-shadow: 0 0 0 2px var(--theme-accent-light);
  outline: none;
}

input::placeholder, textarea::placeholder {
  color: var(--theme-text-light);
}

/* Dividers — subtle */
hr {
  border: none;
  height: 1px;
  background: var(--theme-card-border);
}

/* Footer */
footer {
  background-color: #000 !important;
  border-top: 1px solid var(--theme-card-border);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero-section { padding: 4rem 1rem; }
  .hero-section h1 { font-size: 2.25rem; }
  .hero-section::before, .hero-section::after { height: 20px; }
  .card:hover { transform: none; }
  img { filter: none; }
}

@media (min-width: 1024px) {
  .hero-section { padding: 7rem 2rem; }
  .hero-section h1 { font-size: 4rem; }
}


/* === Nav & Template Color Harmonization === */
nav a[href="#devis-form"] {
  background-color: var(--theme-accent) !important;
  color: #fff !important;
  border-color: var(--theme-accent) !important;
}
nav a[href="#devis-form"]:hover {
  background-color: var(--theme-accent-hover) !important;
  border-color: var(--theme-accent-hover) !important;
}

