/* Ana Stiller */
:root {
    --primary-color: #AD1510;
    --secondary-color: #FF0000;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --accent-color: #FF5A5F;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #333;
}

/* Header Stiller */
.navbar {
    padding: 10px 0;
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    transition: all 0.3s ease;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-nav .nav-item {
    position: relative;
    margin: 0 5px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

/* Form Stiller */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 2rem;
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 2rem;
}

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(173, 21, 16, 0.15);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #555;
}

.form-text {
    color: #888;
    font-size: 0.85rem;
}

.btn {
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(173, 21, 16, 0.2);
}

.btn-primary:disabled {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 0.7;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Başvuru Takip Sayfası */
.progress-tracker {
    margin-top: 2rem;
}

.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #f0f0f0;
    margin-bottom: 1.5rem;
    overflow: visible;
}

.progress-bar {
    border-radius: 4px;
    position: relative;
    transition: width 1s ease;
}

.progress-step {
    position: relative;
    text-align: center;
}

.progress-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.progress-step-text {
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
    color: #666;
}

.alert {
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: none;
}

.alert-info {
    background-color: rgba(23, 162, 184, 0.1);
    color: var(--info-color);
}

.alert-heading {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.badge {
    padding: 0.5em 0.8em;
    font-weight: 500;
    border-radius: 6px;
}

/* Footer Stiller */
footer {
    background-color: var(--primary-color);
    margin-top: auto;
    padding: 20px 20;
    color: white;
}

footer p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Responsive Ayarlar */
@media (max-width: 992px) {
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px;
        margin: 5px 0;
    }
}

@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem;
    }
    
    .progress-step-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .progress-step-text {
        font-size: 0.75rem;
    }
    
    .navbar-brand img {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .card-body {
        padding: 1.25rem;
    }
    
    .progress-step-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .progress-step-text {
        font-size: 0.7rem;
    }
    
    .navbar-brand img {
        height: 45px;
    }
}

/* SweetAlert Özelleştirme */
.swal2-popup {
    font-family: 'Poppins', sans-serif;
    border-radius: 15px;
}

.swal2-styled.swal2-confirm {
    background-color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
}

.swal2-styled.swal2-confirm:hover {
    background-color: var(--secondary-color);
} 