:root {
    /* 스파 & 웰니스 컬러 팔레트 - 이미지 기반 */
    --dark-bg: #121212;
    --dark-secondary: #252525;
    --dark-accent: #1e1e1e;
    --warm-glow: #e8a87c;
    --warm-light: #c88c3c;
    --warm-dark: #b27b32;
    --stone-light: #a69789;
    --stone-medium: #8c7d72;
    --stone-dark: #6e635a;
    --flower-light: #f5c4d8;
    --flower-medium: #e498b5;
    --flower-dark: #c35f85;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    
    /* New variables for improved card styling */
    --card-bg: #1e1e1e;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --accent-color: #e8a87c;
    --accent-hover: #d99767;
}

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

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    background-attachment: fixed;
    /* 미묘한 그라데이션 배경 */
    background-image: linear-gradient(to bottom, var(--dark-bg), #121212);
}

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

/* 헤더 스타일 */
header {
    background-color: rgba(25, 25, 25, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--dark-accent);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* 모바일 메뉴 버튼 스타일 */
.mobile-menu-btn {
    display: none; /* 기본적으로 모바일 메뉴 버튼 숨김 */
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo span {
    color: var(--warm-glow);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--warm-glow);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--warm-glow);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* 언어 선택기 스타일 */
.language-selector {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.lang-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    margin: 0 2px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.lang-btn.active {
    background-color: var(--warm-glow);
    color: var(--dark-bg);
    border-color: var(--warm-glow);
}

.lang-btn:hover:not(.active) {
    color: var(--warm-glow);
    border-color: var(--warm-glow);
}

/* 영웅 섹션 - 어두운 배경에 촛불 효과 */
.hero-no-image {
    height: 100vh;
    background-color: var(--dark-bg);
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    margin-top: 70px;
    overflow: hidden;
}

/* 촛불 효과 */
.candle-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(230, 163, 85, 0.15), transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(230, 163, 85, 0.1), transparent 40%);
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.hero-no-image .hero-content {
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-no-image h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
    letter-spacing: 1px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-no-image p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    color: var(--text-muted);
}

.cta-button {
    display: inline-block;
    background-color: var(--warm-glow);
    color: var(--dark-bg);
    padding: 15px 35px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 163, 85, 0.3);
}

.cta-button:hover {
    background-color: var(--warm-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 163, 85, 0.4);
}

/* 서비스 섹션 */
.services {
    padding: 100px 0;
    background-color: var(--dark-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><rect width="400" height="400" fill="none"/><filter id="noise" x="0%" y="0%" width="100%" height="100%"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="2" stitchTiles="stitch" seed="1"/><feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.15 0"/></filter><rect width="400" height="400" filter="url(%23noise)" opacity="0.4" fill="%23000000"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    font-size: 2.5rem;
    color: var(--text-light);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--warm-glow);
    margin: 20px auto 0;
}

.section-title span {
    color: var(--warm-glow);
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    margin-top: -0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Service Cards */
.service-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content > * {
    opacity: 1 !important;
    visibility: visible !important;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 12px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--warm-glow);
}

.service-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffc56d !important;
    display: block !important;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Price and booking section */
.service-price-booking {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price {
    color: #ffc56d !important;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Add a specific style for the "X분" part to make sure it has the same color and font weight */
.price span, 
.price em,
.service-content .price,
.service-content .service-price {
    color: #ffc56d !important;
    font-weight: 600;
}

.booking-btn {
    background-color: transparent;
    color: #ffc56d;
    border: 1px solid #ffc56d;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    background-color: #ffc56d;
    color: var(--dark-bg);
}

/* 테스티모니얼 섹션 */
.testimonials {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(230, 163, 85, 0.1), transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--dark-accent);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    margin: 20px;
    position: relative;
    border-left: 5px solid var(--flower-medium);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    opacity: 0.5;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid var(--dark-secondary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 어바웃 섹션 */
.about {
    padding: 120px 0;
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><rect width="400" height="400" fill="none"/><filter id="noise" x="0%" y="0%" width="100%" height="100%"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="2" stitchTiles="stitch" seed="2"/><feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.15 0"/></filter><rect width="400" height="400" filter="url(%23noise)" opacity="0.4" fill="%23000000"/></svg>');
    opacity: 0.4;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 15px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--warm-glow);
}

.about-text p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* 예약 섹션 */
.booking {
    padding: 120px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><rect width="400" height="400" fill="none"/><filter id="noise" x="0%" y="0%" width="100%" height="100%"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="2" stitchTiles="stitch" seed="3"/><feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.15 0"/></filter><rect width="400" height="400" filter="url(%23noise)" opacity="0.4" fill="%23000000"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--dark-accent);
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    border-top: 5px solid var(--warm-glow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-light);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--warm-glow);
    box-shadow: 0 0 0 3px rgba(230, 163, 85, 0.1);
    background-color: rgba(255, 255, 255, 0.07);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background: var(--warm-glow);
    color: var(--dark-bg);
    border: none;
    padding: 15px 35px;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 163, 85, 0.2);
    display: inline-block;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: var(--warm-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 163, 85, 0.3);
}

