/* Main Stylesheet - Navy Blue & Silver Theme */

/* 성능 최적화된 Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GPU 가속 최적화 - 선택적 적용 */
.gpu-optimized {
    transform: translateZ(0);
    will-change: auto;
}

/* 레이어 분리로 reflow 최소화 */
.layer-optimized {
    contain: layout style paint;
}

html {
    scroll-behavior: smooth;
    /* DNS prefetch 최적화 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Playfair Display', 'Noto Serif KR', Georgia, serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0e27;
    /* 렌더링 최적화 */
    text-rendering: optimizeSpeed;
    font-display: swap;
    font-weight: 600;
}

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

/* Advanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
}

.section-title {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e3a8a; /* Navy Blue */
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #1e3a8a, #c0c0c0);
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Playfair Display', 'Noto Serif KR', serif;
    font-size: 1.25rem;
    color: #6b7280;
    text-align: center;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 3rem;
    position: relative;
}

.section-subtitle::after {
    content: '◆';
    display: block;
    text-align: center;
    color: #c0c0c0; /* Silver */
    font-size: 1.5rem;
    margin-top: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
    border: 2px solid transparent;
    letter-spacing: 1px;
    min-width: 220px;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
}

.btn-primary {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6); /* Navy Blue gradient */
    color: #fff;
    border-color: #1e3a8a;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #1e40af, #60a5fa);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #c0c0c0; /* Silver */
    border-color: #c0c0c0;
}

.btn-secondary:hover {
    background: #c0c0c0;
    color: #0a0e27;
    transform: translateY(-2px);
}

.btn-large {
    padding: 24px 60px;
    font-size: 1.4rem;
    min-width: 320px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.btn-large:hover {
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 a {
    font-size: 2.2rem;
    color: #c0c0c0; /* Silver */
    font-weight: 900;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    font-weight: 600;
    font-size: 1.3rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    min-height: 50px;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
}

.nav-menu a:hover {
    background: rgba(30, 58, 138, 0.3);
    color: #c0c0c0;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #c0c0c0;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 14, 39, 0.8), rgba(30, 58, 138, 0.6)),
                url('https://i.ibb.co/jvn8WHCb/Image-fx-2-1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #c0c0c0, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #c0c0c0;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
    font-family: 'Inter', sans-serif;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic !important;
    font-weight: 300 !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
    letter-spacing: 2px !important;
    line-height: 1.4 !important;
    transform: perspective(500px) rotateX(15deg) !important;
    background: linear-gradient(135deg, #ffffff, #c0c0c0) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: #FFF;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
}

.hero-elegant-text {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.2rem !important;
    font-style: italic !important;
    font-weight: 300 !important;
    color: #1e3a8a !important;
    text-align: center !important;
    letter-spacing: 1px !important;
    line-height: 1.6 !important;
    margin-bottom: 2.5rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    opacity: 0 !important;
    position: relative !important;
    transform: translateY(20px) !important;
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.hero-elegant-text.fade-in-elegant {
    opacity: 0.95 !important;
    transform: translateY(0) !important;
    animation: elegant-glow 3s ease-in-out infinite alternate;
}

@keyframes elegant-glow {
    0% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(30, 58, 138, 0.3);
    }
    100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 20px rgba(30, 58, 138, 0.6);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.1), rgba(192, 192, 192, 0.1));
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section - Store Cards */
.about {
    background: #f8fafc;
    color: #1f2937;
    padding: 5rem 0;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.store-card {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    border-radius: 15px;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
    cursor: pointer;
    border: 1px solid rgba(30, 58, 138, 0.1);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
    border-color: rgba(30, 58, 138, 0.3);
}

.store-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.store-card:hover .store-image img {
    transform: scale(1.1);
}

.store-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 14, 39, 0.8));
    padding: 1.5rem 1rem 1rem;
    color: white;
}

.store-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #c0c0c0;
}

