/* ========================================
   CAFÉ ANGLADE - Styles Complets
   Couleurs: #B49654 (doré), #161104 (noir), #FFFCF4 (crème), #EEE9DB (crème foncé)
======================================== */

/* FONTS */
@font-face {
    font-family: 'Casual Human';
    src: url('../fonts/CasualHuman.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Casual Human Bold';
    src: url('../fonts/CasualHuman-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

:root {
    --gold: #B49654;
    --gold-light: #D5BA83;
    --dark: #161104;
    --cream: #FFFCF4;
    --cream-dark: #EEE9DB;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Archivo', sans-serif;
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

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

ul {
    list-style: none;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    border-radius: 28px;
    border: 2px solid var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--dark);
}

.btn-primary {
    background-color: var(--white);
    color: var(--dark);
    border-color: var(--dark);
}

.btn-primary:hover {
    background-color: var(--dark);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background-color: var(--dark);
    color: var(--white);
}

.btn-dark {
    background-color: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    width: 100%;
    padding: 16px 24px;
}

.btn-dark:hover {
    background-color: #2a2010;
}

.btn-contact {
    padding: 8px 20px;
    background-color: transparent;
    border: 2px solid var(--dark);
    border-radius: 28px;
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--dark);
    color: var(--white);
}


/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: 918px;
    background-color: var(--cream);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    width: 1750px;
    max-width: 91%;
    height: 782px;
    object-fit: cover;
    border-radius: 30px;
}

.hero-circle {
    position: absolute;
    bottom: 76px;
    left: 50%;
    margin-left: -38px;
    width: 76px;
    height: 76px;
    background-color: var(--dark);
    border-radius: 50%;
    z-index: 10;
}

.hero-arrow {
    position: absolute;
    bottom: 76px;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    z-index: 11;
    cursor: pointer;
}

.hero-btn-discover {
    position: absolute;
    top: 500px;
    left: max(20px, min(175px, 9%));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: var(--white);
    border-radius: 28px;
    border: 2px solid var(--dark);
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--dark);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-btn-discover:hover {
    background-color: var(--dark);
    color: var(--white);
}

.hero-title {
    position: absolute;
    top: 210px;
    left: max(20px, min(170px, 9%));
    width: 771px;
    max-width: calc(100% - 40px);
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    color: var(--white);
    font-size: 85px;
    letter-spacing: 0;
    line-height: 79px;
    z-index: 10;
    margin: 0;
}

.hero-title-bold {
    font-weight: 800;
}

.hero-title-light {
    font-weight: 400;
}

.hero-subtitle {
    position: absolute;
    top: 420px;
    left: max(20px, min(175px, 9%));
    width: 417px;
    max-width: calc(100% - 40px);
    font-family: 'Archivo', sans-serif;
    font-weight: 300;
    color: var(--white);
    font-size: 22px;
    letter-spacing: 0;
    line-height: 20.5px;
    z-index: 10;
    margin: 0;
}

.hero-logo {
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    width: 237px;
    height: auto;
    z-index: 10;
}

.hero-btn-contact {
    position: absolute;
    top: 53px;
    right: calc(50% - 875px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: transparent;
    border-radius: 28px;
    border: 2px solid var(--dark);
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--dark);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-btn-contact:hover {
    background-color: var(--dark);
    color: var(--white);
}


/* SECTION MOT DU PATRON */
.patron {
    width: 100%;
    background-color: var(--cream);
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.patron-container {
    position: relative;
    width: 1436px;
    height: 459px;
}

.patron-quote {
    position: absolute;
    top: 137px;
    left: 483px;
    width: 947px;
    font-family: 'Archivo', Helvetica;
    font-weight: 700;
    color: var(--dark);
    font-size: 35px;
    text-align: center;
    letter-spacing: 0;
    line-height: 40.9px;
    margin: 0;
}

.patron-quote-mark {
    color: var(--gold);
}

.patron-badge {
    position: absolute;
    top: 240px;
    left: 0;
    width: 342px;
    height: 139px;
    background-color: var(--gold);
    border-radius: 30px;
}

.patron-photo {
    position: absolute;
    top: 0;
    left: 20px;
    width: 344px;
    height: 379px;
    object-fit: cover;
}

.patron-name {
    position: absolute;
    top: 376px;
    left: 34px;
    width: 272px;
    height: 71px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Casual Human Bold', 'Casual Human', Helvetica;
    font-weight: normal;
    color: var(--dark);
    font-size: 35px;
    text-align: center;
    letter-spacing: 0;
    line-height: 40.9px;
    white-space: nowrap;
}

.patron-title {
    position: absolute;
    top: 424px;
    left: 132px;
    width: 74px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo', Helvetica;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 16.4px;
}

/* SECTION STATISTIQUES */
.stats {
    width: 100%;
    background: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Particules de café statiques */
.stats::before,
.stats::after {
    content: '☕';
    position: absolute;
    font-size: 120px;
    opacity: 0.03;
    z-index: 0;
}

.stats::before {
    top: 15%;
    left: 8%;
}

.stats::after {
    bottom: 15%;
    right: 8%;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 60px 40px;
    border-radius: 25px;
    background: white;
    border: 2px solid var(--gold);
    transition: all 0.4s ease;
    animation: cardAppear 0.8s ease-out backwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.stat-item:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }

@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-light);
}


.stat-number-suffix-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 100px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin: 0;
    padding: 0;
    font-family: 'Archivo', sans-serif;
    display: inline-block;
    opacity: 0;
    transform: scale(0.3) rotateX(-90deg);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-item[data-animated="true"] .stat-number {
    opacity: 1;
    transform: scale(1) rotateX(0deg);
}

.stat-plus {
    font-size: 50px;
    font-weight: 900;
    color: var(--gold);
    font-family: 'Archivo', sans-serif;
    margin: 0 8px 0 0;
    padding-top: 5px;
    opacity: 0;
    transform: translateY(-40px) rotate(-180deg);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
}

.stat-suffix {
    font-size: 50px;
    font-weight: 900;
    color: var(--gold);
    font-family: 'Archivo', sans-serif;
    margin-left: 8px;
    padding-top: 5px;
    opacity: 0;
    transform: translateY(-40px) rotate(-180deg);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
}

.stat-item[data-animated="true"] .stat-plus,
.stat-item[data-animated="true"] .stat-suffix {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.stat-unit {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-light);
    margin: 0 0 30px 0;
    height: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.7s ease 0.4s;
}

.stat-item[data-animated="true"] .stat-unit {
    opacity: 1;
    transform: translateX(0);
}

.stat-label {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.7;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid var(--cream-dark);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease 0.6s;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.stat-item[data-animated="true"] .stat-label {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 30px;
    }

    .stat-number {
        font-size: 90px;
    }
}

/* Responsive Stats */
@media (max-width: 1200px) {
    .stats-container {
        gap: 40px;
        padding: 0 30px;
    }

    .stat-item {
        padding: 50px 30px;
    }

    .stat-number {
        font-size: 85px;
    }
}

@media (max-width: 768px) {
    .stats {
        padding: 70px 0;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .stat-item {
        padding: 40px 25px;
    }

    .stat-number {
        font-size: 75px;
    }

    .stat-plus,
    .stat-suffix {
        font-size: 35px;
    }

    .stat-unit {
        font-size: 18px;
    }

    .stat-label {
        font-size: 15px;
    }
}

/* SECTION NOTRE CAFÉ */
.notre-cafe {
    width: 100%;
    background-color: var(--cream);
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.notre-cafe-container {
    position: relative;
    width: 1430px;
    height: 727px;
    overflow: hidden;
}

.notre-cafe-title {
    position: absolute;
    top: 182px;
    left: max(40px, 5%);
    width: 599px;
    max-width: calc(100% - 40px);
    font-family: 'Archivo', Helvetica;
    font-weight: 700;
    color: var(--dark);
    font-size: 50px;
    letter-spacing: 0;
    line-height: 58.5px;
    margin: 0;
}

.notre-cafe-text {
    position: absolute;
    top: 336px;
    left: max(40px, 5%);
    width: 505px;
    max-width: calc(100% - 40px);
    font-family: 'Archivo', Helvetica;
    font-weight: 400;
    color: var(--dark);
    font-size: 18px;
    letter-spacing: 0;
    line-height: 21px;
    margin: 0;
}

.notre-cafe-image {
    position: absolute;
    top: 0;
    left: 697px;
    width: 727px;
    height: 727px;
    object-fit: cover;
    border-radius: 20px;
}

.notre-cafe-btn {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 24px;
    position: absolute;
    top: 504px;
    left: max(40px, 5%);
    border-radius: 28px;
    border: 2px solid var(--dark);
    font-family: 'Archivo', Helvetica;
    font-weight: 400;
    font-size: 18px;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.notre-cafe-btn:hover {
    background-color: var(--dark);
    color: var(--white);
}

.notre-cafe-calque {
    position: absolute;
    top: 218px;
    left: 58px;
    width: 248px;
    height: 105px;
}

.notre-cafe-badge {
    position: absolute;
    top: 673px;
    left: 1205px;
    width: 187px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo', Helvetica;
    font-weight: 200;
    color: var(--white);
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: 21px;
    white-space: nowrap;
}

/* SECTION CARTE-DISTRIBUTION */
.CARTE-DISTRIBUTION {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    background-color: var(--cream);
}

.carte-gauche {
    margin: 0;
    padding: 0;
    flex: 0 0 45%;
}

.carte-gauche img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 !important;
}

.contenu-droite {
    flex: 1;
    padding: clamp(20px, 4vw, 70px);
}

.une-distribution {
    font-family: 'Archivo', Helvetica;
    font-weight: 700;
    color: var(--dark);
    font-size: 50px;
    letter-spacing: 0;
    line-height: 58.5px;
    margin: 0 0 50px 0;
}

.on-a-choisi-de {
    font-family: 'Archivo', Helvetica;
    font-weight: 400;
    color: var(--dark);
    font-size: 18px;
    letter-spacing: 0;
    line-height: 21px;
    margin: 0 0 50px 0;
    max-width: 505px;
}

.fraicheur-wrapper {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.fraicheur-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 230px;
    height: 95px;
    background-image: url('../infos/contour fraicheur.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.vector-33 {
    width: 100px;
    height: auto;
    margin-bottom: 30px;
}

.BUTTON-4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 24px;
    border-radius: 28px;
    border: 2px solid var(--dark);
    background-color: transparent;
    cursor: pointer;
}

.BUTTON-4 .text-wrapper-31 {
    font-family: 'Archivo', Helvetica;
    font-weight: 400;
    font-size: 18px;
    color: var(--dark);
    margin: 0;
}

.BUTTON-4:hover {
    background-color: var(--dark);
}

.BUTTON-4:hover .text-wrapper-31 {
    color: var(--white);
}

/* SECTION OFFRE */
.offre {
    padding: 0;
    background-image: url('../infos/abbonement.png');
    background-size: cover;
    background-position: center;
    min-height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.offre-container {
    max-width: 1400px;
    width: 100%;
    padding: 100px 50px;
}

.offre-overlay h2 {
    font-size: 60px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.1;
}

.offre-overlay p {
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
}

/* SECTION DETAILS */
.details {
    padding: 100px 50px;
    background-color: var(--cream);
}

.details-container {
    max-width: 1400px;
    margin: 0 auto;
}

.details-header {
    text-align: center;
    margin-bottom: 40px;
}

.details-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 0;
    display: block;
}

.details-header h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--dark);
}

.vous-wrapper {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.vous-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 160px;
    height: 70px;
    background-image: url('../infos/contour fraicheur.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.details-steps {
    margin-bottom: 60px;
    position: relative;
}

.step-line {
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 0;
    border-top: 2px dashed var(--dark);
    z-index: 0;
}

.step-numbers {
    display: flex;
    justify-content: center;
    gap: 350px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--cream-dark);
    border: 2px dashed var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 65px;
    font-weight: 800;
    color: var(--dark);
}

.details-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.detail-item {
    background-color: var(--cream-dark);
    border: 2px dashed var(--dark);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: left;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.detail-icon {
    width: 250px;
    height: 250px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.detail-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.detail-item h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--dark);
}

.detail-item p {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.3;
}

/* SECTION SERVICES */
.services {
    padding: 100px 50px;
    background-color: var(--dark);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.services-line {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-badge {
    background-color: var(--white);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 400;
    border: 1px solid var(--cream-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    padding: 0;
}

.service-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.service-item p {
    color: var(--white);
    font-size: 18px;
    line-height: 1.6;
}

.service-item strong {
    font-weight: 400;
}

/* SECTION POUR QUI */
.pour-qui {
    background-color: var(--cream);
}

.pour-qui-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
}

.pour-qui-item.reverse {
    direction: rtl;
}

.pour-qui-item.reverse > * {
    direction: ltr;
}

.pour-qui-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--cream);
}

.pour-qui-content h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark);
}

