/* Tavlahane Özel Stil Dosyası */

/* Arka plan gradyanı ve canlılık */
.bg-premium-dark {
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
}

/* Cam Efekti (Glassmorphism) */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* Altın Sarısı Parlama Efekti */
.glow-text {
    text-shadow: 0 0 15px rgba(234, 179, 8, 0.4);
}

/* Zar Animasyonu (Vibrant/Canlılık için) */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating-dice {
    animation: float 4s ease-in-out infinite;
}

/* Responsive Logo Ayarı */
.site-logo {
    max-width: 200px;
    height: auto;
}

@media (max-width: 768px) {
    .site-logo {
        max-width: 150px;
    }
}

/* Modal Arka Planı */
#demoModal {
    display: none; /* Başlangıçta gizli */
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

/* Input Alanları */
.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #eab308;
    outline: none;
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

/* Sosyal Medya İkonları */
.social-icon {
    transition: all 0.3s ease;
    opacity: 0.6;
}
.social-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: #eab308;
}

/* Kayan Yorum Bandı Animasyonu */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 4)); } /* Yorum sayısına göre ayarlanır */
}

.testimonial-slider {
    display: flex;
    width: calc(250px * 8); /* Yorumların toplam genişliği */
    animation: scroll 40s linear infinite;
}

.testimonial-slider:hover {
    animation-play-state: paused; /* Üzerine gelince durur */
}

.testimonial-card {
    width: 350px;
    flex-shrink: 0;
    margin-right: 2rem;
}

/* Logo Bandı Animasyonu */
@keyframes logo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* İçerik iki katı olduğu için tam yarısında başa döner */
}

.logo-slider-container {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

/* Yanlardan yumuşak geçiş (fade) efekti */
.logo-slider-container::before,
.logo-slider-container::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}
.logo-slider-container::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, #0f172a 0%, transparent 100%);
}
.logo-slider-container::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, #0f172a 0%, transparent 100%);
}

.logo-track {
    display: flex;
    width: calc(250px * 20); /* 10 logo + 10 kopya = 20 logo genişliği */
    animation: logo-scroll 30s linear infinite;
}

.logo-item {
    width: 250px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 40px;
}

.logo-item img {
    max-height: 45px;
    width: auto;
    filter: grayscale(100%) brightness(150%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
    transform: scale(1.1);
}

/* Başlık Çizgisi */
.section-title-line {
    display: flex;
    align-items: center;
    gap: 15px;
}
.section-title-line::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(234, 179, 8, 0.3), transparent);
}