.store-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-text {
    background: rgba(30, 58, 138, 0.2);
    color: #1e3a8a;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.store-info {
    padding: 1.5rem;
}

.store-info h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.store-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #6b7280;
}

.store-address span {
    color: #1e3a8a;
    margin-top: 0.2rem;
}

.store-address p {
    margin: 0;
    font-size: 0.9rem;
}

.store-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.store-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1rem !important;
    font-size: 0.72rem !important;
    min-width: auto !important;
    font-weight: 600 !important;
}

.btn-outline {
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

.btn-outline:hover {
    background: #1e3a8a;
    color: #fff;
    transform: translateY(-2px);
}

.more-stores {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(30, 58, 138, 0.2);
}

.more-stores p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Services Section */
.services {
    background: #1e293b;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #334155;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: #1e3a8a;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover:before {
    left: 100%;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #c0c0c0;
    margin-bottom: 1rem;
}

/* Store Detail Pages */
.store-detail-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 120px 0 60px;
    color: #fff;
}

.store-detail-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.store-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.store-breadcrumb a {
    color: #c0c0c0;
    text-decoration: none;
}

.store-breadcrumb span {
    color: #fff;
}

.store-detail-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #c0c0c0, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.store-rating-large {
    margin-bottom: 1.5rem;
}

