body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Slideshow */
.slideshow-container {
    position: relative;
    max-height: 500px;
    overflow: hidden;
    background: #000;
}

.slideshow-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: none;
}

.slideshow-container img.active {
    display: block;
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-align: center;
}

/* Cards */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* News and Events cards */
.news-card, .event-card {
    height: 100%;
}

.news-card img, .event-card img {
    height: 200px;
    object-fit: cover;
}

/* Content sections */
.content-section {
    padding: 60px 0;
}

.section-title {
    margin-bottom: 40px;
    text-align: center;
}

.section-title h2 {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

/* Footer */
footer {
    background: #343a40;
    color: #fff;
}

footer a {
    color: #adb5bd;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
}

/* Announcement badge */
.announcement-new {
    position: relative;
}

.announcement-new::before {
    content: 'NEW';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}