/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide-inner {
    position: relative;
}

.slide-bg {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    z-index: 1;
    color: var(--light-color);
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-color);
}

.title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Notice Board Section */
.notice-board-section {
    background-color: var(--light-color);
}

.notice-heading {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.notice-box {
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--white-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.notice-list li:last-child {
    border-bottom: none;
}

.notice-list li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding-left: 1.5rem;
    position: relative;
}

.notice-list li a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.notice-list li a:hover {
    color: var(--primary-color);
}

/* Events Section */
.section-tag {
    color: var(--primary-color);
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.event-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    position: relative;
    padding-top: 60%;
}

.event-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-align: center;
}

.date-day {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.date-month {
    font-size: 0.875rem;
    text-transform: uppercase;
}

.event-content {
    padding: 1.5rem;
}

.event-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.event-description {
    color: var(--text-color);
    margin-bottom: 0;
}

.btn-view-all {
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
}

.btn-view-all:hover {
    transform: translateX(5px);
    background-color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .event-card {
        margin-bottom: 1.5rem;
    }
} 