/* Header Styles */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    pointer-events: auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--primary);
}

.logo svg {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    isolation: isolate;
}

.nav-links li {
    position: relative;
    isolation: isolate;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Special styling for Book Now button */
.nav-links a[href="book-now.html"] {
    background: linear-gradient(135deg, var(--secondary) 0%, #059669 100%);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: pulse-glow 2s infinite;
    isolation: isolate;
    contain: layout style;
}

.nav-links a[href="book-now.html"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: var(--white) !important;
}

.nav-links a[href="book-now.html"]:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    pointer-events: none;
    z-index: 1;
}

.nav-links a[href="book-now.html"]:hover:before {
    left: 100%;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
    }
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Mobile menu active state */
.nav-links.mobile-open {
    display: flex !important;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1001;
}

/* Ensure proper pointer events */
.nav-links a {
    pointer-events: auto;
    cursor: pointer;
}

.nav-links a[href="book-now.html"] {
    pointer-events: auto;
    cursor: pointer;
}
