/* General Styles */
header {
    background: url('../images/gal_im4_crop.JPG') no-repeat center top/cover;
    color: white;
    text-shadow: 2px 2px 5px black;
}

#academics h4, #funbox div {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
}

footer {
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Upcoming Events Section */
.event-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.event-card:hover {
    transform: scale(1.03);
}

.event-date {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
}

.event-info {
    flex-grow: 1;
    padding: 20px;
}

.event-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.event-time,
.event-location {
    font-size: 0.9rem;
    color: #666;
}

.btn-outline-primary,
.btn-outline-success,
.btn-outline-warning {
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
}

.join-us-section {
    background-color: #fff; /* Light background */
    padding: 50px 0;
}

.join-us-section h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #343a40;
}

.join-us-section p {
    font-size: 1rem;
    color: #6c757d;
}

.join-us-section .btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.join-us-section .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.join-us-section .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.join-us-section .btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

.join-us-section .img-fluid {
    max-width: 80%; /* Slightly reduce the image size */
    border-radius: 10px; /* Optional rounded corners */
}
/* Footer */
.footer {
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
    padding: 50px 0;
    font-size: 0.9rem;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
}

.footer p,
.footer a {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer a.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

/* Social Media Links */
.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.social-icons a {
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.8);
    color: #0056b3;
}

.embed-responsive iframe {
    border-radius: 10px;
    border: 2px solid #007bff;
}
