/* ═══════════════════════════════════════════════════════════
   ELEMENTS GUEST HOUSE — Prenota page
   Site navbar + booking badge (mirrors index.ejs)
   ═══════════════════════════════════════════════════════════ */

/* ── Site navbar ─────────────────────────────────────────── */
.ep-navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250,250,248,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #E8E4DC;
}
.ep-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.ep-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A1814;
    text-decoration: none;
    letter-spacing: -0.01em;
}
.ep-nav-logo img {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    object-fit: cover;
}
.ep-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
.ep-nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #6B6560;
    text-decoration: none;
    transition: color .15s;
}
.ep-nav-links a:hover { color: #1A1814; }
.ep-nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: #8B6914;
    color: #fff !important;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s, transform .1s;
}
.ep-nav-cta:hover { background: #7a5c10; transform: translateY(-1px); }

/* Hamburger */
.ep-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    border: none;
    background: none;
}
.ep-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1A1814;
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}
.ep-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ep-hamburger.open span:nth-child(2) { opacity: 0; }
.ep-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.ep-mobile-menu {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    background: #fdfdfd;
    z-index: 99;
    padding: 28px 24px;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
}
.ep-mobile-menu.open { display: flex; }
.ep-mobile-menu a {
    font-size: 17px;
    font-weight: 500;
    color: #1A1814;
    padding: 12px 0;
    border-bottom: 1px solid #E8E4DC;
    text-decoration: none;
    transition: color .15s;
}
.ep-mobile-menu a:hover { color: #8B6914; }
.ep-mobile-menu .ep-mobile-cta {
    margin-top: 16px;
    text-align: center;
    padding: 14px 24px;
    background: #8B6914;
    color: #fff !important;
    border-radius: 10px;
    font-weight: 600;
    border-bottom: none;
}

@media (max-width: 680px) {
    .ep-nav-links { display: none; }
    .ep-hamburger { display: flex; }
}

/* ── Booking badge below navbar ───────────────────────────── */
.ep-booking-badge {
    background: #f5edd6;
    border-bottom: 1px solid rgba(160,120,56,.2);
    text-align: center;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #7d5c22;
    letter-spacing: .01em;
}
.ep-booking-badge svg { vertical-align: middle; margin-right: 5px; }
