/* 페이드인 애니메이션 키프레임 */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 배경 이미지 스케일 애니메이션 키프레임 */
@keyframes scaleBackground {
    0% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* 비주얼 배너 스타일 */
.visual-banner {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.eco_logo {
    text-align: center;
    animation: fadeInUp 2s ease-out 0.5s both;
}

.eco_logo img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.eco_logo img{}

.visual-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    animation: scaleBackground 5s ease-out;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-content {
    text-align: center;
    color: white;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

.visual-title {
    font-size: 2.8rem;
    font-family: 'GmarketSansMedium' !important;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.visual-message {
    font-size: 1.2rem;
    font-family: 'GmarketSansLight';
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
    letter-spacing: 0.5px;
    line-height: 1.4;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .visual-banner {
        height: 250px;
    }

    .visual-title {
        font-size: 2.2rem;
    }

    .visual-message {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .visual-banner {
        height: 200px;
    }

    .visual-title {
        font-size: 1.8rem;
    }

    .visual-message {
        font-size: 1rem;
    }
    .container {
            padding: 0 0 !important;
    }
}

/* 컨테이너 스타일 (base.css와 일관성 유지) */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 ;
    }
    .eco_logo img {
        max-width: 50px;
    }
}

@media (max-width: 480px) {

    .eco_logo img {
        max-width: 40px;
    }
}