/* Core Styling */
body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
    font-weight: 700;
}

.gold-text {
    color: #D4AF37;
}

/* Glassmorphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
}

/* Responsive Inputs & Buttons */
.service-btn {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.service-btn:hover {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
}

.input-field {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    outline: none;
    transition: border-color 0.3s;
}

.input-field:focus {
    border-color: #D4AF37;
}

.next-btn {
    background: #D4AF37;
    color: black;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: transform 0.2s;
}

.next-btn:active {
    transform: scale(0.95);
}

/* Update the existing time-slot class */
.time-slot {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.time-slot:hover {
    border-color: #D4AF37;
}

/* Add this NEW class for when a time is clicked */
.active-time {
    background: #D4AF37;
    color: black;
    border-color: #D4AF37;
    font-weight: bold;
}

/* Update the custom scrollbar to handle horizontal scrolling nicely */
.custom-scroll::-webkit-scrollbar {
    width: 4px;
    height: 6px; /* Added height for horizontal scrollbar */
}
.custom-scroll::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 10px;
}
.custom-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

/* Responsive Hide/Show */
.booking-step.hidden {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
.input-field:required:invalid {
    border-color: rgba(239, 68, 68, 0.5); /* Soft red border if empty */
}

/* Make the placeholder asterisk stand out */
.input-field::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Scrollbar */
.custom-scroll::-webkit-scrollbar {
    width: 4px;
}
.custom-scroll::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 10px;
}

.payment-method-btn {
    width: 100%;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
    color: white;
}

.payment-method-btn:hover {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
}

/* Active state for when a payment method is selected */
.payment-method-active {
    border-color: #D4AF37 !important;
    background: rgba(212, 175, 55, 0.1) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}


/* Popup Overlay */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Popup Box */
#popup-box {
    background: rgba(15,15,15,0.95);
    backdrop-filter: blur(12px);
    border: 2px solid #D4AF37;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: popup-in 0.3s ease forwards;
}

/* Popup Button */
#popup-box button {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: none;
    background: #D4AF37;
    color: black;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
}
#popup-box button:active {
    transform: scale(0.95);
}

/* Animation */
@keyframes popup-in {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}