﻿/* Custom Stiller */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a; /* Çok koyu bir arka plan */
    color: #e5e7eb; /* Kirli beyaz metin */
}

/* Sayfanın yumuşak kaymasını sağlar */
html {
    scroll-behavior: smooth;
}

/* Arka plan video için karartma efekti */
.hero-video-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Hero bölümündeki içeriğin videonun üstünde kalmasını sağlar */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Yatay kayan portfolyo alanı için scrollbar'ı gizle */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Fiyatlandırma kartı için vurgu rengi */
.popular-package {
    border-color: #3b82f6; /* Mavi vurgu */
    transform: scale(1.02);
}

/* Animasyon için */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .fade-in-section.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Dönen metin animasyonu için */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin 15s linear infinite;
}

/* Sağdan Sola Kayan Marquee Animasyonu */
@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 40s linear infinite;
    will-change: transform;
}

/* Popup (Modal) Stilleri */
.modal {
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-content {
    transition: transform 0.25s ease;
}


/* YENİ EKLENDİ: Akordiyon (SSS) Stilleri */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

/* 'open' class'ı eklendiğinde içeriği açar */
.accordion-item.open .accordion-content {
    /* max-height değeri içeriğinize göre ayarlanmalı, 
       JS bunu otomatik yapacak (scrollHeight) */
}

/* 'open' class'ı eklendiğinde ikonu döndürür */
.accordion-item.open .accordion-header i {
    transform: rotate(180deg);
}


/* YENİ EKLENDİ: Toast Bildirim Stilleri */
#toast-notification {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    #toast-notification.show {
        opacity: 1;
        transform: translateX(0);
    }

    #toast-notification.bg-error {
        background-color: #dc2626; /* Tailwind red-600 */
    }

    #toast-notification.bg-success {
        background-color: #16a34a; /* Tailwind green-600 */
    }

/* YENİ EKLENDİ: ASP.NET Date Input için stil */
/* Chrome, Safari, Edge, Opera */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1); /* İkonu koyu temaya uygun hale getirir */
    cursor: pointer;
}
