/* Base & Reset */
:root {
    --color-bg-primary: #FDFBF7;
    --color-bg-secondary: #F4EFEB;
    --color-text-primary: #38302A;
    --color-text-secondary: #70645B;
    --color-dark: #2A2522;
    --color-dark-warm: #544A44;
    --color-gold: #BCA37E;
    --color-gold-hover: #A68D68;
    --color-border: #E8E1DA;
    
    --font-heading: 'Noto Serif KR', serif;
    --font-body: 'Noto Sans KR', sans-serif;
    
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-sm {
    max-width: 900px;
}

.section {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--color-bg-secondary);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #C5C6B6 !important; /* 카키빛이 도는 차분한 다운톤 베이지 */
    transition: var(--transition);
    border-bottom: none !important;
}

.header.scrolled {
    padding: 0.5rem 0;
    background-color: #C5C6B6 !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-bottom: none !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.2rem;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.2rem;
    color: var(--color-dark) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold) !important;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.header-logo-img {
    height: 30px;
    width: auto;
    display: block;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    mix-blend-mode: multiply;
    filter: contrast(1.2) brightness(1.05);
}

.footer-logo-img {
    height: 24px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
    mix-blend-mode: multiply;
    filter: contrast(1.2) brightness(1.05); /* 노이즈/미세한 회색을 순백색으로 날림 */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-gold);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-text-primary);
    color: var(--color-text-primary);
}

.btn-outline:hover {
    background-color: var(--color-text-primary);
    color: #fff;
}

.btn.lg {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Typography & Utils */
.section-title {
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.0rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.section-title p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

.divider {
    width: 40px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 1.5rem auto;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 70vh; /* 뷰포트 높이 기준으로 사진이 보이도록 설정 */
    min-height: 500px;
    color: #fff;
    overflow: hidden;
    background-color: #000;
    background-image: url('assets/chrysanthemum-hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* 고정 헤더 높이만큼 여백 확보 */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%); /* 어둡지 않으면서 글씨가 잘 보이도록 대비 설정 */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    letter-spacing: 0.05em;
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 0;
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    word-break: keep-all;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    text-align: justify;
}

.signature {
    margin-top: 3rem;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-dark);
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    z-index: 0;
}

.image-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

/* Facilities Section */
.facility-cards {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.facility-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.facility-card.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.facility-card.reverse .facility-img {
    order: 2;
}

.facility-card.reverse .facility-info {
    order: 1;
}

.facility-img {
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.facility-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.facility-img:hover img {
    transform: scale(1.03);
}

.facility-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--color-dark);
}

.facility-info p {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.facility-features {
    padding-left: 0;
}

.facility-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--color-text-primary);
}

.facility-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

/* Consultation Section */
.contact-box {
    background-color: #fff;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-radius: 4px;
    border-top: 4px solid var(--color-gold);
    max-width: 800px;
    margin: 0 auto;
}

.contact-number {
    font-size: 2.6rem; /* Increased slightly for better visibility */
    color: var(--color-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    white-space: nowrap; /* 전화번호와 아이콘이 쪼개지지 않도록 강제 한 줄 지정 */
}

.contact-number a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.contact-number a:hover {
    color: var(--color-gold);
}

.contact-number .icon {
    font-size: 1.8rem; /* Reduced from 2.5rem */
}

.contact-desc {
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Location Section */
.map-container {
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    font-size: 1.2rem;
}

.location-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.map-btn {
    padding: 8px 15px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 4px;
    background-color: transparent !important;
    color: var(--color-text-secondary) !important;
    box-shadow: none !important;
}

.map-btn:hover {
    background-color: var(--color-bg-secondary) !important;
    border-color: var(--color-text-secondary) !important;
    color: var(--color-dark) !important;
}

/* 지도 버튼 전용 컬러 (베이지 베이스) */
.btn-naver {
    background-color: #EBECD9 !important; /* 베이지에 연두색 한 방울 */
    border-color: #D4DBBC !important;
    color: var(--color-dark) !important;
}
.btn-naver:hover {
    background-color: #DFE2C7 !important;
    border-color: #C5CEA8 !important;
}

.btn-kakao {
    background-color: #F3E9D2 !important; /* 베이지에 노란색 한 방울 */
    border-color: #E6D2A8 !important;
    color: var(--color-dark) !important;
}
.btn-kakao:hover {
    background-color: #EBDCB9 !important;
    border-color: #DABF8F !important;
}

.address-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.address-item p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* Status Board */
.status-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}
.status-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #a8a8a8;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
    border-left: 6px solid var(--color-gold);
}
.status-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.status-room {
    flex: 0 0 150px;
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
    border-right: 1px dashed var(--color-border);
    margin-right: 2rem;
    text-align: center;
}
.status-details-wrapper {
    display: grid;
    flex: 1;
    grid-template-columns: 1.8fr 4fr 2.5fr;
    gap: 2rem;
    align-items: start;
}
.status-time-place {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.status-info {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.status-label {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}
.status-value {
    color: var(--color-text-primary);
    font-weight: 400;
    line-height: 1.5;
    font-size: 1.1rem;
}
.status-value.highlight {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-dark);
    white-space: nowrap;
}
@media (max-width: 992px) {
    .status-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .status-room {
        flex: auto;
        border-right: none;
        border-bottom: 1px dashed var(--color-border);
        margin-right: 0;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
        width: 100%;
        text-align: left;
    }
    .status-details-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }
}

/* Timeline */
.timeline {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-gold);
}
.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.timeline-day {
    flex: 0 0 100px;
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: 600;
    padding-top: 5px;
    text-align: left;
}
.timeline-content {
    flex: 1;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid var(--color-border);
    position: relative;
}
.timeline-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 15px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--color-bg-primary);
    border: 4px solid var(--color-gold);
}
.timeline-content h3 {
    font-size: 1.6rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: 1rem;
}

