/* Modern Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #c7010d; /* Sınav Kırmızısı */
    --secondary-color: #0d1e4c; /* Sınav Laciverti */
    --text-color: #333;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
}

/* --- Tipografi & Puntolar --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.fs-18 { font-size: 1.125rem !important; } /* 18px */
.fs-15 { font-size: 0.9375rem !important; } /* 15px */
.fs-13 { font-size: 0.8125rem !important; } /* 13px */

/* --- Header Responsive Düzenlemeleri --- */
@media (min-width: 1200px) and (max-width: 1450px) {
    /* Laptop ekranlarında menüyü biraz sıkıştır */
    .webmenu li a {
        font-size: 13px !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    .logo img {
        height: 40px !important;
    }
}

header .webmenu li a {
    font-weight: 500 !important;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* --- Footer Düzenlemeleri --- */
footer {
    font-size: 0.95rem;
}

footer .cp-font {
    font-weight: 600;
    letter-spacing: 1px;
}

footer a {
    text-decoration: none !important;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
}

/* --- Kart (Card) Tasarımları --- */
.card, .border.p-md-5 {
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Form Elemanları */
.form-control, .form-select {
    border-radius: 8px !important;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(199, 1, 13, 0.15);
}

/* Butonlar */
.btn {
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: #a0010b !important;
    border-color: #a0010b !important;
    transform: translateY(-2px);
}

/* Ön Kayıt Butonu Özel - Lacivert */
.btn-navy {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #fff !important;
}

.btn-navy:hover {
    background-color: #071233 !important;
    border-color: #071233 !important;
    transform: translateY(-2px);
}

.btn-rounded-pill {
    border-radius: 50px !important;
}

/* Mobil Menü */
@media (max-width: 991px) {
    .mobile-menu {
        background-color: var(--secondary-color);
    }
    .sinav_menu {
        padding: 0 !important;
    }
}