.pour-qui-content p {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.pour-qui-image {
    overflow: hidden;
}

.pour-qui-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTION CLIENTS */
.clients {
    padding: 100px 50px;
    background-color: var(--cream);
    text-align: center;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
}

.clients h2 {
    font-size: 162px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 60px;
}

.clients-text-outline {
    color: var(--dark);
    display: block;
}

.clients-text-filled {
    font-weight: 900;
    color: var(--cream);
    -webkit-text-stroke: 3px var(--dark);
    text-stroke: 3px var(--dark);
    display: block;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.clients-logos img {
    height: auto;
    width: auto;
    max-height: 100px;
}

/* SECTION CONTACT */
.contact {
    padding: 100px 50px;
    background-color: var(--cream);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--dark);
}

.contact-info > p {
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--dark);
    padding: 15px 25px;
    border-radius: 10px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item span {
    color: var(--white);
    font-size: 18px;
}

.contact-form-wrapper {
    background-color: var(--white);
}

.contact-form {
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #757575;
    margin-bottom: 8px;
    font-size: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: none;
    background-color: var(--cream-dark);
    border-radius: 15px;
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #757575;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #757575;
}

.form-group textarea {
    min-height: 280px;
    resize: vertical;
}

/* SECTION BLOG */
.blog {
    padding: 100px 50px;
    background-color: var(--cream);
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-label {
    color: var(--dark);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.blog-header h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.blog-header p {
    color: var(--dark);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.blog-card {
    background-color: var(--cream-dark);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.blog-card.featured {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../infos/blog1.png');
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.blog-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card.featured .blog-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.blog-tag {
    color: var(--gold-light);
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.blog-card.featured .blog-tag {
    color: var(--gold-light);
}

.blog-card h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 15px;
}

.blog-card.featured h3 {
    color: var(--white);
}

.blog-btn {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--dark);
}

.blog-card.featured .blog-btn {
    color: var(--white);
}

/* FOOTER */
.footer {
    padding: 60px 50px 30px;
    background-color: var(--gold);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 30px;
}

.footer-contact h4 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    background-color: var(--dark);
    padding: 10px 20px;
    border-radius: 10px;
}

.footer-contact-item .contact-icon {
    background-color: transparent;
}

.footer-contact-item span {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}

.footer-hours {
    color: var(--dark);
    font-size: 18px;
    margin-top: 30px;
}

.footer h4 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--dark);
}

.footer-nav ul li,
.footer-resources ul li {
    margin-bottom: 12px;
}

.footer-nav a,
.footer-resources a {
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover,
.footer-resources a:hover {
    opacity: 0.7;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border: 2px solid var(--dark);
    border-radius: 50px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    color: var(--dark);
    font-weight: 500;
}

.social-link:hover {
    background-color: var(--dark);
    color: var(--white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(22, 17, 4, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--white);
    font-size: 18px;
}

.footer-legal {
    display: flex;
    gap: 40px;
}

.footer-legal a {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

/* SECTION DISTRIBUTEURS */
.distributeurs-section {
    padding: 100px 0 100px 0;
    background-color: var(--cream);
    overflow: visible;
}

.distributeurs-container {
    max-width: none;
    margin: 0;
    padding-right: 50px;
    overflow: visible;
}

.distributeurs-header {
    text-align: center;
    margin-bottom: 60px;
}

.distributeurs-header h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.distributeurs-header p {
    font-size: 18px;
    color: var(--dark);
    opacity: 0.8;
}

.distributeurs-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: start;
    overflow: visible;
}

.carte-wrapper {
    background: transparent;
    padding: 0;
    margin-left: 0;
    overflow: visible;
    position: relative;
    z-index: 10;
}

.carte-interactive {
    width: 100%;
    min-height: 650px;
}

.carte-svg {
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: block;
}

/* Labels des départements */
.dept-label {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    fill: var(--cream);
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: auto;
    cursor: pointer;
}

/* Départements */
.dept {
    stroke: var(--cream) !important;
    stroke-width: 0.3;
    transition: fill 0.3s ease;
    fill: #333333 !important;
}

.dept-inactive {
    fill: var(--dark);
}

.dept-clickable {
    fill: var(--dark) !important;
    cursor: pointer;
}

.dept-clickable:hover,
.dept-clickable.hover {
    fill: var(--gold) !important;
}

.dept-clickable.active {
    fill: var(--gold) !important;
}

/* Villes sur la carte */
.ville-point {
    fill: var(--dark);
}

.ville-label {
    font-family: 'Archivo', sans-serif;
    font-size: 3px;
    font-weight: 600;
    fill: white;
    pointer-events: none;
}

/* Carte distributeur */
.distributeur-details-wrapper {
    position: sticky;
    top: 40px;
}

.distributeurs-header-card {
    text-align: left;
    margin-bottom: 40px;
}

.distributeurs-header-card h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.1;
}

.distributeurs-header-card .titre-encadre {
    position: relative;
    display: inline-block;
}

.distributeurs-header-card .titre-encadre::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 75px;
    background-image: url('../infos/contour fraicheur.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.distributeurs-header-card p {
    font-size: 18px;
    color: var(--dark);
    opacity: 0.8;
    margin: 0;
}

.dist-card {
    background: transparent;
    border-radius: 30px;
    padding: 40px;
    border: 3px solid var(--gold);
}

.dist-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.dist-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.dist-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.dist-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 5px 0;
}

.dist-role {
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
    margin: 0;
}

.dist-description {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--cream-dark);
}

.dist-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.dist-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--dark);
}

