
/* Reset et base */


/* Hero */
.hero { position: relative; background: url("https://images.unsplash.com/photo-1581091870622-0ef132d1d907?auto=format&fit=crop&w=1600&q=60") center/cover no-repeat; height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.hero-content { position: relative; max-width: 700px; }
.hero h1 { font-size: 2.5rem; margin-bottom: 20px; }
.hero p { margin-bottom: 20px; }
.btn { display: inline-block; padding: 10px 20px; background: #f0c040; color: #000; border-radius: 5px; font-weight: bold; transition: background 0.3s; }
.btn:hover { background: #d4a030; }

/* Sections */
.section { padding: 60px 0; }
.section h2 { margin-bottom: 20px; font-size: 2rem; text-align: center; }
.section p { text-align: center; margin-bottom: 30px; color: #555; }
.bg-light { background: #f9f9f9; }

/* Services */
.grid { display: grid; gap: 20px; }
.grid.gallery { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid .card { background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); text-align: center; }
.grid .card img { border-radius: 10px; margin-bottom: 15px; width: 100%; height: 180px; object-fit: cover; }

/* Contact */
form { display: flex; flex-direction: column; gap: 15px; max-width: 600px; margin: auto; }
input, textarea { padding: 10px; border: 1px solid #ccc; border-radius: 5px; }
button { border: none; cursor: pointer; }

/* Footer */
footer { background: #222; color: #fff; padding: 20px 0; text-align: center; margin-top: 30px; }
