html {
    scroll-behavior: smooth;
    /* Sayfanın varsayılan kaydırma çubuğunun patlamasını engellemek ve 
       taşmaları pürüzsüz yönetmek için body ile uyumlu tutuyoruz */
    overflow-y: scroll; 
}

/* index.html içindeki ana bölümler tam ekran kalmaya devam etsin */
section {
    min-height: 100vh;
}
/* Liquid Glass System */
.liquid-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.liquid-glass-strong {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 9999px;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 1px 2px rgba(255,255,255,0.25);
    text-decoration: none;
    color: white;
}

.logo-container {
    text-decoration: none;
    display: flex;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-glass-etched {
    filter: brightness(0) invert(1) drop-shadow(0 0 2px rgba(255,255,255,0.5));
    opacity: 0.75;
    transition: all 0.4s ease;
}

.logo-container:hover .logo-glass-etched {
    opacity: 1;
    transform: scale(1.1); 
    transition: all 0.3s ease;
}

.nav-link {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-link:hover { 
    color: white; 
    opacity: 1;
}

/* Scrollbar for Time Slots */
.custom-scrollbar::-webkit-scrollbar { width: 3px; }
.custom-scrollbar::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #C5A059; border-radius: 10px; }

/* Service */
.active-service {
    border-color: #C5A059 !important;
    background: rgba(197, 160, 89, 0.05) !important;
    box-shadow: inset 0 0 20px rgba(197, 160, 89, 0.1);
}

/* Ensure calendar numbers turn black when the day is gold */
.day-active {
    background-color: #C5A059 !important;
    color: #000000 !important; /* Force black text */
    font-weight: 700 !important;
}

/* Ensure time slot text turns black when selected */
.time-slot.selected {
    background-color: #C5A059 !important;
    color: #000000 !important; /* Force black text */
    border-color: #C5A059 !important;
}
.session-btn {
    flex: 1;
    height: 32px; /* Fixed height for consistent roundness */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px; /* This makes them perfectly round/pill-shaped */
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px; /* Slightly smaller text */
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.session-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.session-btn.active {
    background: #C5A059;
    color: black;
    border-color: #C5A059;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
    font-weight: 700;
}