/* Randevu Sayfası CSS - Ana sayfa ile aynı tasarım */

/* Randevu container */
.randevu-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Canlı saat bölümü */
.canlı-saat {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.1) 0%, rgba(30, 30, 30, 0.8) 50%, rgba(20, 20, 20, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid rgba(255, 111, 0, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 111, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.canlı-saat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-color), #ff9e42, var(--highlight-color));
    border-radius: 20px 20px 0 0;
}

.saat-icerik {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    color: white;
}

.saat-kutu {
    background: rgba(255, 111, 0, 0.1);
    border: 1px solid rgba(255, 111, 0, 0.3);
    border-radius: 15px;
    padding: 15px 25px;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
    transition: all 0.3s ease;
}

.saat-kutu:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.5);
}

.saat-kutu h3 {
    font-size: 2.5rem;
    margin: 0;
    color: var(--highlight-color);
    text-shadow: 0 0 10px rgba(255, 111, 0, 0.5);
    font-weight: 700;
}

.saat-kutu p {
    margin: 8px 0 0;
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

.tarih-bilgisi {
    margin-top: 20px;
    font-size: 1.3rem;
    color: var(--highlight-color);
    font-weight: 500;
}

/* Randevu bölümleri */
.randevu-bölümleri {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.randevu-kart {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.1) 0%, rgba(30, 30, 30, 0.8) 50%, rgba(20, 20, 20, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 111, 0, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 111, 0, 0.1);
}

.randevu-kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-color), #ff9e42, var(--highlight-color));
    border-radius: 20px 20px 0 0;
}

.randevu-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 111, 0, 0.3), 0 0 40px rgba(255, 111, 0, 0.2);
    border-color: rgba(255, 111, 0, 0.4);
}

.randevu-kart h3 {
    color: var(--highlight-color);
    font-size: 1.5rem;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.randevu-kart h3 i {
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 111, 0, 0.5);
}

.randevu-kart p {
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.9;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Takvim */
.takvim {
    margin: 25px 0;
}

.takvim-baslik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.takvim-baslik h4 {
    font-size: 1.3rem;
    color: var(--highlight-color);
    margin: 0;
    font-weight: 600;
}

.takvim-kontroller {
    display: flex;
    gap: 10px;
}

.takvim-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.takvim-btn:hover {
    background: var(--highlight-color);
    color: white;
    transform: scale(1.1);
    border-color: var(--highlight-color);
}

.takvim-günler {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.gün-isimleri {
    font-weight: 600;
    color: var(--highlight-color);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.gün-isimleri span {
    padding: 8px 0;
}

.takvim-günleri {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.gün {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.gün:hover {
    background: rgba(255, 111, 0, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 111, 0, 0.3);
}

.gün.bugun {
    background: rgba(255, 111, 0, 0.3);
    border: 1px solid var(--highlight-color);
    color: white;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.3);
}

.gün.secili {
    background: var(--highlight-color);
    color: white;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.5);
    border-color: var(--highlight-color);
}

.gün.devre-disi {
    opacity: 0.3;
    cursor: not-allowed;
}

.durum-noktası {
    position: absolute;
    bottom: 3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.müsait {
    background-color: #00c853;
}

.kısmen-dolu {
    background-color: #ffc107;
}

.dolu {
    background-color: #f44336;
}

/* Saatler */
.saatler {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.saat-slot {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-weight: 500;
}

.saat-slot:hover {
    background: rgba(255, 111, 0, 0.2);
    border-color: var(--highlight-color);
    transform: translateY(-2px);
}

.saat-slot.secili {
    background: var(--highlight-color);
    color: white;
    border-color: var(--highlight-color);
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.5);
}

.saat-slot.dolu {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Durum göstergesi */
.durum-gösterge {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px 0;
}

.durum-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.durum-renk {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Randevu formu */
.randevu-formu {
    margin-top: 30px;
    display: none;
}

.form-grup {
    margin-bottom: 18px;
}

.form-grup label {
    display: block;
    margin-bottom: 8px;
    color: var(--highlight-color);
    font-weight: 500;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 15px;
    border-radius: 12px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 2px rgba(255, 111, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.randevu-btn {
    background: var(--button-background);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.5);
}

.randevu-btn:hover {
    background: var(--button-hover-background);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.7);
}

/* Özet bölümü */
.özet-bölüm {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.1) 0%, rgba(30, 30, 30, 0.8) 50%, rgba(20, 20, 20, 0.9) 100%);
    border-radius: 20px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid rgba(255, 111, 0, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 111, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.özet-bölüm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-color), #ff9e42, var(--highlight-color));
    border-radius: 20px 20px 0 0;
}

.özet-başlık {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--highlight-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.özet-başlık i {
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 111, 0, 0.5);
}

.özet-liste {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.özet-madde {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.özet-madde .etiket {
    color: rgba(255, 255, 255, 0.7);
}

.özet-madde .değer {
    color: var(--highlight-color);
    font-weight: 600;
}

.emoji {
    font-style: normal;
    font-size: 1.2em;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Randevu başlık */
.randevu-baslik {
    text-align: center;
    margin-bottom: 40px;
}

.randevu-baslik h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 0 15px var(--highlight-color),
                0 0 25px var(--highlight-color);
    font-weight: 700;
}

.randevu-baslik p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .randevu-bölümleri {
        grid-template-columns: 1fr;
    }

    .saat-icerik {
        flex-direction: column;
        gap: 15px;
    }

    .randevu-baslik h2 {
        font-size: 2.2rem;
    }

    .gün {
        font-size: 0.8rem;
    }
    
    .randevu-kart {
        padding: 20px;
    }
    
    .canlı-saat {
        padding: 20px;
    }
    
    .saat-kutu {
        min-width: 100px;
        padding: 12px 20px;
    }
    
    .saat-kutu h3 {
        font-size: 2rem;
    }
    
    .durum-gösterge {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .randevu-baslik h2 {
        font-size: 1.8rem;
    }
    
    .randevu-baslik p {
        font-size: 1rem;
    }
    
    .saat-kutu h3 {
        font-size: 1.8rem;
    }
    
    .tarih-bilgisi {
        font-size: 1.1rem;
    }
    
    .randevu-kart h3 {
        font-size: 1.3rem;
    }
}

/* Fare Hareketleri */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overscroll-behavior-y: contain;
}
