.elementor-31 .elementor-element.elementor-element-5845a84{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-31 .elementor-element.elementor-element-5845a84{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-31 .elementor-element.elementor-element-65fb530{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-65fb530 *//* =========================
   REFORM & LATTE HEADER
   VERSION CORRIGÉE
========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
.header,
.nav-item,
.contact-btn,
.reserve-btn {
    font-family: 'Inter', sans-serif;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #FAE8D5;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    padding: 20px 0;
    z-index: 99999;
    transition: all 0.3s ease;
    border-bottom: 1px solid #825F49;
    box-sizing: border-box;
}
/* CONTAINER */
.container {
    width: 100%;
    padding: 0 35px;
    margin: 0 auto;
    max-width: 1200px;
    box-sizing: border-box;
}
/* CONTENT */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 72px;
    position: relative;
}
/* LEFT NAV */
.nav-section {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}
/* NAV ITEM */
.nav-item {
    position: relative;
    text-decoration: none;
    color: #3A2518;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.nav-item:hover,
.nav-item.active {
    color: #825F49;
}
/* UNDERLINE */
.nav-item::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #825F49;
    border-radius: 30px;
    transition: 0.3s ease;
}
.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}
/* LOGO */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.logo-link {
    text-decoration: none;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img {
    width: auto;
    height: 50px;
    object-fit: contain;
    transition: 0.4s ease;
}
.logo img:hover {
    transform: scale(1.05);
}
/* RIGHT BUTTONS */
.buttons-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}
/* BUTTONS */
.contact-btn,
.reserve-btn {
    padding: 12px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.35s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
/* CONTACT */
.contact-btn {
    border: 1.5px solid #825F49;
    color: #825F49;
    background: transparent;
}
/* RESERVE */
.reserve-btn {
    background: #825F49;
    color: #FAE9D5;
    border: 1.5px solid #825F49;
    gap: 8px;
}
/* ARROW */
.reserve-btn .arrow {
    font-size: 16px;
    transition: transform 0.35s ease;
}
.contact-btn:hover {
    color: #825F49;
    box-shadow: 0 8px 24px rgba(130, 95, 73, 0.15);
}
.reserve-btn:hover {
    color: #FAE9D5;
    box-shadow: 0 8px 24px rgba(130, 95, 73, 0.18);
}
.reserve-btn:hover .arrow {
    transform: translateX(4px);
}
/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
    display: none;
    border: none;
    background: transparent !important;
    cursor: pointer;
    flex-shrink: 0;
    padding: 8px;
    border-radius: 10px;
    transition: background 0.2s ease;
    align-items: center;
    justify-content: center;
}
.mobile-menu-toggle:hover {
    background: transparent !important;
}
.mobile-menu-toggle.is-open {
    background: transparent !important;
}
.mobile-menu-toggle.is-open:hover {
    background: transparent !important;
}
/* HAMBURGER BARS */
.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hamburger span {
    display: block;
    height: 2px;
    background: #825F49;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
/* Hamburger → X */
.mobile-menu-toggle.is-open .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.is-open .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-toggle.is-open .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* OVERLAY */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(58, 37, 24, 0.45);
    z-index: 99997;
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.drawer-overlay.is-visible {
    display: block;
}
.drawer-overlay.is-open {
    opacity: 1;
}
/* DRAWER */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 85vw);
    height: 100%;
    background: #FAE8D5;
    z-index: 99998;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -4px 0 40px rgba(58, 37, 24, 0.12);
    font-family: 'Inter', sans-serif;
}
.mobile-drawer.is-open {
    transform: translateX(0);
}
/* DRAWER HEADER */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(130, 95, 73, 0.2);
    flex-shrink: 0;
}
.drawer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.drawer-close {
    border: none;
    background: rgba(130, 95, 73, 0.1);
    color: #825F49;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    line-height: 1;
}
.drawer-close:hover {
    background: #825F49;
    color: #FAE9D5;
}
/* DRAWER NAV */
.drawer-nav {
    padding: 24px 24px 16px;
    flex: 1;
}
.drawer-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #3A2518;
    font-size: 17px;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
    border: 1.5px solid transparent;
}
.drawer-nav a .drawer-arrow {
    font-size: 14px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.2s ease;
    color: #825F49;
}
.drawer-nav a:hover {
    background: rgba(130, 95, 73, 0.08);
    border-color: rgba(130, 95, 73, 0.15);
    color: #825F49;
}
.drawer-nav a:hover .drawer-arrow {
    opacity: 1;
    transform: translateX(0);
}
.drawer-nav a.active {
    background: rgba(130, 95, 73, 0.12);
    border-color: rgba(130, 95, 73, 0.25);
    color: #825F49;
}
.drawer-nav a.active .drawer-arrow {
    opacity: 1;
    transform: translateX(0);
}
/* DRAWER DIVIDER */
.drawer-divider {
    height: 1px;
    background: rgba(130, 95, 73, 0.15);
    margin: 8px 24px 16px;
    flex-shrink: 0;
}
/* DRAWER BUTTONS */
.drawer-buttons {
    padding: 0 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}
