/* Hero Section */
.hero-section .hero-image {
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Quick Links */
.quick-link-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Section Titles */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #333;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #0d6efd;
}

/* News Cards */
.news-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Event Date Box */
.date-box {
    width: 70px;
    text-align: center;
    line-height: 1.2;
}

/* Announcement Ticker */
.ticker-wrapper {
    position: relative;
    overflow: hidden;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Statistics */
.stat-item h3 {
    font-size: 2.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

/* Footer */
.site-footer {
    font-size: 0.95rem;
}

.footer-heading {
    color: #0d6efd;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #0d6efd;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section .hero-image {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
}