/*
Theme Name: Lev Assurances WebSteve Theme
Theme URI: https://lev-assurances.com
Author: WebSteve
Author URI: https://lev-assurances.com
Description: Thème WordPress sur mesure pour le cabinet de courtage Lev Assurances, spécialisé immobilier et construction.
Version: 1.0.0
Text Domain: levassurances
*/

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2933;
  background: #f5f7fa;
}

a {
  color: #0b63ce;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout de base */

.site-header {
  background: #0b63ce;
  color: #fff;
  padding: 1.2rem 0;
}

.site-header a {
  color: #fff;
}

.site-footer {
  background: #0b1724;
  color: #e5e7eb;
  padding: 2rem 0;
  font-size: 0.9rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.main-content {
  padding: 2rem 0;
}

/* Hero home */

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.hero-home__title {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-home__subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #4b5563;
}

.hero-home__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.badge {
  background: #e5efff;
  color: #0b63ce;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  background: #0b63ce;
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid #0b63ce;
  color: #0b63ce;
}

/* Grille services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #4b5563;
}

/* Responsive */

@media (max-width: 768px) {
  .hero-home {
    grid-template-columns: 1fr;
  }
}
