@charset "UTF-8";

/* ==========================================================================
   0. RESET & DESIGN TOKENS
   ========================================================================== */
:root {
    --bg-dark-primary: #030712;
    --bg-dark-secondary: #080f1e;
    --accent-blue: #2ebcf9;
    --accent-blue-hover: #5cd0ff;
    --accent-blue-rgb: 46, 188, 249;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-line: rgba(46, 188, 249, 0.25);
    --transition-fast: 0.25s ease;
    --transition-normal: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-page {
    background-color: var(--bg-dark-primary);
    color: var(--text-primary);
    font-family: 'Jost', 'Noto Sans KR', sans-serif;
    overflow-x: hidden;
}

.max-layout-width {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.font-jost { font-family: 'Jost', sans-serif; }

/* ==========================================================================
   1. HERO BANNER ZONE
   ========================================================================== */
.about-hero {
    height: 55vh;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    padding-top: 80px;
    box-sizing: border-box;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay-filter {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
    rgba(3, 7, 18, 0.2) 0%,
    rgba(3, 7, 18, 0.6) 70%,
    var(--bg-dark-primary) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-flex-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.eng-sub {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--accent-blue);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.25rem;
    text-shadow: 0 0 15px rgba(46, 188, 249, 0.45);
}

.hero-main-title {
    font-size: clamp(3.2rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #a5e3ff 50%, #2ebcf9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.9))
    drop-shadow(0 0 20px rgba(46, 188, 249, 0.25));
}

.brand-logo-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-center-logo {
    height: 2.2rem;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}

.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   2. LOCATION DETAIL SECTION
   ========================================================================== */
.location-detail-section {
    padding: 80px 0 120px;
    background-color: var(--bg-dark-primary);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center .gold-title {
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 15px;
}

.font-glow { text-shadow: 0 0 20px rgba(255, 255, 255, 0.1); }

.section-header-center .desc-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    word-break: keep-all;
}

/* ==========================================================================
   3. LOCATION DASHBOARD GRID
   ========================================================================== */
.location-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* 좌측 메인 카드 */
.location-main-card {
    position: relative;
    background: linear-gradient(145deg, rgba(8, 15, 30, 0.8) 0%, rgba(3, 7, 18, 0.9) 100%);
    border: 1px solid var(--border-line);
    border-radius: 12px;
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.location-main-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 25px 50px rgba(46, 188, 249, 0.2);
}

.card-glow-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(46, 188, 249, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.location-tag {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-blue);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.location-main-head {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.25;
}

.location-sub-memo {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 0 35px 0;
    word-break: keep-all;
}

/* 네이버 길찾기 샤인 버튼 */
.btn-map-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent-blue);
    color: #030712;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 30px;
    text-decoration: none;
    overflow: hidden;
    transition: all var(--transition-fast);
    box-shadow: 0 8px 20px rgba(46, 188, 249, 0.3);
}

.btn-map-trigger:hover {
    background: var(--accent-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(46, 188, 249, 0.5);
}

.shine-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: rotate(30deg);
    animation: shineAnim 3.5s infinite linear;
}

@keyframes shineAnim {
    0% { left: -60%; }
    30% { left: 140%; }
    100% { left: 140%; }
}

/* 우측 정보 카드 */
.location-meta-card {
    background: rgba(8, 15, 30, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.meta-item-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-fast);
}

.meta-item-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.meta-item-box:hover {
    transform: translateX(5px);
}

.meta-icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(46, 188, 249, 0.1);
    border: 1px solid rgba(46, 188, 249, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.meta-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-blue);
    letter-spacing: 0.1em;
}

.meta-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    word-break: keep-all;
}

.meta-value .divider {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 6px;
}

.time-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.holiday-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   4. COMPACT MAP WRAPPER (아담하고 깔끔한 약도)
   ========================================================================== */
.compact-map-wrapper {
    width: 100%;
    max-width: 820px; /* 약도가 과도하게 커지지 않도록 아담하게 고정 */
    margin: 0 auto;
    background: rgba(8, 15, 30, 0.6);
    border: 1px solid var(--border-line);
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(46, 188, 249, 0.1);
    backdrop-filter: blur(12px);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.compact-map-wrapper:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 25px 60px rgba(46, 188, 249, 0.25);
    transform: translateY(-4px);
}

.map-frame-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 996 / 799; /* 원본 비주얼 비율 */
    border-radius: 8px;
    overflow: hidden;
    background-color: #030712;
}

.map-visual-img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    display: block;
    opacity: 0.95;
}

/* 약도 스캔 빔 애니메이션 */
.map-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-blue) 50%, transparent 100%);
    box-shadow: 0 0 15px var(--accent-blue);
    opacity: 0.6;
    animation: mapScanAnim 6s infinite ease-in-out;
    z-index: 2;
    pointer-events: none;
}

@keyframes mapScanAnim {
    0% { top: -5%; }
    50% { top: 105%; }
    100% { top: -5%; }
}

/* ==========================================================================
   5. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
    .location-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero { height: 40vh; padding-top: 60px; }
    .hero-main-title { font-size: 2.8rem; }
    .location-main-head { font-size: 1.6rem; }
    .location-main-card, .location-meta-card { padding: 25px; }
    .btn-map-trigger { width: 100%; box-sizing: border-box; }
}