@media (max-width: 768px) {
    .timeline::before { display: none; }
    .timeline-item { flex-direction: column; }
    .timeline-day { flex: none; margin-bottom: 1rem; }
    .timeline-content::before { display: none; }
}

/* Footer */
.footer {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-secondary);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.footer-logo .logo {
    color: var(--color-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.link-group h4 {
    color: var(--color-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.link-group ul li {
    margin-bottom: 0.8rem;
}

.link-group ul li a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    font-size: 0.9rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.copyright {
    margin-top: 1.5rem;
    color: var(--color-text-secondary);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .facility-card, .facility-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .facility-card.reverse .facility-img { order: 1; }
    .facility-card.reverse .facility-info { order: 2; }
    
    .location-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile Menu Overlay Backdrop */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.nav-open::after {
    opacity: 1;
    pointer-events: auto;
}

/* Hamburger button & lines */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001; /* Show above overlay */
    position: relative;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--color-dark);
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--color-dark);
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

/* Active hamburger transitions to X */
body.nav-open .hamburger {
    background-color: transparent;
}

body.nav-open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

body.nav-open .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 { 
        font-size: 1.8rem !important; 
        line-height: 1.4;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        line-height: 1.6;
    }
    
    .header-logo-img {
        height: 22px; /* Scale down logo on small screens */
    }
    
    .header-container {
        height: 60px; /* Slimmer header on mobile */
    }
    
    main {
        padding-top: 80px !important; /* Adjust main wrapper offset */
    }
    
    /* Navigation Drawer Menu */
    .nav {
        display: block !important;
        position: fixed;
        top: 0;
        right: -280px; /* Slide off-screen right */
        width: 280px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        padding: 80px 2rem 2rem 2rem;
        transition: right 0.3s ease-in-out;
    }
    
    body.nav-open .nav {
        right: 0;
    }
    
    body.nav-open {
        overflow: hidden; /* Lock scroll when menu is open */
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.8rem;
        align-items: flex-start;
    }
    
    .nav-link {
        font-size: 1.15rem;
        display: block;
        padding: 0.5rem 0;
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }
    
    .nav-link::after {
        display: none; /* Disable underline hover effect on mobile */
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 1rem !important;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .btn.lg {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
}

/* New Facility Navigation & Inline Display */
.facility-nav-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.facility-tabs {
    display: flex;
    gap: 0.5rem;
    background-color: #fff;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--color-border);
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    border-radius: 25px;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--color-gold);
    background-color: var(--color-bg-secondary);
}

.tab-btn.active {
    background-color: var(--color-gold);
    color: #fff;
    box-shadow: 0 4px 10px rgba(188, 163, 126, 0.3);
}

/* Inline Display Area */
.facility-display-area {
    background-color: #fff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--color-border);
    transition: opacity 0.4s ease;
}

.facility-display-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* 갤러리가 더 돋보이도록 우측 공간을 넓힘 */
    gap: 4rem;
    align-items: start;
}

.f-display-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.f-display-info p {
    color: var(--color-text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.f-display-features {
    padding-left: 0;
}

.f-display-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    font-size: 1.05rem;
}

.f-display-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 1.5rem;
    top: -2px;
}

.f-display-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.f-display-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.f-display-image:hover img {
    transform: scale(1.05);
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .facility-display-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .f-display-image {
        order: -1;
    }
    
    .f-display-info {
        text-align: center;
    }
    
    .f-display-info h3 {
        font-size: 1.8rem;
    }
    
    .f-display-features {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}
    

/* Partners Section & Grid */
.partners-summary {
    background-color: var(--color-bg-primary);
}

.partners-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.partner-item {
    background-color: #fff;
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-weight: 500;
    color: var(--color-text-primary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.partner-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateY(-3px);
    border-color: var(--color-gold);
}

.partners-content {
    margin-top: 4rem;
}

.partner-category {
    margin-bottom: 5rem;
}

.partner-category h3 {
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 2rem;
    text-align: left;
    border-left: 4px solid var(--color-gold);
    padding-left: 1.5rem;
}

.partners-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.partner-card {
    background-color: #fff;
    padding: 1.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text-primary);
    transition: var(--transition);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.partner-card:hover {
    background-color: var(--color-bg-secondary);
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .partners-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-category h3 {
        font-size: 1.5rem;
    }
}

/* Facility Price */
.f-display-price {
    display: inline-block;
    background-color: var(--color-gold);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(188, 163, 126, 0.3);
}

/* Cost Guide Section */
.cost-section {
    padding-top: 2rem;
    border-top: 1px dashed var(--color-border);
    margin-top: 4rem;
}

.cost-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.cost-card h3 {
    font-size: 1.4rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cost-card h3::before {
    content: '';
    display: block;
    width: 6px;
    height: 24px;
    background-color: var(--color-gold);
    border-radius: 4px;
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #5d5d5d;
    background-color: #fff;
    margin: 0 auto;
}

.cost-table th, .cost-table td {
    padding: 1.4rem 2.5rem;
    border: 1px solid #d1d1d1;
    text-align: center;
    vertical-align: middle;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.cost-table th {
    background-color: #f4f4f4;
    color: var(--color-dark);
    font-weight: 700;
    border-bottom: 2px solid #5d5d5d;
}

.cost-table td:first-child {
    text-align: left;
    padding-left: 2.5rem;
}

.cost-table .price-col {
    color: #b30000;
    font-weight: 700;
    font-size: 1.15rem;
}

.cost-table tr:nth-child(even) {
    background-color: #fafafa;
}

.cost-note {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--color-bg-secondary);
    border-radius: 4px;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}
/* Premium Gallery Grid (Room 101) */
.gallery-grid-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* 좌측 메인, 우측 서브 */
    gap: 15px;
    width: 100%;
    min-height: 450px;
}

.gallery-main-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.gallery-main-img:hover img {
    transform: scale(1.05);
}

.gallery-sub-imgs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sub-img-item {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.sub-img-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.floorplan-box {
    background: #fdfdfd;
    border: 2px dashed #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floorplan-box:hover {
    border-color: var(--color-gold);
    background: #fffcf5;
}

.floorplan-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #aaa;
}

.floorplan-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

@media (max-width: 992px) {
    .gallery-grid-layout {
        grid-template-columns: 1fr; /* 모바일/태블릿에서는 수직 적재 */
        min-height: auto;
    }
    
    .gallery-main-img {
        height: 300px;
    }
    
    .gallery-sub-imgs {
        flex-direction: row;
        height: 200px;
    }
}
/* Thumbnail Gallery Styles (참고 이미지 스타일) */
.gallery-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image-view {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background-color: #f9f9f9;
    border: 1px solid var(--color-border);
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.gallery-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-btn.prev { left: 15px; }
.gallery-nav-btn.next { right: 15px; }

.gallery-nav-btn svg {
    width: 24px;
    height: 24px;
}

.main-image-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.thumbnail-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 5px 0;
}

.thumb-item {
    flex: 0 0 100px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.thumb-item:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.thumb-item.active {
    opacity: 1;
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 163, 126, 0.3);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--color-border);
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .multi-image-list {
        gap: 15px;
    }
}

/* ===== Quick Links Cards (Home) ===== */
.quick-links-section {
    padding: 5rem 0 !important;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem 2.5rem;
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-gold);
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: var(--color-text-primary);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--color-gold);
}

.quick-link-card:hover::before {
    transform: scaleX(1);
}

.quick-link-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-secondary);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    transition: all 0.35s ease;
}

