/* =================================================== */
/* 1. Gövde ve Genel Ayarlar               */
/* =================================================== */

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5; /* Yeni, daha yumuşak arka plan rengi */
    margin-bottom: 60px; /* Footer için boşluk */
}


/* =================================================== */
/* 2. Element Stilleri                   */
/* =================================================== */

.display-4, .display-6 {
    font-weight: 500;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}


/* =================================================== */
/* 3. Responsive (Duyarlı) Tasarım Ayarları      */
/* =================================================== */

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}


/* =================================================== */
/* 4. YENİ: Giriş Sayfası Özel Stilleri          */
/* =================================================== */

.welcome-panel {
    background: linear-gradient(45deg, #0d6efd, #0056b3); /* Mavi gradient */
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    position: relative; /* Animasyonlu şekillerin konumlandırılması için */
    overflow: hidden; /* Şekillerin dışarı taşmasını engelle */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-content {
    position: relative; /* İçeriğin şekillerin üzerinde kalması için */
    z-index: 2;
    text-align: left;
}

.feature-list {
    padding-left: 0;
    list-style-type: none; /* Liste başındaki noktaları kaldır */
    margin-top: 2rem;
}

    .feature-list li {
        margin-bottom: 1rem;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
    }

    .feature-list i {
        margin-right: 10px;
        font-size: 1.2rem;
        width: 20px; /* İkonların hizalı durması için */
        text-align: center;
    }


/* Arka Plan Animasyonu için Geometrik Şekiller */
.welcome-panel::before,
.welcome-panel::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.08); /* Daha soluk baloncuklar */
    border-radius: 50%;
    z-index: 1;
    animation: floatAnimation 30s infinite linear;
}

.welcome-panel::before {
    width: 250px;
    height: 250px;
    top: -80px;
    left: -100px;
}

.welcome-panel::after {
    width: 350px;
    height: 350px;
    bottom: -120px;
    right: -150px;
    animation-duration: 40s; /* İkinci daire daha yavaş hareket etsin */
    animation-delay: -10s;
}

/* Animasyon Tanımı */
@keyframes floatAnimation {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(30px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}
