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

:root {
    --color-primary: #257579;
    --color-secondary: #A0C4C2;
    --color-text: #333333;
    --color-text-light: #777E90;
    --color-bg: #FCFCFD;
    --color-white: #F4F4F4;
    --color-emergency: #FF0000;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #257579;
    color: var(--color-text);
    overflow-x: hidden;
}

.page-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    background: white;
    min-height: 100vh;
}

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #F4F4F4;
    color: #000;
    line-height: 1.6;
}

/* ===========================
   HEADER / NAVBAR
   =========================== */
header {
    background-color: #257579;
    padding: 20px;
    position: relative;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    width: 100px;
    height: auto;
}

.logo img {
    width: 100%;
    height: auto;
}

.menu-icon {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.menu-icon span {
    width: 100%;
    height: 2px;
    background-color: #F4F4F4;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-icon:hover span {
    background-color: #A0C4C2;
}

/* ===========================
   MENU BURGER
   =========================== */
/* Overlay avec blur */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menu Burger principal */
.menu-burger {
    position: fixed;
    top: 0;
    left: -334px;
    width: 334px;
    height: 100vh;
    background-color: #257579;
    box-shadow: 34px 0px 60px rgba(0, 0, 0, 0.08);
    border-radius: 0 10px 10px 0;
    padding: 30px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
}

.menu-burger.active {
    left: 0;
}

/* Bouton fermer (X) */
.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: -10px;
    margin-bottom: 60px;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: scale(1.1);
}

.close-btn svg {
    display: block;
}

/* Navigation du menu */
.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 100px;
}

.menu-link {
    color: #F4F4F4;
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.menu-link:hover {
    color: #A0C4C2;
    transform: translateX(5px);
}

.menu-link.active {
    color: #A0C4C2;
}

/* Bloquer le scroll quand menu ouvert */
body.menu-open {
    overflow: hidden;
}

/* ===========================
   MENU DÉROULANT SERVICES
   =========================== */
.services-dropdown {
    display: flex;
    flex-direction: column;
}

.menu-link-services {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.menu-link-services span {
    color: #F4F4F4;
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.menu-link-services:hover span {
    color: #A0C4C2;
    transform: translateX(5px);
}

.menu-link-services svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.services-submenu {
    max-height: 0;
    overflow: hidden;
    padding-left: 30px;
    transition: max-height 0.3s ease;
}

.services-submenu.open {
    max-height: 300px;
    margin-top: 20px;
}

.submenu-link {
    display: block;
    color: #A0C4C2;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.submenu-link:hover {
    color: #F4F4F4;
    transform: translateX(5px);
}

#servicesChevron {
    transition: transform 0.3s ease;
}

#servicesChevron.rotate {
    transform: rotate(90deg);
}

/* ===========================
   HERO
   =========================== */
.hero {
    padding: 30px 20px;
    text-align: center;
}

.hero h1 {
    font-family: 'Avenir', sans-serif;
    font-size: 32px;
    font-weight: 900;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.hero p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
}

/* ===========================
   BEER SLIDER - VERSION ÉQUILIBRÉE
   =========================== */
   .beer-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 220px;
    cursor: ew-resize;
}

.beer-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}

.beer-reveal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
    z-index: 2;
}

.beer-reveal img {
    width: 356px;
    height: 220px;
    max-width: none;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.beer-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: ew-resize;
    z-index: 4;
}

/* Handle - Cercle LÉGÈREMENT transparent avec flèches noires */
.beer-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.85);  /* ← Légèrement transparent (85%) */
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Flèches noires */
.beer-handle::after {
    content: '‹  ›';
    color: #333;  /* ← Flèches noires */
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Barre verticale discrète */
.beer-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 220px;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

/* Animation hover */
.beer-slider:hover .beer-handle {
    background: rgba(255, 255, 255, 0.95);  /* ← Plus opaque au survol */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ===========================
   CARDS SECTION
   =========================== */
.realizations-cards {
    padding: 0 19px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.realization-card {
    background: var(--color-bg);
    border-radius: 10px;
    border: 1px solid #E6E8EC;
    overflow: hidden;
}

.card-image-container {
    position: relative;
    height: 220px;
}

.card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 10px 16px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
    pointer-events: none;
}

.card-info {
    padding: 24px;
    text-align: center;
}

.card-info h3 {
    font-size: 16px;
    font-weight: 500;
    color: #23262F;
    margin-bottom: 4px;
}

.card-info p {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-light);
}

/* ===========================
   AVIS SECTION
   =========================== */
.avis-section {
    padding: 40px 0;
    text-align: center;
}

.avis-title {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.avis-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    padding: 0 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.avis-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 0 20px 20px;
}

.avis-carousel::-webkit-scrollbar {
    display: none;
}

.avis-cards {
    display: flex;
    gap: 15px;
}

.avis-card {
    min-width: 280px;
    background: white;
    box-shadow: 0px 0.5px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.reviewer-person {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: #D9D9D9;
    border-radius: 50%;
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-size: 16px;
    font-weight: 500;
    color: black;
}

.reviewer-details p {
    font-size: 12px;
    font-weight: 800;
    color: #565656;
}

.rating {
    display: flex;
    gap: 4px;
    align-items: center;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--color-primary);
    font-size: 12px;
}

.rating-number {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 300;
}

.review-text {
    font-size: 13px;
    line-height: 1.5;
    color: #262626;
}

/* ===========================
   FOOTER
   =========================== */
   .main-footer {
    background-color: #257579;
    color: #FFFFFF;
    padding: 20px 22px 30px;
    text-align: center;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 60px;
    max-width: 348px;
    margin-left: auto;
    margin-right: auto;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2.52px;
    text-transform: uppercase;
    padding: 16px 0;
    transition: opacity 0.3s ease;
    text-align: left;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 150px;
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.footer-contact-item:hover {
    opacity: 0.8;
}

.footer-contact-item svg {
    fill: #F4F4F4;
}

.footer-copyright {
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    font-weight: 400;
    opacity: 1;
    color: #FFFFFF;
}


/* ===========================
   EMERGENCY BUTTON
   =========================== */
.emergency-btn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--color-emergency);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
    color: var(--color-white);
    z-index: 999;
    transition: transform 0.2s;
}

.emergency-btn:hover {
    transform: scale(1.05);
}

.emergency-btn svg {
    width: 24px;
    height: 24px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 393px) {
    .emergency-btn {
        right: 16px;
    }
}