/* home.css */

/* 슬라이드 전체 박스 */
.photo-slider {
    max-width: 960px;
    margin: 5px auto 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* 슬라이드 이미지 컨테이너 */
.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
}

/* 개별 슬라이드 이미지 */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    opacity: 0;
    transition: opacity 1s ease;
}

/* 활성화된 슬라이드 */
.slide.active {
    opacity: 1;
}

/* 슬라이드 하단 점(dot) 컨테이너 */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    padding-bottom: 10px;
}

/* 개별 점(dot) 스타일 */
.dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* 활성화된 점(dot) */
.dot.active {
    background-color: #d32f2f;
}

/* 슬라이더 아래 공지/캘린더 구역 */
.home-bottom {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 공지:캘린더 = 1:2 비율 */
    gap: 20px;
    max-width: 960px;
    margin: 30px auto;
    padding: 0;
}

/* 공지사항 미리보기 */
.notice-preview {
    background-color: #fff8f0;
    border-left: 5px solid #d32f2f;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.notice-preview h3 {
    margin-top: 0;
    color: #d32f2f;
}

.notice-preview ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.notice-preview a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #d32f2f;
}