.quick-link-card:hover .quick-link-icon {
    background-color: var(--color-gold);
    color: #fff;
}

.quick-link-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.quick-link-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.quick-link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    font-size: 1rem;
    color: var(--color-gold);
    transition: all 0.35s ease;
}

.quick-link-card:hover .quick-link-arrow {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .quick-link-card {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }

    .quick-link-card {
        padding: 2rem 1.2rem;
    }
}

/* ===== Responsive Phone Numbers ===== */
.responsive-phone-nums a {
    text-decoration: none;
    color: inherit;
    font-size: 2.8rem;
    transition: color 0.3s ease;
}

.responsive-phone-nums a:hover {
    color: var(--color-gold) !important;
}

@media (max-width: 768px) {
    .responsive-phone-nums {
        flex-direction: column;
        gap: 0.5rem;
    }
    .responsive-phone-nums a {
        font-size: 1.8rem !important;
    }
}

/* ===== Facilities Mobile Responsiveness ===== */
@media (max-width: 992px) {
    .facility-display-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .facility-display-area {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .facility-nav-container {
        justify-content: center;
        overflow: visible;
        padding-bottom: 0;
        margin-bottom: 2rem;
    }
    .facility-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
        border-radius: 15px;
        padding: 0.5rem;
        width: 100%;
        max-width: 340px;
    }
    .tab-btn {
        padding: 0.5rem 0.6rem;
        font-size: 0.78rem;
        flex: 1 1 auto;
        text-align: center;
        border-radius: 10px;
        white-space: nowrap; /* 탭 버튼 내 글자 줄바꿈 금지 */
    }
    .facility-display-area {
        padding: 1.5rem;
    }
    .f-display-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .f-display-info p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .f-display-features li {
        font-size: 0.85rem; /* 설명란 글씨 크기 축소 */
        padding-left: 1.2rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
        white-space: nowrap; /* 설명란 글씨 한 줄 강제 정렬 */
    }
    .f-display-features li::before {
        font-size: 1.1rem;
        top: -3px;
    }
    .main-image-view {
        height: 250px !important;
    }
    .thumb-item {
        flex: 0 0 60px;
        height: 60px;
    }
}

/* ===== Clickable Contact Links (Phone & Email) ===== */
a[href^="tel:"],
a[href^="mailto:"] {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a[href^="tel:"]:hover,
a[href^="mailto:"]:hover {
    color: var(--color-gold-hover, #a08460);
}

/* Large body links underlined by default for clarity */
.responsive-phone-nums a {
    text-decoration: underline !important;
    text-underline-offset: 6px;
    color: #fff !important; /* Keep white in the dark background box */
}
.responsive-phone-nums a:hover {
    color: var(--color-gold) !important;
}

/* ===== Cost Guide Table & Card Mobile Responsiveness ===== */
.desktop-only-table {
    display: block;
    width: 100%;
}

.mobile-only-cost-list {
    display: none;
    width: 100%;
}

@media (max-width: 768px) {
    .desktop-only-table {
        display: none !important;
    }
    
    .mobile-only-cost-list {
        display: block !important;
    }
    
    .cost-card {
        padding: 1rem 0 !important; /* 카드 내부 패딩 제거로 가로폭 확보 */
        border: none !important; /* 테두리 제거 */
        box-shadow: none !important; /* 그림자 제거 */
        background: transparent !important; /* 배경 투명화 */
    }
    
    .mobile-cost-item {
        background-color: #fff;
        border: 1px solid var(--color-border);
        border-radius: 8px;
        padding: 1.2rem;
        margin-bottom: 0.8rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }
    
    .mobile-cost-item .item-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.6rem;
        gap: 10px;
    }
    
    .mobile-cost-item .item-name {
        font-weight: 700;
        color: var(--color-dark);
        font-size: 0.95rem;
    }
    
    .mobile-cost-item .item-price {
        font-weight: 700;
        color: #b30000;
        font-size: 1.05rem;
        white-space: nowrap;
    }
    
    .mobile-cost-item .item-note {
        font-size: 0.82rem;
        color: var(--color-text-secondary);
        border-top: 1px dashed var(--color-border);
        padding-top: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .contact-number {
        font-size: 1.65rem !important; /* 모바일 폭에 맞게 약간 조정 */
        gap: 0.5rem;
        white-space: nowrap !important; /* 강제 한 줄 정렬 */
    }
    
    .contact-number .icon {
        font-size: 1.4rem !important;
    }
}