.submit-button:active {
    transform: translateY(1px);
}

/* 콘택트 섹션 */
.contact {
    padding: 120px 0;
    background-color: var(--dark-secondary);
    color: var(--text-light);
    position: relative;
}

/* 온라인 연결 섹션 */
.connect {
    padding: 120px 0;
    background-color: var(--dark-bg);
    color: var(--text-light);
    position: relative;
}

.connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><rect width="400" height="400" fill="none"/><filter id="noise" x="0%" y="0%" width="100%" height="100%"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="2" stitchTiles="stitch" seed="4"/><feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.15 0"/></filter><rect width="400" height="400" filter="url(%23noise)" opacity="0.4" fill="%23000000"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.connect-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.menu-image {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.menu-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--text-light);
}

.messenger-apps {
    padding: 2rem;
}

.messenger-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.messenger-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-secondary);
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.messenger-item:hover {
    transform: translateY(-5px);
}

.qr-code-container {
    width: 150px;
    height: 150px;
    background-color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.qr-code {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.messenger-info {
    text-align: center;
}

.messenger-info h4 {
    color: #ffc56d;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.messenger-info p {
    color: var(--text-secondary);
    font-size: 1.17rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .connect-container {
        grid-template-columns: 1fr;
    }
    
    .messenger-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-image {
        height: auto;
        max-height: none;
    }
    
    .menu-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"><rect width="300" height="300" fill="none"/><rect x="100" y="0" width="2" height="300" fill="%23ffffff" opacity="0.1"/><rect x="200" y="0" width="1" height="300" fill="%23ffffff" opacity="0.07"/><rect x="50" y="0" width="1" height="300" fill="%23ffffff" opacity="0.05"/><rect x="150" y="0" width="1" height="300" fill="%23ffffff" opacity="0.07"/><rect x="250" y="0" width="1" height="300" fill="%23ffffff" opacity="0.05"/></svg>');
    pointer-events: none;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info, .contact-form {
    padding: 30px;
}

.contact-info h3, .contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--warm-glow);
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after, .contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--warm-glow);
}

.contact-detail {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 20px;
    font-size: 1.5rem;
    color: var(--warm-glow);
    background-color: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-detail:hover .contact-icon {
    background-color: var(--warm-glow);
    color: var(--dark-bg);
}

.contact-text h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-text p, .contact-text a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.contact-text a:hover {
    color: var(--warm-glow);
}

.contact-form .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: var(--warm-glow);
}

.contact-form .submit-button {
    width: 100%;
}

/* 푸터 */
footer {
    background-color: var(--dark-bg);
    color: var(--text-muted);
    padding: 70px 0 30px;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--warm-glow);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-logo span {
    color: var(--warm-glow);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--warm-glow);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--warm-glow);
}

.footer-links a:hover::after {
    width: 100%;
}

.social-icons {
    margin-bottom: 40px;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background-color: var(--warm-glow);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--dark-bg);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 20px;
}

/* 스크롤 애니메이션 클래스 */
.scroll-animation {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.scroll-animation.scrolled {
    opacity: 1;
    transform: translateY(0);
}

/* 헤더 스크롤 효과 */
header.scrolled {
    background-color: rgba(25, 25, 25, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* 모바일 메뉴 활성화 */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
    border-top: 1px solid var(--warm-glow);
}

.nav-menu.active li {
    margin: 15px 0;
}

/* 추가 반응형 스타일 */
@media screen and (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-text {
        order: 1;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .booking-form {
        padding: 30px 20px;
    }
    
    .mobile-menu-btn {
        display: block; /* 모바일 화면에서는 메뉴 버튼 표시 */
    }
    
    .nav-menu {
        display: none; /* 모바일 화면에서는 기본적으로 메뉴 숨김 */
    }
    
    .language-selector {
        margin-left: 0;
        margin-top: 15px;
        position: absolute;
        right: 20px;
        top: 15px;
    }
    
    .header-inner {
        position: relative;
    }
}

/* 모바일 메뉴 활성화 */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
    border-top: 1px solid var(--warm-glow);
}

.nav-menu.active li {
    margin: 15px 0;
}

.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
}

/* 베트남어 페이지 가격 텍스트 크기 조정 */
body.lang-vi .service-price-booking .price {
    font-size: 0.9em;  /* 기존 크기의 90%로 설정 */
}

/* 갤러리 섹션 */
.gallery {
    padding: 120px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><rect width="400" height="400" fill="none"/><filter id="noise" x="0%" y="0%" width="100%" height="100%"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="2" stitchTiles="stitch" seed="5"/><feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.15 0"/></filter><rect width="400" height="400" filter="url(%23noise)" opacity="0.4" fill="%23000000"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    width: 50px;
    height: 50px;
    background: var(--warm-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.2rem;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}