body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    scroll-behavior: smooth;
}

h2 {
    text-align: center;
    padding: 20px 0;
    font-size: 2rem;
    color: #1a1a1a;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.center-text {
    text-align: center;
}

.hero-section {
    position: relative;
}

.hero-image-container {
    height: 100vh;
    position: relative;
    background-image: url("../assets/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.logo-image {
    position: absolute;
    top: 50px;
    left: 20px;
    width: 250px;
    height: auto;
    z-index: 3;
}

@media (min-width: 768px) {
    .logo-image {
        top: 50px;
        left: 20px;
        width: 450px;
    }
}

.main-nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: #fff;
    font-weight: bold;
    padding: 5px 0;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #ff6347;
}

.nav-button {
    background-color: #ff6347;
    padding: 8px 15px;
    border-radius: 5px;
    margin-left: 40px;
}

.content-section {
    padding: 60px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.card {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.staff-section {
    background-color: #fff;
    padding-bottom: 100px;
}

.note {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.main-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 5px;
}

#calendar-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.calendar-section {
    width: 70%;
}

.section-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
}

.event-year {
    margin-top: 30px;
    font-size: 20px;
}

.year-events-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.event-item {
    background-color: #f0f0f0;
    border-radius: 5px;
    padding: 10px 15px;
    text-align: center;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.4;
    min-width: 120px;
    flex-grow: 1;
    flex-basis: auto;
}

.highlight-event {
    background-color: #e0e0e0;
    font-size: 24px;
    font-weight: bold;
    min-height: 100px;
    flex-basis: 300px;
    margin-top: 10px;
}

.highlight-event .date {
    font-size: 34px;
}

.container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.staff-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.staff-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ccc;
    margin-bottom: 10px;
}

.image-text {
    font-size: 16px;
    color: #333;
    margin: 0;
}

footer {
    height: 100px;
}