/* Navbar Styles */
.navbar-container {
    background: transparent;
    width: 100%;
    position: relative;
    z-index: 10;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0 0 0;
    background: transparent;
}

.logo img {
    height: 65px;
    width: auto;
    transition: height 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
    position: relative;
}

.nav-links li a:hover {
    color: #34B0DC;
}

/* New service indicator - visual star/dot */
.new-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    border-radius: 50%;
    box-shadow: 0 0 0 2px white, 0 0 8px rgba(255, 107, 107, 0.6);
    animation: newPulse 2s infinite;
}

.new-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
}

@keyframes newPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 2px white, 0 0 8px rgba(255, 107, 107, 0.6);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 2px white, 0 0 12px rgba(255, 107, 107, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 2px white, 0 0 8px rgba(255, 107, 107, 0.6);
    }
}

.btn.book-now {
    background: #34B0DC;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 32px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(45,198,246,0.08);
}

.btn.book-now:hover {
    background: #2490b8;
    transform: translateY(-2px);
}

/* Auth Button Styles - Clean and Professional */
.auth-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #34B0DC;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid rgba(52, 176, 220, 0.2);
    background: rgba(52, 176, 220, 0.05);
}

.auth-btn:hover {
    color: #2490b8;
    background: rgba(52, 176, 220, 0.1);
    border-color: rgba(52, 176, 220, 0.3);
    transform: translateY(-1px);
}

.auth-btn i {
    font-size: 1.1rem;
}

.auth-btn span {
    font-size: 0.95rem;
    font-weight: 500;
}

.desktop-auth {
    margin-left: 32px;
}

/* Auth group for settings + logout */
.auth-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 32px;
}

/* Hide mobile auth items on desktop */
.mobile-auth-item {
    display: none;
}

/* Settings icon-only button */
.settings-icon-btn {
    padding: 8px !important;
    min-width: 36px;
    justify-content: center;
}

.settings-icon-btn i {
    font-size: 1.1rem;
}

/* Remove margin from logout btn when in group */
.auth-group .logout-btn {
    margin-left: 0;
}

/* Login specific styling */
.login-btn {
    color: #34B0DC;
}

.login-btn:hover {
    color: #2490b8;
}

/* Logout specific styling */
.logout-btn {
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.2);
    background: rgba(231, 76, 60, 0.05);
}

.logout-btn:hover {
    color: #c0392b;
    background: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.3);
}

.mobile-book-now {
    display: none;
}

