@charset "UTF-8";

/* --- 섹션 공통 스타일 --- */
section { width: 100%; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 100px 20px; }

/* 히어로 섹션 */
.hero {
    position: relative; color: white; overflow: hidden; padding: 0;
    background: #000;
}
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-slider::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); z-index: 2; }
.hero-slider img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 2s ease-in-out, transform 8s linear;
    transform: scale(1);
}
.hero-slider img.active { opacity: 1; transform: scale(1.1); z-index: 1; }

.hero-text { 
    font-size: clamp(40px, 6vw, 72px); font-weight: 700; text-align: center; 
    animation: fadeInUp 1s; position: relative; z-index: 3; text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* 정보 섹션 */
.info-section { background: #fdfdfd; }
.info-section:nth-child(even) { background: #f4f4f4; }
.section-tag { color: #d4af37; /* 변수 대신 직접 코드 사용하거나 main.css 상단에 변수 다시 선언 */ font-weight: 700; font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.section-title { font-size: 42px; font-weight: 800; margin-bottom: 20px; color: #1a0b2e; }
.section-desc { font-size: 18px; color: #666; margin-bottom: 50px; text-align: center; max-width: 700px; }

.image-container { 
    width: 90%; max-width: 1100px; height: 550px; 
    border-radius: 30px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    position: relative; margin-top: 30px;
}
.image-container img { 
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; object-fit: cover; 
    opacity: 0; transition: opacity 1.5s ease-in-out;
    transform: scale(1);
}
.image-container img.active { opacity: 1; transform: scale(1); z-index: 1; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }