/* =========================
NAVBAR
========================= */

.navbar {
    width: 90%;
    margin: 5px auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 28px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.08);
    z-index: 9999;
}

/* =========================
LOGO
========================= */

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.25);
}

.logo-text {
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    font-family: 'Playfair Display', serif;
}

/* =========================
MENU
========================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links li a {
    position: relative;
    text-decoration: none;
    color: #111827;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

/* ACTIVE */

.nav-links li a.active {
    color: #7c3aed;
}

/* HOVER */

.nav-links li a:hover {
    color: #7c3aed;
}

/* UNDERLINE */

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0%;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    transition: 0.35s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* =========================
RIGHT SIDE
========================= */

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* SEARCH */

.search-box {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.35s;
}

.search-box:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #fff;
    box-shadow: 0 12px 28px rgba(168, 85, 247, 0.25);
}

/* BUTTON */

.book-btn {
    padding: 16px 32px;
    border-radius: 18px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s;
    box-shadow: 0 14px 32px rgba(168, 85, 247, 0.22);
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(168, 85, 247, 0.35);
}

/* =========================
MENU TOGGLE
========================= */

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.35s ease;
}

.menu-toggle i {
    font-size: 20px;
}

.menu-toggle:hover {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #fff;
    transform: translateY(-2px);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .logo-text {
        font-size: 24px;
    }

    .nav-links {
        position: absolute;
        top: 85px;
        left: 50%;
        transform: translateX(-50%) translateY(-15px);
        width: 92%;
        display: flex;
        flex-direction: column;
        gap: 28px;
        padding: 25px 0;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: 0.35s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .nav-right {
        margin-left: auto;
    }
}

@media(max-width: 768px) {
    .navbar {
        width: 92%;
        padding: 15px 18px;
    }

    .book-btn {
        display: none;
    }

    .logo-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}