.dist-contact-item a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dist-contact-item a:hover {
    color: var(--gold);
}

.dist-icon {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.dist-villes {
    background: var(--cream);
    border-radius: 20px;
    padding: 20px;
}

.dist-villes-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dist-villes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dist-ville {
    background: var(--white);
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--gold);
}

/* Message par défaut */
.dist-card-default {
    text-align: center;
    padding: 60px 40px;
}

.dist-default-message p {
    font-size: 18px;
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
}

/* Message par défaut sans bordure */
.dist-default-no-border {
    text-align: left;
    padding: 0;
}

.dist-default-no-border p {
    font-family: 'Archivo', Helvetica;
    font-weight: 400;
    font-size: 18px;
    color: var(--dark);
    letter-spacing: 0;
    line-height: 21px;
    margin: 0 0 20px 0;
    max-width: 505px;
}

.dist-default-no-border .dist-cta {
    font-weight: 600;
    color: var(--gold);
    margin-top: 30px;
}

/* Bientôt disponible */
.dist-card-soon {
    text-align: center;
}

.dist-soon-content {
    padding: 20px 0;
}

.dist-soon-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.dist-soon-text {
    font-size: 16px;
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive distributeurs */
@media (max-width: 1024px) {
    .distributeurs-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .distributeur-details-wrapper {
        position: static;
    }
}

@media (max-width: 768px) {
    .distributeurs-section {
        padding: 60px 20px;
    }

    .distributeurs-header h2 {
        font-size: 35px;
    }

    .carte-wrapper,
    .dist-card {
        padding: 25px;
        border-radius: 20px;
    }
}

/* SECTION PATRON CONTACT */
.patron-contact {
    padding: 60px 50px;
    background-color: var(--cream-dark);
}

.patron-contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.patron-contact-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.patron-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.patron-form-group input {
    width: 100%;
    padding: 16px 20px;
    border: none;
    background-color: var(--white);
    border-radius: 12px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

.patron-form-group input::placeholder {
    color: #999;
}

.patron-form-group input:focus {
    outline: 2px solid var(--gold);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 28px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--dark);
}

@media (max-width: 1024px) {
    .patron-contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .patron-contact-left h2 {
        font-size: 28px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .patron-contact {
        padding: 40px 20px;
    }

    .patron-form-grid {
        grid-template-columns: 1fr;
    }

    .patron-contact-left h2 {
        font-size: 24px;
    }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-title {
        font-size: 65px;
        line-height: 65px;
        width: 600px;
    }

    .hero-subtitle {
        top: 380px;
        width: 380px;
    }

    .hero-btn-discover {
        top: 460px;
    }

    .details-items,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .step-numbers {
        gap: 200px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .hero {
        padding: 100px 20px 60px;
        height: auto;
        min-height: 700px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-title {
        font-size: 45px;
        line-height: 48px;
        width: auto;
        max-width: calc(100% - 40px);
    }

    .hero-subtitle {
        top: 330px;
        font-size: 18px;
        width: auto;
        max-width: calc(100% - 40px);
    }

    .hero-btn-discover {
        top: 420px;
        font-size: 16px;
        padding: 10px 20px;
    }

    .hero-image {
        height: 600px;
    }

    .patron-container,
    .notre-cafe-container,
    .distribution-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .pour-qui-item {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .clients h2 {
        font-size: 60px;
    }
}