.burger-menu {
    display: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(52, 176, 220, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.burger-menu:hover {
    background: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(52, 176, 220, 0.2);
}

.burger-menu span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #34B0DC;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Responsive styles */
@media (max-width: 1180px) {
    .navbar {
        padding: 20px 0;
    }

    .burger-menu {
        display: flex;
        order: 3;
    }
    
    .logo img {
        height: 62px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links li a {
        font-size: 1.1rem;
    }
    
    /* Responsive new indicator */
    .new-badge {
        top: -6px;
        right: -10px;
        width: 7px;
        height: 7px;
    }
    
    .new-badge::before {
        width: 3px;
        height: 3px;
    }
    
    /* Auth buttons responsive styling */
    .auth-btn {
        padding: 7px 14px;
        gap: 7px;
    }
    
    .auth-btn i {
        font-size: 1rem;
    }
    
    .auth-btn span {
        font-size: 0.9rem;
    }
    
    .desktop-auth {
        margin-left: 25px;
    }

    .auth-group {
        display: none; /* Hide desktop auth on mobile */
    }

    .desktop-auth {
        display: none; /* Hide desktop login button on mobile */
    }

    /* Mobile auth items styling - simple like other nav items */
    .mobile-auth-item {
        display: block;
        margin: 15px 0;
    }

    .mobile-auth-item a {
        color: #222 !important;
        font-weight: 500 !important;
        font-size: 1.1rem !important;
    }

    .mobile-auth-item a:hover {
        color: #34B0DC !important;
    }

    .mobile-auth-item a i {
        margin-right: 8px;
    }

    .desktop-book-now {
        display: none;
    }
    
    .mobile-book-now {
        display: block;
        margin-top: 30px;
    }
    
    .mobile-book-now .btn.book-now {
        display: inline-block;
        margin-left: 0;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Auth buttons responsive styling */
    .auth-btn {
        padding: 6px 12px;
        gap: 6px;
    }
    
    .auth-btn i {
        font-size: 1rem;
    }
    
    .auth-btn span {
        font-size: 0.9rem;
    }
    
    .desktop-auth {
        display: none; /* Hide desktop login button on mobile */
    }

    .auth-group {
        display: none; /* Hide desktop auth on mobile */
    }

    /* Mobile auth items styling - simple like other nav items */
    .mobile-auth-item {
        display: block;
        margin: 15px 0;
    }

    .mobile-auth-item a {
        color: #222 !important;
        font-weight: 500 !important;
        font-size: 1.1rem !important;
    }

    .mobile-auth-item a:hover {
        color: #34B0DC !important;
    }

    .mobile-auth-item a i {
        margin-right: 8px;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 18px 0;
    }
    
    .burger-menu {
        width: 45px;
        height: 45px;
    }
    
    .burger-menu span {
        width: 22px;
        height: 2.5px;
        margin: 3px 0;
    }
    
    .logo img {
        height: 52px;
    }
    
   
    
    .nav-links li a {
        font-size: 1.05rem;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 16px 0;
        align-items: center;
    }

    .logo img {
        height: 48px;
    }

    .nav-links {
        width: 100vw;
        height: 100vh;
    }

    .nav-links li a {
        font-size: 1rem;
    }
    
    /* Mobile new indicator */
    .new-badge {
        top: -5px;
        right: -8px;
        width: 6px;
        height: 6px;
    }
    
    .new-badge::before {
        width: 2px;
        height: 2px;
    }
    
    .burger-menu {
        width: 42px;
        height: 42px;
    }

    .burger-menu span {
        width: 20px;
        height: 2.5px;
        margin: 3px 0;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 3px);
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
    
    /* Auth buttons mobile styling */
    .auth-btn {
        padding: 5px 10px;
        gap: 5px;
    }
    
    .auth-btn i {
        font-size: 0.9rem;
    }
    
    .auth-btn span {
        font-size: 0.8rem;
    }
    
    .desktop-auth {
        display: none; /* Hide desktop login button on mobile */
    }

    .auth-group {
        display: none; /* Hide desktop auth on mobile */
    }

    /* Mobile auth items styling - simple like other nav items */
    .mobile-auth-item {
        display: block;
        margin: 15px 0;
    }

    .mobile-auth-item a {
        color: #222 !important;
        font-weight: 500 !important;
        font-size: 1.1rem !important;
    }

    .mobile-auth-item a:hover {
        color: #34B0DC !important;
    }

    .mobile-auth-item a i {
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 14px 0;
    }
    
    .logo img {
        height: 44px;
    }
    
    .burger-menu {
        width: 40px;
        height: 40px;
    }
    
    .burger-menu span {
        width: 18px;
        height: 2.5px;
        margin: 3px 0;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(3px, 3px);
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(3px, -3px);
    }
    
    /* Auth buttons very small mobile styling */
    .auth-btn {
        padding: 4px 8px;
        gap: 4px;
    }
    
    .auth-btn i {
        font-size: 0.8rem;
    }
    
    .auth-btn span {
        font-size: 0.75rem;
    }
    
    .desktop-auth {
        display: none; /* Hide desktop login button on mobile */
    }

    .auth-group {
        display: none; /* Hide desktop auth on mobile */
    }

    /* Mobile auth items styling - simple like other nav items */
    .mobile-auth-item {
        display: block;
        margin: 15px 0;
    }

    .mobile-auth-item a {
        color: #222 !important;
        font-weight: 500 !important;
        font-size: 1.1rem !important;
    }

    .mobile-auth-item a:hover {
        color: #34B0DC !important;
    }

    .mobile-auth-item a i {
        margin-right: 8px;
    }
} 