:root {
    --py-blue: #3776AB;
    --py-yellow: #FFD43B;
    --py-yellow-hover: #fbd754;
    --dark-text: #333;
}

@font-face {
  font-family: 'OpenSans';
  src: url('../font/OpenSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

body {
    font-family: 'OpenSans' !important;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar {
    background-color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.badge {
    color: white;
    background-color: var(--dark-text);
}

.navbar-brand {
    font-weight: 700;
    color: var(--py-blue) !important;
    font-size: 1.5rem;
}

.navbar-brand span {
    color: #f39c12;
}

.nav-main-links {
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    background-color: var(--py-blue);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    color: #fff;
    border: none;
}

.btn-warning {
    background-color: var(--py-yellow);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    color: #000;
    border: none;
}

.btn-warning:hover {
    background-color: var(--py-yellow-hover);
    color: #000;
    border: none;
}

.btn-primary:hover {
    background-color: #2a5b88;
    color: #fff;
}

.btn-primary:active {
    background-color: #2a5b88 !important;
    color: #fff !important;
}

.btn-warning:active {
    background-color: var(--py-yellow-hover) !important;
}

/* Job Cards */
.job-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s;
    background: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.job-card:hover {
    transform: translateY(-3px);
    border-color: var(--py-blue);
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.badge-type {
    background-color: #e3f2fd;
    color: var(--py-blue);
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--py-blue) 0%, #2a5b88 100%);
    color: white;
    padding: 60px 0;
}

.border-left-retro-warning {
        border-left: 5px solid #ffc107 !important;
}

.form-control,
.form-select  {
    font-size: 0.9rem;
    border-radius: 12px;
    padding: .8rem 1rem;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.bg-dark {
    background: linear-gradient(135deg, #212529 0%, #343a40 100%) !important;
}

.form-control:focus,
.form-select:focus,
.form-control:active,
.form-select:active {
    outline: 0 !important;
    box-shadow: 0 0 0 0.25rem rgba(55, 118, 171, 0.15) !important;
    border-color: #3776ab;
}

.form-control:focus-visible {
    outline: none;
}

.bg-primary {
    background: linear-gradient(135deg, #3776ab 0%, #2b5b84 100%) !important;
}

textarea.form-control {
    border-radius: .75rem !important;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    resize: vertical;
}

input[type="file"].form-control {
    padding-top: 0.375rem;
    height: auto;
}

/* Mobil Düzenlemeler */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    }

    .navbar-nav {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px;
    }

    .nav-item {
        width: 100%;
        margin: 0 !important;
    }

    .nav-item .btn {
        width: 100%;
        text-align: center;
    }

    .user-welcome-text {
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
        width: 100%;
        display: block;
    }
}