/* ============================= */
/* BASE STYLES */
/* ============================= */
html {
    font-size: 14px;
}

@media (min-width:768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    font-family: system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    color: #222;
    background: #f8f9fa;
}

/* ============================= */
/* HEADER */
/* ============================= */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    height: 72px;
}

    .main-header.scrolled {
        height: 56px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

/* Header container */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    transition: all 0.3s ease;
}

.main-header.scrolled .logo-img {
    height: 28px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    transition: all 0.3s ease;
}

.main-header.scrolled .logo-text {
    font-size: 16px;
}

.brand {
    color: #4f46e5;
}

/* ============================= */
/* DESKTOP NAVIGATION */
/* ============================= */
.desktop-nav {
    display: flex;
    gap: 28px;
    transition: all 0.3s ease;
}

.main-header.scrolled .desktop-nav {
    gap: 16px;
}

.desktop-nav a {
    font-weight: 600;
    text-decoration: none;
    color: #334155;
    font-size: 0.92rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

    .desktop-nav a:hover {
        color: #0066ff;
    }

/* Dropdown menus */
.desktop-nav .dropdown {
    position: relative;
    display: inline-block;
}

.desktop-nav .dropbtn {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: 0.2s;
}

.desktop-nav .dropdown:hover .dropbtn {
    color: #4f46e5;
}

/* Smooth slide-down animation */
.desktop-nav .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    z-index: 12000;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.desktop-nav .dropdown:hover .dropdown-content {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    display: flex;
}

.desktop-nav .dropdown-content a {
    display: block;
    padding: 10px 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

    .desktop-nav .dropdown-content a:hover {
        background: rgba(0, 102, 255, 0.06);
        color: #0066ff;
    }

.desktop-nav .dropdown .fa-caret-down {
    transition: transform 0.3s;
}

.desktop-nav .dropdown:hover .fa-caret-down {
    transform: rotate(180deg);
}

/* ============================= */
/* HEADER ACTIONS & BOOK BUTTON */
/* ============================= */
.btn-book {
    background: #0066ff;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.25);
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: #0052cc;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
    transform: translateY(-1px);
}

.main-header.scrolled .btn-book {
    padding: 6px 14px;
    font-size: 0.9rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-header.scrolled .header-actions {
    gap: 10px;
}

/* ============================= */
/* MOBILE NAVIGATION */
/* ============================= */
.hamburger-btn {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: white;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s;
    z-index: 12000;
}

    .mobile-nav-overlay.active {
        left: 0;
    }

/* Mobile links */
.nav-link-mobile {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
}

/* Mobile bottom buttons */
.mobile-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-book-btn {
    background: #0066ff;
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
}

/* ============================= */
/* MOBILE NESTED MENUS - ACCORDION STYLE */
/* ============================= */
.mobile-nav-overlay details {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-nav-overlay summary {
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    outline: none;
}

    .mobile-nav-overlay summary::marker {
        content: "";
    }

    .mobile-nav-overlay summary::after {
        content: "▼";
        font-size: 0.7em;
        transition: transform 0.3s ease;
    }

.mobile-nav-overlay details[open] summary::after {
    content: "▲";
    transform: rotate(180deg);
}

.mobile-nav-overlay details ul {
    list-style: none;
    padding-left: 12px;
    margin: 4px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-nav-overlay details[open] ul {
    max-height: 500px;
    padding-top: 6px;
}

.mobile-nav-overlay details ul li a {
    padding: 6px 0;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

    .mobile-nav-overlay details ul li a:hover {
        color: #4f46e5;
    }

/* ============================= */
/* RESPONSIVE RULES */
/* ============================= */
@media (max-width:768px) {
    .desktop-nav {
        display: none;
    }

    .btn-book {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }
}
.desktop-nav a:hover i,
.nav-link-mobile:hover i {
    color: #4f46e5;
    transform: scale(1.15);
    transition: 0.2s;
}


/* ============================= */
/* BASE STYLES */
/* ============================= */
/*html {
    font-size: 14px;
}

@media (min-width:768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    font-family: system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    color: #222;
    background: #f8f9fa;
}*/

/* ============================= */
/* HEADER */
/* ============================= */
/*.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    height: 72px;
}

    .main-header.scrolled {
        height: 56px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }*/

/* Header container */
/*.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
}*/

/* Logo */
/*.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    transition: all 0.3s ease;
}

.main-header.scrolled .logo-img {
    height: 28px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    transition: all 0.3s ease;
}

.main-header.scrolled .logo-text {
    font-size: 16px;
}

.brand {
    color: #4f46e5;
}*/

/* ============================= */
/* DESKTOP NAVIGATION */
/* ============================= */
/*.desktop-nav {
    display: flex;
    gap: 28px;
    transition: all 0.3s ease;
}

.main-header.scrolled .desktop-nav {
    gap: 16px;
}

.desktop-nav a {
    font-weight: 600;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

    .desktop-nav a:hover {
        color: #4f46e5;
    }*/

/* Dropdown menus */
/*.desktop-nav .dropdown {
    position: relative;
    display: inline-block;
}

.desktop-nav .dropbtn {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: 0.2s;
}

.desktop-nav .dropdown:hover .dropbtn {
    color: #4f46e5;
}*/

/* Smooth slide-down animation */
/*.desktop-nav .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    z-index: 12000;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.desktop-nav .dropdown:hover .dropdown-content {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    display: flex;
}

.desktop-nav .dropdown-content a {
    display: block;
    padding: 10px 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

    .desktop-nav .dropdown-content a:hover {
        background: #f0f4ff;
        color: #4f46e5;
    }

.desktop-nav .dropdown .fa-caret-down {
    transition: transform 0.3s;
}

.desktop-nav .dropdown:hover .fa-caret-down {
    transform: rotate(180deg);
}*/

/* ============================= */
/* HEADER ACTIONS & BOOK BUTTON */
/* ============================= */
/*.btn-book {
    background: #4f46e5;
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-header.scrolled .btn-book {
    padding: 6px 14px;
    font-size: 0.9rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-header.scrolled .header-actions {
    gap: 10px;
}*/

/* ============================= */
/* MOBILE NAVIGATION */
/* ============================= */
/*.hamburger-btn {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: white;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s;
    z-index: 12000;
}

    .mobile-nav-overlay.active {
        left: 0;
    }*/

/* Mobile links */
/*.nav-link-mobile {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
}*/

/* Mobile bottom buttons */
/*.mobile-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-book-btn {
    background: #4f46e5;
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
}*/

/* ============================= */
/* MOBILE NESTED MENUS - ACCORDION STYLE */
/* ============================= */
/*.mobile-nav-overlay details {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-nav-overlay summary {
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    outline: none;
}*/

    /* Remove default marker */
    /*.mobile-nav-overlay summary::marker {
        content: "";
    }*/

    /* Toggle arrows */
    /*.mobile-nav-overlay summary::after {
        content: "▼";
        font-size: 0.7em;
        transition: transform 0.3s ease;
    }

.mobile-nav-overlay details[open] summary::after {
    content: "▲";
    transform: rotate(180deg);
}*/

/* Submenu container */
/*.mobile-nav-overlay details ul {
    list-style: none;
    padding-left: 12px;
    margin: 4px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}*/

/* Show submenu when open */
/*.mobile-nav-overlay details[open] ul {
    max-height: 500px;
    padding-top: 6px;
}

.mobile-nav-overlay details ul li a {
    padding: 6px 0;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

    .mobile-nav-overlay details ul li a:hover {
        color: #4f46e5;
    }*/

/* ============================= */
/* RESPONSIVE RULES */
/* ============================= */
/*@media (max-width:768px) {
    .desktop-nav {
        display: none;
    }

    .btn-book {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }
}*/







/* ============================= */
/* BASE STYLES */
/* ============================= */
/*html {
    font-size: 14px;
}

@media (min-width:768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    font-family: system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    color: #222;
}*/

/* ============================= */
/* HEADER */
/* ============================= */
/*.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    height: 72px;
}

    .main-header.scrolled {
        height: 56px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }*/

/* Header container */
/*.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
}*/

/* Logo */
/*.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    transition: all 0.3s ease;
}

.main-header.scrolled .logo-img {
    height: 28px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    transition: all 0.3s ease;
}

.main-header.scrolled .logo-text {
    font-size: 16px;
}

.brand {
    color: #4f46e5;
}*/

/* ============================= */
/* DESKTOP NAVIGATION */
/* ============================= */
/*.desktop-nav {
    display: flex;
    gap: 28px;
    transition: all 0.3s ease;
}

.main-header.scrolled .desktop-nav {
    gap: 16px;
}

.desktop-nav a {
    font-weight: 600;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

    .desktop-nav a:hover {
        color: #4f46e5;
    }*/

/* Dropdown menus for desktop */
/*.desktop-nav .dropdown {
    position: relative;
    display: inline-block;
}

.desktop-nav .dropbtn {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: 0.2s;
}

.desktop-nav .dropdown:hover .dropbtn {
    color: #4f46e5;
}

.desktop-nav .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    z-index: 12000;
    flex-direction: column;
}

    .desktop-nav .dropdown-content a {
        display: block;
        padding: 10px 16px;
        font-weight: 500;
        color: #333;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
    }

        .desktop-nav .dropdown-content a:hover {
            background: #f0f4ff;
            color: #4f46e5;
        }

.desktop-nav .dropdown:hover .dropdown-content {
    display: flex;
}*/

/* Optional caret rotation */
/*.desktop-nav .dropdown .fa-caret-down {
    transition: transform 0.3s;
}

.desktop-nav .dropdown:hover .fa-caret-down {
    transform: rotate(180deg);
}*/

/* ============================= */
/* HEADER ACTIONS & BOOK BUTTON */
/* ============================= */
/*.btn-book {
    background: #4f46e5;
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-header.scrolled .btn-book {
    padding: 6px 14px;
    font-size: 0.9rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-header.scrolled .header-actions {
    gap: 10px;
}*/

/* ============================= */
/* MOBILE NAVIGATION */
/* ============================= */
/*.hamburger-btn {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: white;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s;
    z-index: 12000;
}

    .mobile-nav-overlay.active {
        left: 0;
    }

.nav-link-mobile {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
}*/

/* Mobile bottom buttons */
/*.mobile-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-book-btn {
    background: #4f46e5;
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
}*/

/* Mobile nested menus using details/summary */
/*.mobile-nav-overlay details {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.mobile-nav-overlay summary {
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}

.mobile-nav-overlay details[open] summary::after {
    content: "▲";
    margin-left: auto;
    font-size: 0.6em;
    transition: transform 0.3s;
}

.mobile-nav-overlay summary::after {
    content: "▼";
    margin-left: auto;
    font-size: 0.6em;
    transition: transform 0.3s;
}

.mobile-nav-overlay details ul {
    list-style: none;
    padding-left: 12px;
    margin: 4px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .mobile-nav-overlay details ul li a {
        padding: 6px 0;
    }*/

/* ============================= */
/* RESPONSIVE RULES */
/* ============================= */
/*@media (max-width:768px) {
    .desktop-nav {
        display: none;
    }

    .btn-book {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }
}*/

/*html {
    font-size: 14px;
}

@media (min-width:768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    font-family: system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    color: #222;
}*/

/* HEADER */
/*.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    height: 72px;
}*/

    /* Shrink effect */
    /*.main-header.scrolled {
        height: 56px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }*/

/* Header container */
/*.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
}*/

/* Logo */
/*.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    transition: all 0.3s ease;
}

.main-header.scrolled .logo-img {
    height: 28px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    transition: all 0.3s ease;
}

.main-header.scrolled .logo-text {
    font-size: 16px;
}

.brand {
    color: #4f46e5;
}*/

/* Desktop Nav */
/*.desktop-nav {
    display: flex;
    gap: 28px;
    transition: all 0.3s ease;
}

.main-header.scrolled .desktop-nav {
    gap: 16px;
}

.desktop-nav a {
    font-weight: 600;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

    .desktop-nav a:hover {
        color: #4f46e5;
    }*/

/* Book Button */
/*.btn-book {
    background: #4f46e5;
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-header.scrolled .btn-book {
    padding: 6px 14px;
    font-size: 0.9rem;
}*/

/* Header Actions */
/*.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-header.scrolled .header-actions {
    gap: 10px;
}*/

/* Mobile Menu */
/*.hamburger-btn {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: white;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s;
    z-index: 11000;
}

    .mobile-nav-overlay.active {
        left: 0;
    }

.nav-link-mobile {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
}

.mobile-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-book-btn {
    background: #4f46e5;
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
}*/

/* Responsive */
/*@media (max-width:768px) {
    .desktop-nav {
        display: none;
    }

    .btn-book {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }
}*/







/*html {
    font-size: 14px;
}

@media (min-width:768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    font-family: system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    color: #222;
}*/

/* HEADER */
/*.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    height: 72px;
}*/

    /* Shrink effect */
    /*.main-header.scrolled {
        height: 56px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }*/

/* Header container */
/*.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
}*/

/* Logo */
/*.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    transition: all 0.3s ease;
}

.main-header.scrolled .logo-img {
    height: 28px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    transition: all 0.3s ease;
}

.main-header.scrolled .logo-text {
    font-size: 16px;
}

.brand {
    color: #4f46e5;
}*/

/* Desktop Nav */
/*.desktop-nav {
    display: flex;
    gap: 28px;
    transition: all 0.3s ease;
}

    .desktop-nav a {
        font-weight: 600;
        text-decoration: none;
        color: #333;
        transition: 0.2s;
    }

        .desktop-nav a:hover {
            color: #4f46e5;
        }*/

/* Book Button */
/*.btn-book {
    background: #4f46e5;
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-header.scrolled .btn-book {
    padding: 6px 14px;
    font-size: 0.9rem;
}*/

/* Header Actions */
/*.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}*/

/* Mobile Menu */
/*.hamburger-btn {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: white;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s;
    z-index: 11000;
}

    .mobile-nav-overlay.active {
        left: 0;
    }

.nav-link-mobile {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
}

.mobile-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-book-btn {
    background: #4f46e5;
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
}*/

/* Responsive */
/*@media (max-width:768px) {
    .desktop-nav {
        display: none;
    }

    .btn-book {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }
}*/
