/*
Theme Name: Delahayes Peinture Premium
Version: 2.0
*/

body {
  margin:0;
  font-family:Arial,sans-serif;
  background:#fff;
  color:#222;
}

header {
  position:fixed;
  top:0;
  width:100%;
  background:rgba(255,255,255,.95);
  padding:20px;
  box-shadow:0 2px 20px rgba(0,0,0,.1);
  z-index:1000;
}

.hero {
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;
  background:
  linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
  url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1974&auto=format&fit=crop') center/cover;
}

.hero h1 {
  font-size:70px;
}

.btn {
  display:inline-block;
  margin-top:20px;
  padding:18px 35px;
  background:#c40000;
  color:white;
  text-decoration:none;
  border-radius:50px;
  font-weight:bold;
}

.section {
  padding:120px 20px;
}

.services {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:40px;
}

.card {
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(0,0,0,.1);
  background:white;
}

.card img {
  width:100%;
  height:300px;
  object-fit:cover;
}

.card-content {
  padding:30px;
}

footer {
  background:black;
  color:#aaa;
  text-align:center;
  padding:40px;
}
