/* Header styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(9px);
    background: #0000001A;
    padding: 15px 40px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Logo */
.logo {
    width: 95px;
    object-fit: contain;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Navigation Container */
.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    transition: opacity 0.3s ease;
    font-family: "Manrope", sans-serif;
    font-weight: 300;
    font-size: 18.45px;
    line-height: 28.8px;
    letter-spacing: 0;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Book Now button */
.book-now {
    padding: 3px 20px;
    border: 1px solid var(--text-color);
    border-radius: 9999px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 13px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0;
}

.book-now:hover {
    background-color: #fff;
    color: #000;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .header {
        padding: 15px 20px;
    }

    .nav-links a {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        padding: 20px;
    }

    .nav-container.active {
        right: 0;
    }

    .nav-links {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-links a {
        font-size: 20px;
    }

    .book-now {
        margin-top: 20px;
    }

    /* Mobile menu button animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(312deg) translate(5px, -7px);
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }

    .logo {
        width: 80px;
    }

    .nav-links a {
        font-size: 18px;
    }
}