/* ------------------------------
   GLOBAL RESET
------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #f5f5f5;
    line-height: 1.6;
}

/* ------------------------------
   CONTAINERS
------------------------------ */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ------------------------------
   HEADER / TOPBAR
------------------------------ */
.topbar {
    background: #E5E5E5; /* Gris clair façon panneau chantier */
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 70px;
}

/* NAVIGATION */
.nav a {
    margin-left: 25px;
    text-decoration: none;
    font-weight: bold;
    color: #222;
}

.nav a:hover,
.nav-active {
    color: #d4aa00; /* Jaune doré du logo */
}

/* ------------------------------
   HERO SECTION
------------------------------ */
.hero {
    background: white;
    padding: 60px 0;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.hero-text {
    width: 55%;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-actions .btn {
    display: inline-block;
    padding: 12px 20px;
    margin-right: 10px;
    border-radius: 6px;
}

.btn-primary {
    background: #d4aa00;
    color: white;
}

.btn-secondary {
    border: 2px solid #d4aa00;
    color: #d4aa00;
}

/* HERO CARD */
.hero-card {
    width: 38%;
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
    border-left: 6px solid #d4aa00;
}

/* ------------------------------
   SECTION GENERALE
------------------------------ */
.section {
    padding: 60px 0;
    background: white;
}

.section-alt {
    background: #fafafa;
}

.section h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.section-intro {
    margin-bottom: 30px;
    color: #555;
}

/* ------------------------------
   CARDS
------------------------------ */
.cards {
    display: grid;
    gap: 20px;
}

.cards-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cards-5 {
    grid-template-columns: repeat(5, 1fr);
}

.card {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card-link {
    text-decoration: none;
    color: inherit;
}

.card-cta {
    margin-top: 10px;
    font-weight: bold;
    color: #d4aa00;
}

/* ------------------------------
   AVIS GOOGLE
------------------------------ */
.reviews-widget {
    padding: 40px 0;
}

/* ------------------------------
   FOOTER
------------------------------ */
.footer {
    background: #E5E5E5;
    padding: 40px 0;
    margin-top: 40px;
}

.footer-top p,
.footer-top h3 {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer a {
    color: #222;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    color: #d4aa00;
}
