/* Minimal search results styles */
:root {
    --max-width: 1100px;
    --accent: #0b74de;
    --muted: #6b7280
}

body {
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    margin: 0;
    color: #111
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
/* Header (site header used across pages) */
.site-header {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    backdrop-filter: blur(4px);
    /* keep header visible at top when scrolling */
    position: sticky;
    top: 0;
    z-index: 9999; /* ensure it sits above other components */
    box-shadow: 0 6px 18px rgba(6,30,61,0.06);
}

.site-header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Make the brand text clickable while preserving layout */
.brand-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
}

.brand-link:focus {
    outline: 3px solid rgba(11,116,222,0.12);
    border-radius: 8px;
}

.logo {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0,108,228,0.95), rgba(0,60,128,0.95));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 6px 18px rgba(6,55,135,0.12);
}

.brand-text .brand-title {
    font-weight: 700;
    color: #0b2546;
    font-size: 1rem;
}

.brand-text .brand-tagline {
    font-size: 0.78rem;
    color: #6b7280;
    margin-top: 2px;
}

nav { position: relative; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-links a {
    color: #0b2546;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 600;
}

.nav-links a.active {
    background: rgba(0,108,228,0.10);
    color: rgba(0,60,128,1);
}

.nav-cta {
    background: rgba(0,108,228,0.95);
    color: #fff !important;
    padding: 8px 12px;
    border-radius: 8px;
}

/* Book now CTA — more prominent, gradient primary button */


.translator{
    display: inline-block;
    position: relative;
    margin-left: 12px;
}
.translator button{
    background: #fff;
    border: 1px solid rgba(11,116,222,0.06);
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(11,116,222,0.06);
    transition: box-shadow .15s ease, transform .12s ease;
}
.translator button:hover{ box-shadow: 0 10px 30px rgba(11,116,222,0.08); transform: translateY(-1px); }
.translator button:focus{ outline: 3px solid rgba(11,116,222,0.12); outline-offset: 2px; }
.translator #translatorLabel{ font-weight:800; color:#07203a; }
.translator .caret{ color: rgba(7,32,58,0.6); transition: transform .15s ease; }
.translator.open .caret{ transform: rotate(180deg); }
.translator ul{
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    list-style: none;
    margin: 0;
    padding: 8px 6px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 18px 50px rgba(11,116,222,0.12);
    min-width: 160px;
    z-index: 40;
    border: 1px solid rgba(11,116,222,0.06);
}
.translator ul li{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 8px;
    font-weight:600;
}
.translator ul li:hover{ background: rgba(11,116,222,0.04); }
.translator ul li::before{
    content: attr(data-lang);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.75rem;
    background: #eef8ff;
    color: var(--primary);
    padding: 4px 6px;
    border-radius: 6px;
    margin-right: 6px;
}
.hamburger {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    color: rgba(11,37,70,0.9);
}

.results-hero h1 {
    margin: 50px 0 6px;
    font-size: 28px
}

.muted {
    color: var(--muted)
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px
}

.result-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fff
}

.result-card h3 {
    margin: 0;
    font-size: 18px
}

.result-price {
    font-weight: 700;
    color: var(--accent)
}

.result-card .meta {
    color: var(--muted);
    font-size: 13px
}

.empty-state {
    max-width: var(--max-width);
    margin: 36px auto;
    text-align: center
}

.btn {
    display: inline-block;
    padding: 8px 14px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    text-decoration: none
}

footer {
    background: #0b1720;
    color: #cfeafc;
    padding: 48px 0;
    margin-top: 36px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 250px;
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px
}

.footer-grid h4 {
    margin: 0 0 12px
}

.socials a {
    color: inherit;
    margin-right: 10px
}

.newsletter input {
    padding: 10px;
    border-radius: 8px;
    border: 0;
    margin-right: 8px
}

/* replacements for inline styles */
.section-title {
    margin-top: 0
}

.gap-2-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px
}

.popular-title {
    font-size: 0.85rem
}

.popular-chips {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    flex-wrap: wrap
}

.chip {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid #eef7fb;
    background: #fff;
    cursor: pointer
}

.footer-desc {
    color: rgba(207, 234, 252, 0.9);
    max-width: 36ch
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(207, 234, 252, 0.95)
}

.footer-link {
    color: inherit;
    text-decoration: none
}

.newsletter-row {
    display: flex;
    margin-top: 8px
}

.newsletter-input {
    flex: 1;
    border-radius: 8px;
    padding: 10px;
    border: 0
}

.subscribe-btn {
    margin-left: 8px
}

.socials-top {
    margin-top: 14px
}

/* Override: remove any box-shadow on newsletter subscribe elements in the footer */
footer .newsletter-input,
footer .subscribe-btn,
footer .newsletter-row {
    box-shadow: none !important;
}

.site-credits {
    text-align: center;
    color: rgba(207, 234, 252, 0.8);
    margin-top: 24px;
    font-size: 13px
}

/* small responsive */
@media (max-width:640px) {
    .result-card {
        flex-direction: column;
        align-items: flex-start
    }

    .result-price {
        margin-top: 8px
    }
}