/* =========================
   BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    color: #222222;
    background-color: #f8f6f3;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* =========================
   HEADER
========================= */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e2db;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-style: italic;
    color: #c49b2c;
    font-weight: bold;
}

/* =========================
   BURGER
========================= */
.burger {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: #333333;
    cursor: pointer;
    line-height: 1;
}

/* =========================
   NAVIGATION MOBILE
========================= */
.main-nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border-top: 1px solid #e8e2db;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.main-nav.active {
    display: block;
}

.nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
}

.nav-list a {
    font-size: 1rem;
    color: #333333;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #c49b2c;
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    padding:0;
}

.hero-image img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fafafa;
    text-shadow: 3px 3px 3px #080808;
}


.hero h1 {
    font-size: 2.4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 3px #050000;
}

.hero-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* =========================
   BOUTONS
========================= */
.btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-primary {
    background-color: #c49b2c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #a8821f;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* =========================
   SECTIONS
========================= */
section {
    padding: 4rem 0;
}

section.hero {
    padding: 0; 
}

.section-subtitle {
    color: #c49b2c;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.services h2,
.cta h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #222222;
}

/* =========================
   SERVICES
========================= */
.services {
    background-color: #f8f6f3;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background-color: #ffffff;
    padding: 1rem;
    border: 1px solid #eee6dd;
    text-align: center;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2d2d2d;
}

.service-card p {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 1rem;
}

.service-link {
    color: #c49b2c;
    font-size: 0.95rem;
    font-weight: bold;
}

.service-link:hover {
    text-decoration: underline;
}

/* =========================
   HIGHLIGHT / CITATION
========================= */
.highlight {
    position: relative;
    padding: 0;
}

.highlight-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(70%);
}

.highlight-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    color: #c49b2c;
    padding: 1rem;
}

.highlight blockquote {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.3;
    max-width: 800px;
}

/* =========================
   CTA
========================= */
.cta {
    text-align: center;
    background-color: #f8f6f3;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #555555;
    font-size: 1rem;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background-color: #efebe6;
    color: #333333;
    padding-top: 3rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #222222;
}

.footer-column p,
.footer-column address,
.footer-links li {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 0.5rem;
}

.footer-column address {
    font-style: normal;
}

.footer-links a:hover,
.footer-column a:hover {
    color: #c49b2c;
}

.footer-bottom {
    border-top: 1px solid #ddd4ca;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666666;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a:hover {
    color: #c49b2c;
}

/* =========================
   TABLETTE
========================= */
@media screen and (min-width: 768px) {
    .burger {
        display: none;
    }

    .main-nav {
        display: block;
        position: static;
        width: auto;
        background-color: transparent;
        border-top: none;
        box-shadow: none;
    }

    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        padding: 0;
    }

    .hero-image img {
        height: 85vh;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-text {
        max-width: 650px;
        margin: 0 auto 1.8rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card img {
        height: 260px;
    }

    .highlight-image img {
        height: 500px;
    }

    .highlight blockquote {
        font-size: 2.3rem;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

/* =========================
   DESKTOP
========================= */
@media screen and (min-width: 1024px) {
    .logo {
        font-size: 1.7rem;
    }

    .nav-list a {
        font-size: 0.95rem;
    }

    .hero-image img {
        height: 100vh;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 5rem;
        max-width: 800px;
        margin: 0 auto 1rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .services h2,
    .cta h2 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-card img {
        height: 280px;
    }

    .highlight-image img {
        height: 600px;
    }

    .highlight blockquote {
        font-size: 3rem;
    }

    .footer-top {
        grid-template-columns: repeat(4, 1fr);
    }
}