/* 전체 레이아웃 */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: #000; /* 배경색을 검정색으로 통일 */
    color: #ddd; /* 텍스트 색상 */
}

/* 헤더 스타일 */
#main-header {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #444;
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#main-header .logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#main-header .nav-menu {
    display: flex;
    align-items: center;
}

#main-header .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

#main-header .nav-menu ul li {
    display: inline-block;
}

#main-header .nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

#main-header .nav-menu ul li a:hover {
    color: #ccc;
}

/* 모바일에서 햄버거 메뉴 스타일 */
#main-header .hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: #fff;
}

/* 반응형 헤더 조정 */
@media (max-width: 768px) {
    #main-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    #main-header .logo a {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }

    #main-header .hamburger-menu {
        display: block;
    }

    #main-header .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #000;
        padding: 20px;
        border: 1px solid #444;
        border-radius: 8px;
    }

    #main-header .nav-menu.open {
        display: flex;
    }

    #main-header .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    #main-header .nav-menu ul li {
        text-align: right;
    }

    #main-header .nav-menu ul li a {
        font-size: 1.2rem;
    }
}

/* 메인 콘텐츠 */
.main-wrap {
    flex-grow: 1;
    background-color: #000;
    padding: 50px 0;
}

.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    padding: 50px 20px;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: cover;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #f5f5f5;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 15px;
}

/* 푸터 스타일 */
.site-footer {
    border-top: 1px solid #444;
    background-color: #000;
    padding: 40px 0;
    text-align: center;
}

.footer-bottom p {
    color: #f5f5f5;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    margin: 0;
}

.footer-bottom p::before {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #d4af37;
    margin: 0 auto 15px auto;
}

.footer-bottom p::after {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #aaa;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text h1 {
        font-size: 2.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-image img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }
}
