/* Construction Banner Styles */
.construction-banner {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #3964FE 0%, #2a4fd8 50%, #3964FE 100%);
    color: white;
    z-index: 999;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scrollBanner 30s linear infinite;
    padding-top: 2px;
}

.banner-icon {
    margin: 0 15px;
    color: #ffd700;
    font-size: 16px;
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Adjust hero margin for banner */
.hero {
    margin-top: 40px;
    transition: margin-top 0.3s ease;
}

/* Register Button Style in Nav */
.nav-desktop .login-btn {
    background: #10b981 !important;
    color: white !important;
}

.nav-desktop .login-btn:hover {
    background: #0da271 !important;
    transform: translateY(-2px);
}


/* Register Button Style */
.btn-register {
    background: #10b981 !important;
    color: white !important;
}

.btn-register:hover {
    background: #0da271 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-top: 10px;
}



/* Update hero buttons for 2 buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .hero-buttons .btn {
        flex: 0 0 auto;
    }
}

/* Remove all auth elements from popup */
.popup-reserve-btn,
.popup-login-btn,
.popup-details-btn {
    background: #10b981 !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 12px 14px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    margin: 8px 0 !important;
    text-align: center !important;
    transition: all 0.3s !important;
    min-height: 44px !important;
    touch-action: manipulation !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
}

.popup-reserve-btn:hover,
.popup-login-btn:hover {
    background: #0da271 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3) !important;
}