.drawer-contact-btn,
.drawer-reserve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 24px;
    border-radius: 999px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.drawer-contact-btn {
    border: 1.5px solid #825F49;
    color: #825F49;
    background: transparent;
}
.drawer-reserve-btn {
    background: #825F49;
    color: #FAE9D5;
    border: 1.5px solid #825F49;
}
.drawer-reserve-btn .arrow {
    font-size: 16px;
    transition: transform 0.35s ease;
    display: inline-block;
}
.drawer-contact-btn:hover {
    color: #825F49;
    box-shadow: 0 6px 20px rgba(130, 95, 73, 0.15);
}
.drawer-reserve-btn:hover {
    color: #FAE9D5;
    box-shadow: 0 6px 20px rgba(130, 95, 73, 0.2);
}
.drawer-reserve-btn:hover .arrow {
    transform: translateX(4px);
}
/* RESPONSIVE */
@media (max-width: 1024px) {
    .container { padding: 0 22px; }
    .nav-item { font-size: 14px; }
}
@media (max-width: 768px) {
    .header { width: 100%; padding: 14px 0; }
    .mobile-menu-toggle { display: flex; }
    .nav-section { display: none; }
    .buttons-section { display: none; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .contact-btn,
    .reserve-btn {
        font-size: 13px;
        padding: 11px 22px;
    }
}

/* =========================
   COFFEE SHOP VARIANT
========================= */
.header--coffee {
    background: #0f0703 !important;
    border-bottom-color: #000 !important;
}
.header--coffee .nav-item {
    color: #faf5ec;
    opacity: 0.6;
}
.header--coffee .nav-item:hover,
.header--coffee .nav-item.active {
    color: #faf5ec;
    opacity: 1;
}
.header--coffee .nav-item::after {
    background: #faf5ec;
}
.header--coffee .contact-btn {
    border-color: #faf5ec;
    color: #faf5ec;
}
.header--coffee .reserve-btn {
    background: #faf5ec;
    color: #3A2518;
    border-color: #faf5ec;
}
.header--coffee .contact-btn:hover {
    color: #faf5ec;
    box-shadow: 0 8px 24px rgba(250, 245, 236, 0.15);
}
.header--coffee .reserve-btn:hover {
    color: #3A2518;
    box-shadow: 0 8px 24px rgba(250, 245, 236, 0.18);
}
.header--coffee .hamburger span {
    background: #faf5ec;
}
.header--coffee .mobile-menu-toggle:hover {
    background: transparent !important;
}
.header--coffee .mobile-menu-toggle.is-open {
    background: transparent !important;
}
.header--coffee .mobile-menu-toggle.is-open:hover {
    background: transparent !important;
}/* End custom CSS */