@charset "UTF-8";
/* CSS Document */
/* Import des icônes Google */
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
:root {
  --primary: #2e8bc0;
  --secondary: #3dbb7c;
  --dark: #2c3e50;
  --light: #eef7fb;
  --white: #ffffff;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--light);
  color: #333;
  line-height: 1.6;
  padding-top: 80px; /* Espace pour le header fixed */
}
/* Header & Navigation */
header {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.btn-cta {
  background: var(--white);
  color: var(--primary);
  padding: 8px 15px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}
.btn-cta:hover {
  background: var(--dark);
  color: white;
}
.btn-devis {
  background: var(--dark);
  color: white;
}
/* Layout */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}
.design {
  text-align: center;
  margin-bottom: 40px;
}
.design h2 {
  font-size: 2.2rem;
  color: var(--primary);
}
/* Grilles & Cartes */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}
.grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white);
  padding: 30px;
  border-radius: 25px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  border-top: 5px solid var(--secondary);
}
.card:hover {
  transform: translateY(-10px);
}
.card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}
/* Footer */
footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 40px 20px;
}
/* Responsive */
@media (max-width: 768px) {
  body {
    padding-top: 120px;
  }
  nav {
    flex-direction: column;
    gap: 10px;
  }
  .logo a {
    font-size: 1.2rem;
  }
  .nav-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-cta {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}