/* Site Theme: finitions-interieures.be — "Artisan detail-oriented" */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --theme-bg: #F9F7F4;
  --theme-bg-alt: #F2EDE6;
  --theme-text: #3D3D3D;
  --theme-text-light: #6B6B6B;
  --theme-heading: #2D2D2D;
  --theme-accent: #B87333;
  --theme-accent-hover: #A06028;
  --theme-accent-light: #F0DCC8;
  --theme-charcoal: #2D2D2D;
  --theme-card-bg: #FFFDFB;
  --theme-card-border: #E8E0D5;
  --theme-font-heading: 'Merriweather', Georgia, serif;
  --theme-font-body: 'Inter', -apple-system, sans-serif;
  --theme-radius: 0.375rem;
  --theme-radius-lg: 0.5rem;
  --theme-shadow: 0 1px 6px rgba(184, 115, 51, 0.06);
  --theme-shadow-hover: 0 8px 24px rgba(184, 115, 51, 0.1);
  --theme-transition: 0.35s ease;
}

body {
  font-family: var(--theme-font-body);
  background-color: var(--theme-bg);
  color: var(--theme-text);
  font-weight: 400;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--theme-font-heading);
  color: var(--theme-heading);
  font-weight: 700;
  line-height: 1.3;
}

/* Hero — warm lighting artisan feel */
.hero-section {
  background: linear-gradient(160deg, #F9F7F4 0%, #F0E6D8 40%, #E8D8C4 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem;
}

/* Subtle textile texture */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Cpath d='M0 3h3v3H0z' fill='%23B87333' fill-opacity='0.02'/%3E%3C/svg%3E");
  background-size: 6px 6px;
  pointer-events: none;
}

.hero-section h1 {
  color: var(--theme-heading);
  font-size: 2.5rem;
  font-weight: 900;
}

/* Copper shimmer on hero */
@keyframes copperShimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

.hero-section h1 {
  background-image: linear-gradient(
    90deg,
    var(--theme-heading) 0%,
    var(--theme-heading) 40%,
    var(--theme-accent) 50%,
    var(--theme-heading) 60%,
    var(--theme-heading) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: copperShimmer 5s linear infinite;
}

/* Cards — artisan crafted */
.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);
}

/* Tactile hover — copper border reveal */
.card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 2px solid var(--theme-accent);
  border-radius: var(--theme-radius-lg);
  opacity: 0;
  transition: opacity var(--theme-transition);
  pointer-events: none;
}

.card {
  position: relative;
}

.card:hover::after {
  opacity: 0.4;
}

/* Sections */
section:nth-child(even) {
  background-color: var(--theme-bg-alt);
}

/* Buttons — copper artisan */
.btn-primary,
button[type="submit"],
.cta-button {
  background: linear-gradient(135deg, var(--theme-accent), var(--theme-accent-hover)) !important;
  color: #fff !important;
  border: none;
  border-radius: var(--theme-radius);
  font-weight: 600;
  padding: 0.875rem 2rem;
  transition: all var(--theme-transition);
  box-shadow: 0 2px 8px rgba(184, 115, 51, 0.2);
}

.btn-primary:hover,
button[type="submit"]:hover,
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 115, 51, 0.3);
}

/* Copper accents */
.stat-number,
.text-3xl.font-bold,
.text-4xl.font-bold {
  color: var(--theme-accent);
  font-family: var(--theme-font-heading);
}

/* Links */
a:not(.btn-primary):not([class*="bg-"]) {
  color: var(--theme-accent);
  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), var(--theme-accent), 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);
  background: var(--theme-card-bg);
  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-charcoal) !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero-section { padding: 3rem 1rem; }
  .hero-section h1 { font-size: 1.875rem; animation: none; -webkit-text-fill-color: var(--theme-heading); }
  .card:hover { transform: none; }
  .card::after { display: none; }
}

@media (min-width: 1024px) {
  .hero-section { padding: 6rem 2rem; }
  .hero-section h1 { font-size: 3rem; }
}
