* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: linear-gradient(120deg, #f8f6f3 60%, #eaf0fa 100%);
    min-height: 100vh;
    transition: background-color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 네비게이션 스타일 */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px 0 60px;
    background: transparent;
}

.navbar .logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    letter-spacing: -2px;
}

.navbar .menu {
    display: flex;
    gap: 36px;
}

.navbar .menu a {
    text-decoration: none;
    color: #222;
    font-size: 1.15rem;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar .menu a:hover {
    color: #ff7e5f;
}

/* 햄버거 버튼 스타일 */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.menu-toggle .bar {
    width: 28px;
    height: 4px;
    background: #222;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 메인 섹션 스타일 */
.main-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-top: 60px;
    padding: 0 60px;
}

.info-block {
    flex: 1 1 400px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 32px 28px 32px 28px;
    display: flex;
    flex-direction: column;
    min-width: 320px;
    max-width: 500px;
    min-height: 400px;
}

.info-block h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.scroll-box {
    background: #fcfcfc;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 20px 18px;
    overflow-y: auto;
    height: 320px;
    font-size: 1.08rem;
    color: #333;
    line-height: 1.7;
    position: relative;
}

.scroll-box::-webkit-scrollbar {
    width: 8px;
}

.scroll-box::-webkit-scrollbar-thumb {
    background: #ececec;
    border-radius: 8px;
}

.scroll-box .icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    color: #ff7e5f;
    font-size: 1.2em;
}

/* 갤러리 섹션 */
.gallery-section {
    width: 100%;
    margin: 48px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.gallery-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
}
.gallery-item img {
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    margin-bottom: 12px;
}
.gallery-caption {
    background: #ededed;
    color: #222;
    font-size: 1.08rem;
    border-radius: 12px;
    padding: 10px 18px;
    margin-top: -8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.gallery-controls {
    display: flex;
    gap: 18px;
    justify-content: center;
}
.gallery-btn {
    background: #ededed;
    color: #222;
    border: none;
    border-radius: 12px;
    padding: 12px 32px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.gallery-btn.next {
    background: #222;
    color: #fff;
}
.gallery-btn:hover {
    filter: brightness(0.95);
}

/* 반응형 디자인 */
@media (max-width: 1000px) {
    .main-section {
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
    }
    .info-block {
        max-width: 100%;
    }
    .gallery-wrapper {
        gap: 18px;
    }
    .gallery-item img {
        width: 220px;
        height: 160px;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: row;
        gap: 0;
        padding: 18px 8px 0 8px;
        position: relative;
    }
    
    .navbar .logo {
        font-size: 1.5rem;
    }
    
    /* 모바일에서 햄버거 버튼 숨김 */
    .menu-toggle {
        display: none !important;
    }
    
    /* 모바일에서 메뉴 숨김 */
    .navbar .menu {
        display: none !important;
    }
    
    .main-section {
        padding: 0 2px;
        margin-top: 24px;
    }
    
    .info-block {
        padding: 18px 6px 18px 6px;
        min-width: 0;
        border-radius: 14px;
    }
    
    .info-block h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .scroll-box {
        height: 220px;
        font-size: 0.98rem;
        padding: 12px 6px;
        border-radius: 10px;
    }
    .gallery-wrapper {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .gallery-item img {
        width: 90vw;
        max-width: 320px;
        height: 38vw;
        max-height: 180px;
    }
    .gallery-caption {
        font-size: 0.98rem;
        padding: 8px 10px;
    }
    .gallery-controls {
        gap: 10px;
    }
    .gallery-btn {
        padding: 10px 18px;
        font-size: 1rem;
    }
}

/* 데스크탑에서는 햄버거 버튼 숨김, 메뉴 표시 */
@media (min-width: 601px) {
    .menu-toggle {
        display: none !important;
    }
    
    .navbar .menu {
        display: flex !important;
    }
} 

.info-banner {
    width: 100%;
    max-width: 700px;
    margin: 48px auto 0 auto;
    background: #ededed;
    color: #222;
    border-radius: 24px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    padding: 38px 24px;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1.7;
}
@media (max-width: 600px) {
    .info-banner {
        font-size: 1.05rem;
        padding: 22px 8px;
        border-radius: 14px;
        margin-top: 28px;
    }
} 

.contact-section {
    width: 100%;
    margin: 80px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #222;
    letter-spacing: -1px;
}
.contact-content {
    font-size: 1.25rem;
    color: #222;
    text-align: center;
    line-height: 2.1;
    margin-bottom: 40px;
}
.contact-link {
    color: #2a3cff;
    text-decoration: underline;
    font-weight: 500;
}
.contact-link:hover {
    color: #1a2a99;
}

.footer {
    width: 100%;
    background: #222;
    color: #fff;
    margin-top: 80px;
    padding: 48px 0 36px 0;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
    padding: 0 32px;
}
.footer-col {
    flex: 1 1 180px;
    min-width: 160px;
    margin-bottom: 18px;
}
.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.footer-desc {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #e0e0e0;
}
.footer-social {
    display: inline-block;
    margin-top: 8px;
    transition: transform 0.2s;
}
.footer-social:hover {
    transform: scale(1.12);
}
.footer-social svg {
    vertical-align: middle;
}
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        gap: 0;
        padding: 0 10px;
    }
    .footer-col {
        margin-bottom: 32px;
    }
}
@media (max-width: 600px) {
    .contact-title {
        font-size: 2rem;
        margin-bottom: 28px;
    }
    .contact-content {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    .footer {
        padding: 32px 0 18px 0;
    }
    .footer-title {
        font-size: 1.08rem;
        margin-bottom: 10px;
    }
    .footer-desc {
        font-size: 0.95rem;
    }
} 

.map-container {
    width: 100%;
    max-width: 540px;
    margin: 0 auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.map-container iframe {
    width: 100%;
    min-height: 220px;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-top: 32px;
}
@media (max-width: 600px) {
    .map-container {
        max-width: 98vw;
    }
    .map-container iframe {
        min-height: 160px;
        margin-top: 18px;
        border-radius: 10px;
    }
} 