/* Global Styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.light-mode {
    background-color: #f8f9fa;
    color: #212529;
}

body.dark-mode {
    background-color: #212529;
    color: #f8f9fa;
}

/* Navbar Styling */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand .logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #007bff !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #007bff;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

#theme-toggle {
    transition: all 0.3s ease;
}

/* Careers Header */
.careers-header {
    background: linear-gradient(135deg, #1a1a1a, #343a40);
}

.careers-header h1 {
    font-size: 3rem;
    font-weight: bold;
}

/* Job Listings */
.job-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
}

.dark-mode .job-card {
    background: #343a40;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.job-card h5 {
    font-size: 1.5rem;
    color: #007bff;
}

.job-card .btn-primary {
    background-color: #007bff;
    border: none;
    transition: background-color 0.3s ease;
}

.job-card .btn-primary:hover {
    background-color: #0056b3;
}

/* Application Form */
#career-form .form-control,
#career-form .form-select {
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

#career-form .form-control:focus,
#career-form .form-select:focus {
    border-color: #007bff;
    box-shadow: none;
}

#career-form .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s ease;
}

#career-form .btn-primary:hover {
    background-color: #0056b3;
}

/* Player Transfers & Trials */
#player-transfers h3 {
    color: #007bff;
}

#player-transfers ul li {
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-header h1 {
        font-size: 2rem;
    }

    .job-card {
        padding: 1rem;
    }
}

/* Footer Styling */
footer {
    background-color: #1a2526; /* Matches the dark background in the image */
}

footer h5 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer .footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-link:hover {
    color: #007bff;
}

footer .footer-link i {
    margin-right: 8px;
}

footer p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    footer .col-md-3 {
        margin-bottom: 2rem;
    }
}
/* Marquee */
.marquee {
    width: 100%;
    overflow: hidden;
    background: #1a2526;
    color: #ffd700; /* Yellow text on dark background */
    padding: 1.5rem 1;
    font-size: 4.5rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.footer-marquee .marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 13s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}