/* Site Theme: renovation-cuisine-sdb.be — "Luxury marble modern" */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --theme-bg: #FAF9F7;
  --theme-bg-alt: #F3F1EE;
  --theme-text: #3D3D3D;
  --theme-text-light: #6E6E6E;
  --theme-heading: #1A1A1A;
  --theme-accent: #D97706;
  --theme-accent-hover: #B45309;
  --theme-accent-light: #FEF3C7;
  --theme-matte-black: #1A1A1A;
  --theme-card-bg: #FFFFFF;
  --theme-card-border: #E8E4DF;
  --theme-font-heading: 'Cormorant Garamond', Georgia, serif;
  --theme-font-body: 'Inter', -apple-system, sans-serif;
  --theme-radius: 0.25rem;
  --theme-radius-lg: 0.5rem;
  --theme-shadow: 0 2px 8px rgba(26, 26, 26, 0.05);
  --theme-shadow-hover: 0 8px 24px rgba(183, 110, 121, 0.12);
  --theme-transition: 0.35s 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: 400;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--theme-font-heading);
  color: var(--theme-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* Hero — split-screen marble concept */
.hero-section {
  background: linear-gradient(105deg, var(--theme-bg) 50%, var(--theme-matte-black) 50%);
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M0 50 Q25 30 50 55 Q75 80 100 45 Q125 10 150 40 Q175 70 200 35' stroke='%23E8E4DF' fill='none' stroke-width='0.5'/%3E%3Cpath d='M0 100 Q30 80 60 110 Q90 140 120 95 Q150 50 180 85 Q200 100 200 110' stroke='%23D4D0CB' fill='none' stroke-width='0.3'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-section h1 {
  color: var(--theme-heading);
  font-size: 3rem;
  font-weight: 700;
}

/* Rose gold shimmer on hover */
@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.card:hover {
  background-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(183, 110, 121, 0.03) 45%,
    rgba(183, 110, 121, 0.06) 50%,
    rgba(183, 110, 121, 0.03) 55%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: goldShimmer 1.5s ease forwards;
}

/* Cards */
.card,
.bg-white.rounded-lg,
[class*="shadow"] {
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-card-border);
  border-radius: var(--theme-radius-lg);
  box-shadow: var(--theme-shadow);
  transition: all var(--theme-transition);
}

.card:hover,
.bg-white.rounded-lg:hover {
  box-shadow: var(--theme-shadow-hover);
  transform: translateY(-3px);
  border-color: var(--theme-accent-light);
}

/* Sections */
section:nth-child(even) {
  background-color: var(--theme-bg-alt);
}

/* Buttons — rose gold elegant */
.btn-primary,
button[type="submit"],
.cta-button {
  background-color: var(--theme-accent) !important;
  color: #fff !important;
  border: none;
  border-radius: var(--theme-radius);
  font-family: var(--theme-font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 0.875rem 2rem;
  transition: all var(--theme-transition);
}

.btn-primary:hover,
button[type="submit"]:hover,
.cta-button:hover {
  background-color: var(--theme-accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(183, 110, 121, 0.3);
}

/* Rose gold accent elements */
.stat-number,
.text-3xl.font-bold,
.text-4xl.font-bold {
  color: var(--theme-accent);
  font-family: var(--theme-font-heading);
  font-weight: 700;
}

/* Links */
a:not(.btn-primary):not([class*="bg-"]) {
  color: var(--theme-accent);
  text-decoration: none;
  transition: color var(--theme-transition);
}

a:not(.btn-primary):not([class*="bg-"]):hover {
  color: var(--theme-accent-hover);
}

/* Elegant dividers */
hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--theme-accent-light), transparent);
  margin: 2rem 0;
}

/* Form inputs */
input, select, textarea {
  border: 1px solid var(--theme-card-border);
  border-radius: var(--theme-radius);
  transition: all var(--theme-transition);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--theme-accent);
  box-shadow: 0 0 0 3px var(--theme-accent-light);
  outline: none;
}

/* Footer */
footer {
  background-color: var(--theme-matte-black) !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero-section {
    background: var(--theme-bg);
    padding: 3rem 1rem;
  }
  .hero-section h1 { font-size: 2rem; }
  .card:hover { transform: none; animation: none; }
}

@media (min-width: 1024px) {
  .hero-section { padding: 6rem 2rem; }
  .hero-section h1 { font-size: 3.5rem; }
}


/* === 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;
}

