﻿@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:wght@300;400;500;600;700&display=swap');

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin-bottom: 60px;
    background-color: #fbfbfd;
}

.titleBen {
    color: #0077be;
}

.titleFikrim {
    color: #ff7f00;
}
.titlePau {
    color:#0072CE;
}
.bg-afis {
    background-color: #eceffb;
}

.titleTema1 {
    color: #e9e9e9;
    font-weight: 900;
}
.titleTema2 {    
    color: #37393b;
    font-weight: 900;
}

.card a,
.footer a {
    text-decoration: none;
    color: #a0a0a0;
}
    .card a:hover {
        text-decoration: none;
        color: #bfbfbf;
    }


/* 📌 Pastel tonlarda modern input */
.tc-input {
    width: 100%;
    max-width: 400px; /* Masaüstünde genişlik sınırı */
    padding: 14px; /* Daha büyük iç boşluk */

    border: 2px solid #d4a5a5; /* Pastel pembe kenarlık */
    border-radius: 10px; /* Hafif yuvarlatılmış kenarlar */
    text-align: center; /* Metni ortala */
    background-color: #f8f3f3; /* Açık pastel pembe arka plan */
    box-shadow: 0px 2px 10px rgba(212, 165, 165, 0.3); /* Hafif pastel gölge */
    transition: all 0.3s ease-in-out;
}

    /* 📌 Kullanıcı inputa tıkladığında daha belirgin hale gelir */
    .tc-input:focus {
        border-color: #c48f8f; /* Biraz daha koyu pastel pembe */
        box-shadow: 0px 4px 15px rgba(196, 143, 143, 0.5);
        outline: none;
    }

/* 📌 Butonu daha pastel ve şık hale getir */
.sorgula-btn {
  
    font-weight: bold; /* Kalın font */
    padding: 14px 22px; /* Büyük buton */
    border-radius: 8px; /* Hafif yuvarlak köşeler */
    background: #9ec5cf; /* Açık pastel mavi */
    border: none;
    color: #fff; /* Beyaz yazı */
    box-shadow: 0px 4px 10px rgba(158, 197, 207, 0.3); /* Hafif mavi gölge */
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

    /* 📌 Butona tıklanınca daha belirgin hale gelir */
    .sorgula-btn:hover {
        transform: scale(1.05);
        background: #7ea4b3; /* Hafif koyu pastel mavi */
        box-shadow: 0px 6px 12px rgba(126, 164, 179, 0.5);
    }


.card-body {
    background: #f8f9fa; /* Hafif gri arka plan */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}



@media (max-width: 768px) {
    .col-md-4, .col-md-8 {
        text-align: center; /* Mobilde ortalama */
    }

    .row.align-items-center {
        flex-direction: column; /* Mobilde alt alta gelsin */
    }

}



.explanation {
    font-size: 14px; /* Açıklamaları biraz küçük yap */
    color: #555; /* Açıklamaların rengini hafif gri yap */
    margin-top: 5px;
    font-style: italic; /* Açıklamaları italik yaparak daha estetik hale getir */
}

.alert-warning {
    background-color: #9ec5cf;
    color: #d32f2f;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border: 2px solid #d32f2f;
    border-radius: 8px;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}