/* 페이지 구조 설정 */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow-x: clip; /* 가로 스크롤 방지 */
}

.content-wrapper {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    width: 100%;
    max-width: 1440px; /* 너비 증가 */
    margin: 0 auto;
}

/* 노란 톤의 footer 디자인 - 스크롤 문제 해결 */
.main-footer {
    color: white;
    padding: 20px 0 10px;
    width: 100%;
    margin-top: auto;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-inner {
    max-width: 1440px; /* 너비 증가 */
    margin: 0 auto;
    padding: 0 40px; /* 좌우 여백 증가 */
}

.footer-top {
    position: relative;
}


/* 기존 border-bottom 제거 */
.footer-top {
    border-bottom: none;
}

.footer-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-menu a {
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-menu a:hover {
    color: #FF6F00;
}

.footer-menu .divider {
    margin: 0 15px;
    color: white;
}

.footer-content {
    display: flex;
    align-items: center;
    padding: 20px 0; /* 상하 여백 추가 */
}

.footer-logo {
    margin-right: 60px; /* 로고와 텍스트 사이 간격 증가 */
}

.footer-logo img {
    height: 60px; /* 로고 크기 증가 */
}

.footer-info {
    flex: 1;
}

.footer-info p {
    margin: 5px 0;
    font-size: 14px;
}

.address {
    font-style: normal;
}

.copyright {
    font-size: 13px;
    margin-top: 10px;
}

/* 반응형 처리 */
@media (max-width: 1440px) {
    .footer-inner {
        max-width: 100%;
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .footer-inner {
        padding: 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
    }
    
    .footer-logo {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-logo img {
        height: 50px;
    }
} 