/* General Page Styles */
body {
    background-color: #1A2134 !important;
    color: white;
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #1A2134 !important;
    color: white !important;
}

.navbar .nav-link {
    color: white !important;
    font-weight: bold;
}

.navbar .nav-link:hover {
    color: #00bcd4 !important;
}

/* Fix login and contact buttons */
.navbar .btn-primary {
    background-color: #007bff !important;
    border: none;
}

.navbar .btn-outline-dark {
    background-color: white !important;
    color: #1A2134 !important; /* Dark text to match theme */
    border-color: white !important;
}

.navbar .btn-outline-dark:hover {
    background-color: #e0e0e0 !important; /* Light gray on hover */
    color: #1A2134 !important;
}
/* Sponsor Section */
h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}
.text-center {
    color: white;
}

/* Sponsor Cards */
#sponsor-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.sponsor-card {
    background: #2A2F45;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    width: 200px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.sponsor-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

/* Sponsor Text */
.sponsor-card p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .sponsor-card {
        width: 150px;
    }

    h2 {
        font-size: 1.8rem;
    }
}