.store-rating-large .stars {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.rating-badge {
    background: rgba(30, 58, 138, 0.2);
    color: #1e3a8a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(30, 58, 138, 0.3);
}

.store-intro {
    font-size: 1.2rem;
    opacity: 0.9;
    font-style: italic;
}

/* Store Gallery Section */
.store-gallery-section {
    background: #f8fafc;
    padding: 60px 0;
}

.store-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.main-store-image h3,
.staff-image h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.image-placeholder {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 14, 39, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
}

/* Store Info Section */
.store-info-section {
    background: #fff;
    padding: 80px 0;
}

.store-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.store-details h2 {
    color: #1e3a8a;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.features-list {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #1e3a8a;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

.store-description {
    background: linear-gradient(135deg, #f8fafc, #fff);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.store-description h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.store-description p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Contact Cards */
.contact-card,
.hours-card,
.location-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.contact-card h3,
.hours-card h3,
.location-card h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.phone-number a {
    font-size: 1.5rem;
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 700;
}

.phone-number a:hover {
    color: #3b82f6;
}

.contact-desc {
    color: #6b7280;
    margin: 0.5rem 0 1.5rem 0;
}

/* Quick Contact Section */
.quick-contact-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 3rem 0;
    margin: 2rem 0;
}

.quick-contact-card {
    background: linear-gradient(145deg, #334155, #1e293b);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
    border: 2px solid rgba(192, 192, 192, 0.3);
}

.quick-contact-card h3 {
    color: #c0c0c0;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
    min-width: 180px;
    justify-content: center;
}

.contact-btn .btn-icon {
    font-size: 1.2rem;
}

.contact-btn.btn-primary {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6);
    color: #fff;
    border: 2px solid #1e3a8a;
}

.contact-btn.btn-primary:hover {
    background: linear-gradient(45deg, #1e40af, #60a5fa);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

.contact-btn.btn-secondary {
    background: transparent;
    color: #c0c0c0;
    border: 2px solid #c0c0c0;
}

.contact-btn.btn-secondary:hover {
    background: #c0c0c0;
    color: #0a0e27;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 192, 192, 0.3);
}

.contact-info-quick {
    text-align: left;
    background: rgba(30, 58, 138, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #c0c0c0;
}

.contact-info-quick p {
    margin-bottom: 0.8rem;
    color: #e5e7eb;
    font-size: 1rem;
}

.contact-info-quick strong {
    color: #c0c0c0;
}

/* About Section Styles */
.about-section {
    background: #f8fafc;
    padding: 3rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text {
    text-align: left;
    line-height: 1.8;
}

.about-text p {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(30, 58, 138, 0.05);
    border-left: 3px solid #1e3a8a;
}

/* Footer */
.footer {
    background: #0a0e27;
    color: #fff;
    padding: 3rem 0 1rem;
    border-top: 1px solid #334155;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #c0c0c0;
    margin-bottom: 1rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #c0c0c0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: #334155;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

.social-links a:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #9ca3af;
}

.hidden-card {
    display: none;
}

/* Hero Title Responsive Fix */
#hero-title {
    font-size: 4rem;
}

@media (max-width: 768px) {
    #hero-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    #hero-title {
        font-size: 1.6rem !important;
    }
}

/* Store CTA Section */
.store-cta-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #c0c0c0, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 39, 0.95);
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        text-align: center;
        word-break: keep-all;
        line-height: 1.3;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
        text-align: center;
        word-break: keep-all;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-images-grid,
    .store-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .store-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .store-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-small {
        width: 100%;
        text-align: center;
        font-size: 0.8rem;
        padding: 0.7rem 1rem;
        min-height: 44px; /* 터치 접근성 */
        border-radius: 8px;
        font-weight: 700;
    }
    
    section {
        padding: 60px 0;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 280px;
        min-height: 50px;
        font-size: 1rem;
    }
    
    .contact-info-quick {
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* 상세페이지 모바일 최적화 */
    .store-detail-hero {
        padding: 100px 0 50px;
    }
    
    .store-detail-header h1 {
        font-size: 2.2rem;
        text-align: center;
        word-break: keep-all;
        line-height: 1.3;
    }
    
    .store-intro {
        font-size: 1rem;
        text-align: center;
        word-break: keep-all;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .features-list {
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
        text-align: left;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
        text-align: left;
        word-break: keep-all;
        line-height: 1.4;
    }
    
    .feature-content p {
        font-size: 0.9rem;
        text-align: left;
        word-break: keep-all;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 2.5rem;
        text-align: center;
        word-break: keep-all;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        text-align: center;
        word-break: keep-all;
        line-height: 1.5;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem !important;
        text-align: center;
        word-break: keep-all;
        line-height: 1.4;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
        text-align: center;
        word-break: keep-all;
        line-height: 1.4;
    }
    
    .service-card,
    .contact-card,
    .hours-card,
    .location-card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-height: 48px;
        font-weight: 700;
    }
    
    .btn-small {
        font-size: 0.75rem;
        padding: 0.6rem 0.8rem;
        min-height: 40px;
        font-weight: 700;
    }
    
    /* 상세페이지 초소형 모바일 최적화 */
    .store-detail-header h1 {
        font-size: 1.8rem;
        word-break: keep-all;
        line-height: 1.3;
    }
    
    .store-intro {
        font-size: 0.9rem;
        padding: 0 15px;
        word-break: keep-all;
        line-height: 1.6;
    }
    
    .feature-item {
        padding: 1.2rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
        word-break: keep-all;
        line-height: 1.4;
    }
    
    .feature-content p {
        font-size: 0.85rem;
        word-break: keep-all;
        line-height: 1.7;
    }
    
    .section-title {
        font-size: 2rem;
        word-break: keep-all;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
        word-break: keep-all;
        line-height: 1.6;
    }
    
    .contact-card .btn {
        width: 100%;
        font-size: 1rem;
        min-height: 50px;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-arrow span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #c0c0c0;
    border-right: 2px solid #c0c0c0;
    transform: rotate(45deg);
    margin: -10px auto;
    animation: scrollDown 2s infinite;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

.scroll-indicator p {
    color: #c0c0c0;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    font-weight: 500;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Store Map Section */
.store-map-section {
    background: #f8fafc;
    padding: 60px 0;
}

.store-map-section h2 {
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.map-container-detail {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.map-info-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
    backdrop-filter: blur(10px);
}

.map-details h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.map-details p {
    margin: 0.3rem 0;
    color: #4b5563;
    font-size: 0.9rem;
}

.pulse {
    animation: pulse 2s infinite;
}