/* Notice Section */
.notice-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: var(--bg-light);
}

.notice-card {
    background: #fff;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    padding: 30px;
    animation: fadeInUp 1s ease forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.notice-title {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    text-align: center;
    animation: slideInDown 1s ease;
}

.notice-date {
    font-size: 0.9rem;
    color: var(--color-light);
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
}

.notice-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    animation: zoomIn 1.2s ease;
}

.notice-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.notice-image img:hover {
    transform: scale(1.05);
}

.notice-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    animation: fadeIn 1.4s ease;
    text-align: justify;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .notice-card {
        padding: 20px;
    }

    .notice-title {
        font-size: 1.5rem;
    }

    .notice-description {
        font-size: 1rem;
    }
}
