/* Language Switcher Styles */
.lang-switcher a {
    display: inline-block;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 2px 10px;
    margin-right: 4px;
    font-weight: 500;
    text-decoration: none !important;
    color: #222;
    background: #fafafa;
    transition: border-color 0.2s, background 0.2s;
}
.lang-switcher a.active {
    border-color: #1a4d7a;
    background: #eaf2fb;
    color: #1a4d7a;
}
.lang-switcher a:hover {
    border-color: #1a4d7a;
    background: #eaf2fb;
    color: #1a4d7a;
}
/* --------------------------------------------------
   BASE
-------------------------------------------------- */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #222;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
.header {
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 999;
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --------------------------------------------------
   LOGO
-------------------------------------------------- */
.logo {
    display: flex;
    align-items: center;
    font-size: 26px;
    letter-spacing: 1px;
    border:1px solid #444;
    padding:4px;
}

.logo img {
    height: 42px;
    width: auto;
}

.logo-bold { font-weight: 600; }
.logo-light { font-weight: 300; }

/* --------------------------------------------------
   NAVIGATION
-------------------------------------------------- */
.nav {
    display: flex;
    align-items: center;
}

/* desktop links */
.nav a {
    margin-left: 24px;
    text-decoration: none;
    color: #222;
    font-weight: 400;
    position: relative;
    padding-bottom: 4px;
    transition: 0.3s;
}

/* underline hover */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.nav a:hover { color: #000; }
.nav a:hover::after { width: 100%; }

/* active menu */
.nav a.active {
    font-weight: 600;
    color: #000;
}
.nav a.active::after { width: 100%; }

/* book now button */
.nav .btn {
    padding: 8px 18px;
    background: #000;
    color: #fff !important;
    border-radius: 4px;
    font-weight: 500;
}

/* --------------------------------------------------
   HAMBURGER
-------------------------------------------------- */
.hamburger {
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: none; /* default: hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #111;
    border-radius: 3px;
    transition: 0.3s;
}

/* X animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --------------------------------------------------
   MOBILE NAV
-------------------------------------------------- */
@media (max-width: 820px) {

    /* hide desktop layout */
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #fff;
        padding: 20px 0;
        border-bottom: 1px solid #eee;
        z-index: 999;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        margin: 12px 0;
        font-size: 18px;
    }

    .hamburger {
        display: flex; /* show only on mobile */
    }
}

@media (min-width: 821px) {
    .hamburger {
        display: none; /* hide on desktop */
    }
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */
.hero {
    position: relative;
}
.hero-img {
    width: 100%;
    height: 55vh;
    object-fit: cover;
    filter: brightness(70%);
}
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}
.hero-text h1 {
    font-size: 38px;
    margin-bottom: 10px;
}
.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
}
.hero-btn {
    padding: 12px 25px;
    background: #fff;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
}

/* --------------------------------------------------
   SECTIONS
-------------------------------------------------- */
.section h2, .gallery-preview h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.section p {
    font-size: 16px;
    line-height: 1.6;
}

.features li {
    margin-bottom: 6px;
    font-size: 16px;
}

.more {
    display: inline-block;
    margin-top: 10px;
    color: #000;
    font-weight: 600;
}

/* --------------------------------------------------
   GALLERY PREVIEW
-------------------------------------------------- */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.grid img {
    width: 100%;
    border-radius: 6px;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #eee;
    color: #666;
}
.footer a {
    color: #000;
    text-decoration: none;
}
/* -------------------------------------
   MOBILE MENU FIX  (MUST BE LAST!)
-------------------------------------- */
@media (max-width: 820px) {

    /* hide desktop nav on mobile */
    .nav {
        display: none !important;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #fff;
        padding: 20px 0;
        border-bottom: 1px solid #eee;
        z-index: 999;
    }

    /* show menu when toggled */
    .nav.open {
        display: flex !important;
    }

    .nav a {
        margin: 12px 0;
        font-size: 18px;
    }

    .hamburger {
        display: flex !important;
    }
}

/* HIDE HAMBURGER ON DESKTOP */
@media (min-width: 821px) {
    .hamburger {
        display: none !important;
    }
}
    .lang-switcher {margin-left: 20px;}
    .lang-switcher a {
        display: inline-block;
        border: 2px solid #e0e0e0;
        border-radius: 6px;
        padding: 2px 10px;
        font-weight: 500;
        text-decoration: none !important;
        color: #222;
        background: #fafafa;
        margin:2px;
    }
    .lang-switcher a.activel {
        border-color: #134280;
        background: #eaf2fb;
        text-decoration: none !important;
    }
    .lang-switcher a:hover {
        border-color: #134280;
        background: #eaf2fb;
        color: #1a4d7a;
    }