/* 학교안심 산뜻돋움 폰트 및 기본 폰트 임포트 */
@font-face {
    font-family: 'HakgyoansimSantteutdotumL';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2307-2@1.0/HakgyoansimSantteutdotumL.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

/* 전통 폰트 추가 */
@font-face {
    font-family: 'YEONGJUSeonbiTTF';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2403@1.0/YEONGJUSeonbiTTF.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NexonLv1Gothic';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NexonLv1Gothic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* CSS 변수 정의 - 민화 색상 팔레트 */
:root {
    /* 민화 전통 색상 */
    --primary-color: #B8860B;          /* 진한 단청 금색 */
    --secondary-color: #CD853F;        /* 따뜻한 황토색 */
    --accent-color: #D2691E;          /* 민화 주황색 */
    --deep-red: #8B2635;              /* 민화 깊은 적색 */
    --forest-green: #228B22;          /* 민화 녹색 */
    
    /* 기본 텍스트 색상 */
    --text-dark: #2F1B14;             /* 진한 갈색 */
    --text-medium: #5D4037;           /* 중간 갈색 */
    --text-light: #8D6E63;            /* 밝은 갈색 */
    
    /* 배경 색상 */
    --background-cream: #FDF5E6;      /* 크림색 */
    --background-light: #FAF0E6;      /* 밝은 린넨색 */
    --background-white: #FFFFFF;
    --background-paper: #F5F5DC;      /* 한지색 */
    
    /* 테두리 및 그림자 */
    --border-color: #D7CCC8;          /* 연한 갈색 테두리 */
    --border-dark: #A1887F;           /* 진한 갈색 테두리 */
    --shadow: 0 4px 20px rgba(184, 134, 11, 0.15);
    --shadow-hover: 0 8px 30px rgba(184, 134, 11, 0.25);
    
    /* 기본 설정 */
    --transition: all 0.3s ease;
    --border-radius: 8px;
    
    /* 폰트 */
    --font-primary: 'HakgyoansimSantteutdotumL', 'Noto Sans KR', sans-serif;
    --font-secondary: 'Noto Sans KR', sans-serif;
    --font-traditional: 'YEONGJUSeonbiTTF', var(--font-primary);
}

/* 기본 스타일 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
    /* 모바일 스크롤 보장 - overflow-x만 제한하고 스크롤은 허용 */
    overflow-x: hidden;
    overflow-y: auto;
    /* 모바일 텍스트 최적화 */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    /* 모바일 스크롤 성능 향상 */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* 컨테이너 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 섹션 공통 스타일 */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* 섹션 제목 */
.section-title {
    font-family: var(--font-traditional); /* hero-title과 동일한 폰트 적용 */
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #8B4513; /* 더 어두운 갈색으로 변경 */
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* 헤더 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(139, 69, 19, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: 'HakgyoansimSantteutdotumL', var(--font-primary);
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.1);
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-family: 'HakgyoansimSantteutdotumL', var(--font-secondary);
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link:hover {
    color: var(--secondary-color);
}

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

/* 햄버거 메뉴 */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    /* 터치 최적화 */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(184, 134, 11, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* 히어로 섹션 */
.hero {
    min-height: 100vh;
    position: relative;
    /* 모바일 스크롤 허용을 위해 overflow hidden 제거 */
    overflow: visible;
    padding-top: 80px; /* 헤더 높이만큼 패딩 추가 */
}

.hero-slider {
    height: calc(100vh - 80px); /* 헤더 높이를 제외한 높이 */
}

.hero-slide {
    position: relative;
    height: calc(100vh - 80px); /* 헤더 높이를 제외한 높이 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* PNG 이미지가 전체를 덮도록 cover로 변경 */
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent; /* 투명 배경으로 PNG 원본 유지 */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(100, 70, 50, 0.5) 0%, /* 좀 더 어둡고 불투명하게 조정 */
        rgba(139, 69, 19, 0.4) 50%, 
        rgba(100, 70, 50, 0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.hero-text {
    text-align: center;
    color: #FFFFFF; /* 확실한 흰색으로 변경 */
    text-shadow: 
        2px 2px 10px rgba(0, 0, 0, 0.8),
        4px 4px 20px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 0, 0, 0.5); /* 강하고 넓은 그림자 효과 */
    width: 100%;
}

.hero-title {
    font-family: var(--font-traditional);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.3),
        0 0 4px rgba(0, 0, 0, 0.2); /* 아주 미세한 그림자 */
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 
        2px 2px 10px rgba(0, 0, 0, 0.8),
        4px 4px 20px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 0, 0, 0.5); /* 설명문용 강한 그림자 */
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease; /* 더 부드러운 트랜지션 */
    border: 2px solid transparent;
    cursor: pointer;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6); /* 버튼 텍스트용 그림자 */
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 8px 30px rgba(0, 0, 0, 0.2); /* 버튼 자체에도 그림자 */
    transform: translateY(0); /* 호버 애니메이션을 위한 초기값 */
    /* 터치 최적화 */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px; /* 최소 터치 타겟 크기 */
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--background-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px); /* 살짝 올라오는 효과 */
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 15px 50px rgba(0, 0, 0, 0.3),
        0 2px 10px rgba(184, 134, 11, 0.3); /* 브랜드 컬러 그림자 추가 */
    text-shadow: 
        1px 1px 3px rgba(255, 255, 255, 0.8),
        0 0 8px rgba(255, 255, 255, 0.6); /* 호버시 흰색 그림자로 변경 */
}

.btn-secondary {
    background: transparent;
    color: var(--background-white);
    border-color: var(--background-white);
}

.btn-secondary:hover {
    background: var(--background-white);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px); /* 살짝 올라오는 효과 */
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 15px 50px rgba(0, 0, 0, 0.3),
        0 2px 10px rgba(184, 134, 11, 0.3); /* 브랜드 컬러 그림자 추가 */
    text-shadow: 
        1px 1px 3px rgba(255, 255, 255, 0.8),
        0 0 8px rgba(255, 255, 255, 0.6); /* 호버시 흰색 그림자로 변경 */
}

/* 슬라이더 커스텀 스타일 */
.slick-dots {
    bottom: 30px;
    z-index: 4;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--background-white);
    opacity: 0.7;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
}

.slick-prev,
.slick-next {
    z-index: 4;
    font-size: 0;
    width: 50px;
    height: 50px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 20px;
    color: var(--background-white);
    opacity: 0.8;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    opacity: 1;
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--background-white);
    border-bottom: 2px solid var(--background-white);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* About 섹션 */
.about {
    background: url('../images/hanji_texture.jpg') center/cover;
    background-attachment: fixed;
}

.about-description {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* 프로필 섹션 스타일 */
.profiles-section {
    margin: 60px 0;
    padding: 40px 0;
}

.profiles-title {
    font-family: var(--font-traditional);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 600;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.12);
    border: 2px solid rgba(184, 134, 11, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.18);
}

.profile-header {
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    padding-bottom: 20px;
}

.profile-name {
    font-family: var(--font-traditional);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.profile-role {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.profile-credentials {
    line-height: 1.8;
}

.profile-credentials ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.profile-credentials li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.profile-credentials li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 0.8rem;
    top: 2px;
}

.profile-achievements {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(205, 133, 63, 0.1));
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    font-size: 1rem;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.08), 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.15), 0 5px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Experience Section - Grid Layout */
.experience {
    background: url('../images/hanji_texture.jpg') center/cover;
    background-attachment: fixed;
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%, transparent 15%, transparent 85%, rgba(255,255,255,0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.experience > * {
    position: relative;
    z-index: 2;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    justify-content: center;
    max-width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
}

    .experience-card {
        background: none;
        border: none;
        padding: 20px 10px;
        margin: 0;
        text-align: center;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease-in-out;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden; /* 내용이 카드 밖으로 나가지 않도록 */
    }

.experience-card:hover {
    /* transform: scale(1.05); */ /* 호버 시 커지는 효과 제거 */
}

/* 각 카드에 PNG 배경 적용 */
.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; 
    transition: transform 0.3s ease-in-out;
    z-index: -1; /* 콘텐츠 뒤로 보내기 */
    border-radius: 8px; /* 카드에 맞는 둥근 모서리 */
}

.experience-card:hover::before {
    /* transform: scale(1.1); */ /* 호버 시 배경 커지는 효과 제거 */
}

/* 카드 순서대로 배경 이미지 할당 */
.experience-card:nth-child(1)::before { background-image: url('../images/Section1.png'); }
.experience-card:nth-child(2)::before { background-image: url('../images/Section2.png'); }
.experience-card:nth-child(3)::before { background-image: url('../images/Section3.png'); }
.experience-card:nth-child(4)::before { background-image: url('../images/Section4.png'); }
.experience-card:nth-child(5)::before { background-image: url('../images/Section5.png'); }

.card-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 280px;
    margin-top: 10px; /* 간격 축소 */
    background: rgba(255, 255, 255, 0.0); /* 반투명 배경 추가 */
    padding: 15px;
    border-radius: 12px;
}

.experience-card .card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.experience-card .card-title {
    font-family: var(--font-traditional);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 12px;
    display: inline-block;
    /* 그림자 제거 */
}

.experience-card .card-description {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(3px);
    padding: 15px;
    border-radius: 8px;
    /* 그림자 제거 */
}

.experience-card .card-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
    /* 그림자 제거 */
}

.experience-card .card-btn:hover {
    background: var(--secondary-color);
}


/* Target Audience 섹션 */
.target-audience {
    background: url('../images/hanji_texture.jpg') center/cover;
    background-attachment: fixed;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.audience-item {
    background: rgba(255, 255, 255, 0.94);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.audience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.15), 0 5px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.97);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.audience-item h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Gallery 섹션 */
.gallery {
    background: url('../images/hanji_texture.jpg') center/cover;
    background-attachment: fixed;
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* 메인 페이지 갤러리 프리뷰 스타일 */
.gallery-preview {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-actions {
    text-align: center;
    margin-top: 50px;
}

.gallery-more-btn {
    background: var(--secondary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.gallery-more-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

.gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact 섹션 */
.contact {
    background: url('../images/hanji_texture.jpg') center/cover;
    background-attachment: fixed;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* 데스크톱에서는 기본 순서 유지 */
.contact-info {
    order: 0;
}

.map-container {
    order: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%; /* 전체 너비 사용 */
}

.info-item h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-item p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.info-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-color);
}

.info-item small {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

.map-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.1), 0 3px 15px rgba(0, 0, 0, 0.05);
    height: 400px;
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-logo p {
    opacity: 0.8;
    font-size: 1.1rem;
}

.footer-info p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-message {
    margin-top: 20px;
}

.footer-message p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* 반응형 디자인 개선 */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        text-shadow: 
            0 1px 2px rgba(0, 0, 0, 0.3),
            0 0 4px rgba(0, 0, 0, 0.2); /* 태블릿용 미세한 그림자 */
    }
    
    .hero-description {
        font-size: 1.2rem;
        text-shadow: 
            2px 2px 12px rgba(0, 0, 0, 0.85),
            4px 4px 25px rgba(0, 0, 0, 0.65),
            0 0 35px rgba(0, 0, 0, 0.55); /* 태블릿용 강한 그림자 */
    }
    

}

@media (max-width: 768px) {
    /* 네비게이션 */
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--background-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 50px 0;
        z-index: 999;
        box-shadow: var(--shadow);
        /* 모바일 스크롤 보장 - 메뉴가 열려도 뒤쪽 스크롤 허용 */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        display: flex;
    }

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

    .nav-link {
        font-size: 1.2rem;
        color: var(--text-dark);
        /* 터치 친화적 패딩 추가 */
        padding: 12px 20px;
        min-height: 44px; /* 최소 터치 타겟 크기 */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hamburger {
        display: flex;
        /* 터치 친화적 크기 */
        width: 44px;
        height: 44px;
        padding: 8px;
        justify-content: center;
        align-items: center;
    }

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

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

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

    /* 히어로 섹션 모바일 최적화 */
    .hero {
        padding-top: 70px;
        /* 터치 스크롤 최적화 - 스크롤 허용 */
        overflow: visible !important;
        -webkit-overflow-scrolling: touch;
        touch-action: manipulation;
    }

    .hero-slider {
        height: calc(100vh - 70px);
        min-height: 500px; /* 최소 높이 보장 */
    }

    .hero-slide {
        height: calc(100vh - 70px);
        min-height: 500px;
    }

    .hero-content {
        padding: 20px 15px; /* 여백 증가 */
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 25px;
        /* 모바일 가독성 향상 */
        word-break: keep-all;
        text-shadow: 
            0 1px 2px rgba(0, 0, 0, 0.3),
            0 0 4px rgba(0, 0, 0, 0.2);
    }

    .hero-description {
        font-size: 1.1rem;
        line-height: 1.8; /* 줄간격 증가로 가독성 향상 */
        margin-bottom: 30px;
        /* 모바일 텍스트 최적화 */
        word-break: keep-all;
        max-width: 100%;
        text-shadow: 
            2px 2px 13px rgba(0, 0, 0, 0.9),
            4px 4px 28px rgba(0, 0, 0, 0.7),
            0 0 45px rgba(0, 0, 0, 0.6);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 280px; /* 터치 친화적 너비 */
        min-height: 50px; /* 터치 친화적 높이 */
        font-size: 1.1rem;
        padding: 15px 20px;
        text-align: center;
        /* 터치 반응성 향상 */
        touch-action: manipulation;
        text-shadow: 
            2px 2px 10px rgba(0, 0, 0, 0.9),
            0 0 25px rgba(0, 0, 0, 0.7);
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.4),
            0 12px 40px rgba(0, 0, 0, 0.3);
    }

    .hero-overlay {
        display: none;
    }

    /* 섹션 패딩 최적화 */
    section {
        padding: 50px 0; /* 섹션 간 여백 축소 */
    }

    .section-title {
        font-size: 2.2rem; /* 크기 증가 */
        line-height: 1.3;
        margin-bottom: 25px;
        word-break: keep-all;
    }

    .section-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* About 섹션 */
    .about-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-description {
        font-size: 1.1rem;
        line-height: 1.8;
        word-break: keep-all;
    }

    /* 프로필 섹션 모바일 */
    .profiles-title {
        font-size: 1.8rem; /* 크기 증가 */
        line-height: 1.3;
        word-break: keep-all;
    }

    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .profile-card {
        padding: 30px 25px; /* 패딩 증가 */
        margin: 0 10px; /* 좌우 여백 추가 */
    }

    .profile-name {
        font-size: 1.4rem; /* 크기 증가 */
        line-height: 1.3;
    }

    .profile-credentials li {
        font-size: 1rem; /* 크기 증가 */
        line-height: 1.6;
        margin-bottom: 10px;
    }

    /* Experience 섹션 */
    .experience {
        padding: 50px 0;
        padding-bottom: 60px; /* 하단 패딩 대폭 축소 */
    }

    /* Experience 슬라이더 제거됨 - 더 이상 dots 불필요 */

    /* Target Audience */
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .audience-item {
        padding: 25px 20px; /* 패딩 증가 */
        min-height: 120px; /* 최소 높이 보장 */
    }

    .audience-item h3 {
        font-size: 1.1rem;
        line-height: 1.4;
        word-break: keep-all;
    }

    /* Contact 섹션 */
    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
        width: 100%;
    }

    /* 모바일에서 지도를 위로 올리기 */
    .map-container {
        order: -1;
        width: 100%;
        max-width: none;
    }

    .contact-info {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* 연락처 정보 개별 항목들도 중앙 정렬 */
    .info-item {
        text-align: center;
        width: 100%;
        max-width: 400px;
        padding: 20px 15px; /* 패딩 추가 */
        margin-bottom: 20px;
    }

    .info-item h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .info-item p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .info-item a {
        font-size: 1.1rem;
        /* 터치 친화적 링크 */
        padding: 8px 4px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-logo h3 {
        font-size: 1.8rem;
    }

    .footer-info p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .footer-message p {
        font-size: 1.1rem;
        line-height: 1.7;
        word-break: keep-all;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px; /* 패딩 증가 */
    }

    section {
        padding: 40px 0; /* 섹션 패딩 대폭 축소 */
    }

    /* 히어로 섹션 초소형 모바일 최적화 */
    .hero {
        padding-top: 70px;
        /* 부드러운 스크롤 - 스크롤 허용 */
        overflow: visible !important;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        touch-action: manipulation;
    }

    .hero-slider {
        height: calc(100vh - 70px);
        min-height: 450px; /* 더 작은 최소 높이 */
    }

    .hero-slide {
        height: calc(100vh - 70px);
        min-height: 450px;
    }

    .hero-content {
        padding: 30px 15px; /* 패딩 증가 */
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 20px;
        /* 긴 텍스트 처리 */
        word-break: keep-all;
        overflow-wrap: break-word;
        text-shadow: 
            0 1px 2px rgba(0, 0, 0, 0.3),
            0 0 4px rgba(0, 0, 0, 0.2);
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.8; /* 높은 줄간격 */
        margin-bottom: 25px;
        word-break: keep-all;
        overflow-wrap: break-word;
        text-shadow: 
            2px 2px 15px rgba(0, 0, 0, 0.95),
            4px 4px 30px rgba(0, 0, 0, 0.8),
            0 0 50px rgba(0, 0, 0, 0.7);
    }

    .hero-buttons {
        gap: 12px;
        width: 100%;
    }

    .btn {
        padding: 16px 24px; /* 더 큰 패딩 */
        font-size: 1.1rem;
        width: 100%;
        max-width: 320px; /* 더 넓은 최대 너비 */
        min-height: 56px; /* 더 큰 터치 타겟 */
        border-radius: 12px; /* 더 둥근 모서리 */
        /* 터치 최적화 */
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        text-shadow: 
            2px 2px 12px rgba(0, 0, 0, 1),
            0 0 30px rgba(0, 0, 0, 0.8);
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.5),
            0 15px 50px rgba(0, 0, 0, 0.4);
    }

    /* 섹션 제목 최적화 */
    .section-title {
        font-size: 2rem; /* 크기 조정 */
        line-height: 1.3;
        margin-bottom: 20px;
        word-break: keep-all;
        padding: 0 10px; /* 좌우 패딩 추가 */
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    /* 네비게이션 최적화 */
    .nav-container {
        padding: 15px 20px; /* 패딩 증가 */
        min-height: 70px;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .logo-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .nav-link {
        font-size: 1.3rem; /* 크기 증가 */
        padding: 16px 24px; /* 패딩 증가 */
        min-height: 56px; /* 더 큰 터치 타겟 */
    }

    .hamburger {
        width: 48px; /* 더 큰 터치 영역 */
        height: 48px;
        padding: 12px;
    }

    /* About 섹션 최적화 */
    .about-description {
        font-size: 1.05rem;
        line-height: 1.8;
        padding: 0 10px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    /* Experience 카드 최적화 */
    .experience-card {
        padding: 30px 20px; /* 패딩 증가 */
        margin: 0 15px; /* 좌우 여백 증가 */
        min-height: 500px;
        border-radius: 16px; /* 둥근 모서리 */
    }

    .experience-card .card-title {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 15px;
        word-break: keep-all;
    }

    .experience-card .card-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
        word-break: keep-all;
    }

    .experience-card .card-btn {
        padding: 12px 20px;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 8px;
    }

    .experience-card .card-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    /* 프로필 섹션 초소형 모바일 */
    .profiles-title {
        font-size: 1.6rem; /* 크기 조정 */
        line-height: 1.3;
        padding: 0 10px;
        word-break: keep-all;
    }

    .profiles-grid {
        gap: 25px;
    }

    .profile-card {
        padding: 25px 20px; /* 패딩 조정 */
        margin: 0 5px; /* 좌우 여백 */
        border-radius: 16px; /* 둥근 모서리 */
    }

    .profile-name {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .profile-credentials li {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 8px;
    }

    /* Target Audience 최적화 */
    .audience-item {
        padding: 30px 20px;
        min-height: 140px;
        border-radius: 16px;
        margin: 0 10px;
    }

    .audience-item h3 {
        font-size: 1.05rem;
        line-height: 1.5;
        word-break: keep-all;
    }

    .audience-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    /* Contact 섹션 - 초소형 모바일에서도 지도 위로 */
    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        width: 100%;
        padding: 0 10px;
    }

    .map-container {
        order: -1;
        width: 100%;
        max-width: none;
        margin: 0 10px;
    }

    .contact-info {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* 연락처 정보 개별 항목들도 중앙 정렬 */
    .info-item {
        text-align: center;
        width: 100%;
        max-width: 350px; /* 작은 화면에 맞게 조정 */
        padding: 25px 20px; /* 패딩 증가 */
        margin-bottom: 25px;
        border-radius: 12px; /* 둥근 모서리 */
        background: rgba(255, 255, 255, 0.8); /* 약간의 배경 */
        backdrop-filter: blur(10px);
    }

    .info-item h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        word-break: keep-all;
    }

    .info-item p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 8px;
        word-break: keep-all;
    }

    .info-item a {
        font-size: 1.05rem;
        padding: 12px 8px;
        min-height: 48px;
        border-radius: 8px;
        /* 링크 시각적 강화 */
        background: rgba(184, 134, 11, 0.1);
        margin: 4px 2px;
        transition: all 0.3s ease;
    }

    .info-item a:hover, .info-item a:active {
        background: rgba(184, 134, 11, 0.2);
        transform: translateY(-1px);
    }

    /* Gallery 최적화 */
    .gallery-item {
        border-radius: 12px;
        overflow: hidden;
    }

    /* Footer 최적화 */
    .footer {
        padding: 50px 0 25px;
    }

    .footer-logo h3 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .footer-logo p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-info p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 6px;
    }

    .footer-message p {
        font-size: 1rem;
        line-height: 1.8;
        word-break: keep-all;
        padding: 0 10px;
    }

    .footer-bottom {
        padding-top: 25px;
        font-size: 0.85rem;
    }
}

/* 슬라이더 버튼 스타일 개선 */
.slick-prev,
.slick-next {
    background: rgba(184, 134, 11, 0.8);
    border-radius: 50%;
    transition: var(--transition);
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--primary-color);
}

.slick-prev {
    left: 25px;
}

.slick-next {
    right: 25px;
}

@media (max-width: 768px) {
    .slick-prev,
    .slick-next {
        display: none !important;
    }
    
    .slick-dots {
        bottom: 20px;
    }
}

/* 갤러리 반응형 개선 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

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

/* 애니메이션 성능 최적화 */
@media (prefers-reduced-motion: reduce) {
    .hero-title,
    .hero-description,
    .hero-buttons,
    .section-title,
    .feature,
    .experience-card {
        animation: none;
        transition: none;
    }
    
    [data-aos] {
        animation: none !important;
        transition: none !important;
    }
}

/* 스크롤 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* 히어로 섹션 요소들이 fade-in-up 클래스를 받았을 때 */
.hero-title.fade-in-up,
.hero-description.fade-in-up,
.hero-buttons.fade-in-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* 로딩 애니메이션 */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* 커스텀 스크롤바 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
} 

/* 한지 텍스처 최적화 */
@media (max-width: 768px) {
    .about,
    .experience,
    .target-audience,
    .gallery,
    .contact {
        background-size: 150% auto; /* 모바일에서 텍스처 크기 조정 */
        background-position: center top;
    }
}

@media (max-width: 480px) {
    .about,
    .experience,
    .target-audience,
    .gallery,
    .contact {
        background-size: 200% auto; /* 작은 모바일에서 텍스처 크기 더 조정 */
        background-position: center top;
    }
} 

/* 한지 텍스처 배경에 상하 블러 효과 */
.about::before,
.experience::before,
.target-audience::before,
.gallery::before,
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to bottom, rgba(255,255,255,0.8) 0%, transparent 15%, transparent 85%, rgba(255,255,255,0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

/* 섹션들을 relative로 설정 */
.about,
.experience,
.target-audience,
.gallery,
.contact {
    position: relative;
}

/* 섹션 내용들의 z-index 조정 */
.about > *,
.experience > *,
.target-audience > *,
.gallery > *,
.contact > * {
    position: relative;
    z-index: 2;
} 

/* 모바일 체험 카드 최적화 */
@media (max-width: 768px) {
    .experience {
        padding: 40px 0; /* 모바일 섹션 패딩 축소 */
        padding-bottom: 40px;
    }
    
    .experience-grid {
        gap: 25px; /* 모바일에서 간격 더 축소 */
        margin-top: 30px;
    }
    
    .experience-card {
        padding: 15px 10px;
        margin: 0 5px;
        max-width: 100%; /* 전체 너비 활용 */
        height: auto; /* 내용에 맞게 자동 높이 조정 */
        overflow: hidden; /* 스크롤 방지 */
    }

    /* 모바일에서 배경 크기 조정 - 2배 크기로 적절히 확대 */
    .experience-grid .experience-card:nth-child(1),
    .experience-grid .experience-card:nth-child(2),
    .experience-grid .experience-card:nth-child(3),
    .experience-grid .experience-card:nth-child(4),
    .experience-grid .experience-card:nth-child(5) {
        background-size: 200%; /* 모바일에서는 2배 크기로 */
        filter: none; /* 필터 완전 제거 */
    }

    .experience-card:hover {
        filter: none; /* 호버 시에도 필터 없음 */
    }

    .experience-card .card-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
        padding: 8px 16px;
        line-height: 1.3;
    }

    .experience-card .card-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
        max-width: 100%;
        padding: 8px 12px;
        line-height: 1.5;
    }
    
    .experience-card .card-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin-top: 10px;
    }

    .experience-card .card-icon {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .experience-grid {
        /* 모바일에서 그리드 간격 조정 */
        gap: 25px;
        margin-top: 30px;
        overflow: visible; /* 스크롤 완전 제거 */
    }

    /* experience-grid slick dots 제거 - 더 이상 슬라이더가 아님 */
}

 

/* 반응형 그리드 */
@media (max-width: 900px) {
    .experience-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
} 

/* 지도 이미지 스타일 */
.map-display {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    margin: 0 auto; /* 중앙 정렬 */
    position: relative;
    display: block !important; /* 강제 표시 */
}

.map-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* 지도 로딩 상태 */
.map-loading {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 0.9rem;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    text-align: center;
    color: #6c757d;
}

.map-placeholder .placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.map-placeholder h3 {
    margin-bottom: 0.5rem;
    color: #495057;
    font-size: 1.2rem;
}

.map-placeholder p {
    margin-bottom: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.map-placeholder .map-address {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* 모바일에서 지도 높이 조정 */
@media (max-width: 768px) {
    .map-display {
        height: 300px;
    }
    
    .map-placeholder .placeholder-icon {
        font-size: 2.5rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.1rem;
    }
    
    .map-placeholder p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .map-display {
        height: 250px;
    }
    
    .map-placeholder .placeholder-icon {
        font-size: 2rem;
    }
    
    .map-placeholder h3 {
        font-size: 1rem;
    }
}

/* 전역 모바일 최적화 */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: scrollbar;
}

/* 모바일 터치 최적화 전역 스타일 */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: text; /* 텍스트는 선택 가능 */
}

/* 모바일 스크롤 최적화 */
html, body {
    /* 모바일에서 스크롤 성능 향상 */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain; /* iOS에서 바운스 효과 제어 */
}

/* 입력 요소는 선택 가능 */
input, textarea, [contenteditable] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* 터치 스크롤 개선 */
.hero-slider, .gallery-grid {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* 모바일에서 스크롤 영역 명확히 지정 */
    touch-action: manipulation;
    overscroll-behavior: contain;
}

/* 모바일 폰트 렌더링 최적화 */
@media (max-width: 768px) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-display: swap;
    }
    
    /* 이미지 최적화 */
    img {
        image-rendering: optimizeQuality;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* 애니메이션 최적화 */
    * {
        will-change: auto;
    }
    
    .btn, .nav-link, .hamburger {
        will-change: transform, background-color;
    }
    
    /* GPU 가속 사용 */
    .hero-slider, .experience-card, .profile-card {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
}

/* 모바일 활성 상태 스타일 개선 */
@media (max-width: 768px) {
    .btn:active {
        transform: translateY(-1px) scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .nav-link:active {
        background: rgba(184, 134, 11, 0.15);
        transform: scale(0.98);
    }
    
    .hamburger:active {
        transform: scale(0.95);
        background: rgba(184, 134, 11, 0.2);
    }
    
    /* 카드 터치 반응 */
    .experience-card:active,
    .profile-card:active,
    .audience-item:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* 모바일 입력 요소 최적화 */
@media (max-width: 768px) {
    input[type="email"],
    input[type="tel"],
    input[type="text"],
    textarea {
        font-size: 16px; /* iOS 줌 방지 */
        padding: 12px 16px;
        border-radius: 8px;
        border: 2px solid #ddd;
        transition: border-color 0.3s ease;
        -webkit-appearance: none;
        appearance: none;
        background: #fff;
        min-height: 44px;
    }
    
    input[type="email"]:focus,
    input[type="tel"]:focus,
    input[type="text"]:focus,
    textarea:focus {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
    }
    
    /* 번호 입력시 숫자 키패드 */
    input[type="tel"] {
        -webkit-appearance: none;
        -moz-appearance: textfield;
    }
    
    input[type="tel"]::-webkit-outer-spin-button,
    input[type="tel"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
}

/* 모바일 링크 스타일 최적화 */
@media (max-width: 768px) {
    a {
        -webkit-tap-highlight-color: rgba(184, 134, 11, 0.2);
        tap-highlight-color: rgba(184, 134, 11, 0.2);
    }
    
    /* 전화번호, 이메일 링크 스타일 */
    a[href^="tel:"],
    a[href^="mailto:"] {
        color: var(--primary-color);
        text-decoration: none;
        padding: 8px 12px;
        border-radius: 6px;
        background: rgba(184, 134, 11, 0.1);
        border: 1px solid rgba(184, 134, 11, 0.3);
        display: inline-block;
        margin: 4px 2px;
        transition: all 0.3s ease;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 500;
    }
    
    a[href^="tel:"]:active,
    a[href^="mailto:"]:active {
        background: rgba(184, 134, 11, 0.2);
        transform: scale(0.98);
    }
}

/* 모바일 전용 유틸리티 클래스 */
@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-center {
        text-align: center !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
    }
    
    .mobile-padding {
        padding: 20px !important;
    }
    
    .mobile-margin {
        margin: 20px 0 !important;
    }
}

/* 모바일 이미지 최적화 */
@media (max-width: 768px) {
    /* 반응형 이미지 기본 설정 */
    img {
        max-width: 100%;
        height: auto;
        display: block;
        image-rendering: optimizeQuality;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* 히어로 배경 이미지 최적화 */
    .hero-bg {
        background-attachment: scroll; /* 모바일에서 fixed 제거 */
        background-size: cover;
        background-position: center;
        /* 모바일 최적화 */
        will-change: transform;
        transform: translateZ(0);
    }
    
    /* 갤러리 이미지 최적화 */
    .gallery-img {
        width: 100%;
        height: 250px; /* 모바일 높이 조정 */
        object-fit: cover;
        object-position: center;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }
    
    /* Experience 카드 배경 이미지 최적화 */
    .experience-card::before {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        will-change: opacity;
    }
    
    /* 프로필 이미지 최적화 (있다면) */
    .profile-image {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 20px;
        display: block;
    }
    
    /* 지도 이미지 최적화 */
    .map-display img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: contain;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
}

/* 초소형 모바일 이미지 최적화 */
@media (max-width: 480px) {
    .gallery-img {
        height: 200px; /* 더 작은 높이 */
    }
    
    .map-display img {
        max-height: 250px; /* 지도 높이 조정 */
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
}

/* 레이지 로딩 지원 */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* 모바일 비디오 최적화 (있다면) */
@media (max-width: 768px) {
    video {
        width: 100%;
        height: auto;
        max-height: 60vh;
    }
    
    iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        border-radius: 12px;
    }
}

/* 모바일 아이콘 최적화 */
@media (max-width: 768px) {
    .feature-icon,
    .audience-icon,
    .card-icon {
        font-size: 2.5rem;
        line-height: 1;
        text-align: center;
        margin-bottom: 15px;
        /* 터치 디바이스에서 더 선명하게 */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

@media (max-width: 480px) {
    .feature-icon,
    .audience-icon,
    .card-icon {
        font-size: 2.2rem;
    }
}

/* 모바일 성능 최적화 */
@media (max-width: 768px) {
    /* 스크롤 성능 향상 */
    body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
        scroll-behavior: smooth;
    }
    
    /* 애니메이션 성능 최적화 */
    .hero-slider .slick-track {
        will-change: transform;
        transform: translateZ(0);
    }
    
    /* Experience slick-track 제거 - 더 이상 슬라이더 아님 */
    
    /* 호버 효과를 터치에 맞게 조정 */
    .experience-card:hover,
    .profile-card:hover,
    .audience-item:hover {
        transform: none; /* 모바일에서 호버 효과 제거 */
    }
    
    .experience-card:active,
    .profile-card:active,
    .audience-item:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* 배경 고정 제거로 성능 향상 */
    .about::before,
    .experience::before {
        background-attachment: scroll;
        will-change: auto;
    }
    
    /* Experience 카드 그림자 제거 */
    .experience-card {
        box-shadow: none;
        will-change: transform;
    }
    
    /* 다른 카드들은 유지 */
    .profile-card,
    .audience-item {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        will-change: transform;
    }
    
    /* 텍스트 렌더링 최적화 */
    .hero-title,
    .section-title {
        text-rendering: optimizeSpeed;
        -webkit-font-smoothing: antialiased;
    }
    
    /* 슬라이더 최적화 */
    .slick-list {
        overflow: hidden;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .slick-slide {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* 모바일 접근성 향상 */
@media (max-width: 768px) {
    /* 포커스 스타일 개선 */
    .btn:focus,
    .nav-link:focus,
    input:focus,
    textarea:focus {
        outline: 3px solid rgba(184, 134, 11, 0.5);
        outline-offset: 2px;
    }
    
    /* 큰 텍스트 지원 */
    @media (prefers-reduced-motion: no-preference) {
        .hero-title,
        .section-title {
            animation: fadeInUp 1s ease-out;
        }
    }
    
    /* 움직임 감소 선호 사용자 지원 */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }
    
    /* 고대비 모드 지원 */
    @media (prefers-contrast: high) {
        .btn {
            border: 2px solid currentColor;
        }
        
        .nav-link {
            border-bottom: 1px solid transparent;
        }
        
        .nav-link:focus {
            border-bottom-color: currentColor;
        }
    }
    
    /* 다크 모드 선호 감지 (기본값 유지하되 준비) */
    @media (prefers-color-scheme: dark) {
        /* 필요시 다크 모드 스타일 추가 가능 */
    }
}

/* 모바일 터치 제스처 최적화 */
@media (max-width: 768px) {
    /* 스와이프 가능한 요소들 (세로 스크롤 허용) */
    .hero-slider {
        touch-action: pan-y; /* pan-x는 세로 스크롤을 막으므로 pan-y로 변경 */
        -webkit-overflow-scrolling: touch;
    }
    
    /* 수직 스크롤만 허용하는 요소들 */
    .nav-menu {
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
    
    /* 일반 요소들은 기본 터치 동작 */
    .container,
    section {
        touch-action: manipulation;
    }
}

/* 메모리 최적화 */
@media (max-width: 768px) {
    /* 큰 그라데이션 최적화 */
    .hero-overlay {
        background: rgba(100, 70, 50, 0.4); /* 단순한 색상으로 변경 */
    }
    
    /* 복잡한 애니메이션 단순화 */
    .btn {
        transition: transform 0.2s ease, background-color 0.2s ease;
    }
    
    /* 불필요한 그림자 제거 */
    .footer {
        box-shadow: none;
    }
}

/* 모바일에서 experience 카드 배경 이미지 크기 조정 */
@media (max-width: 768px) {
    .experience-card::before {
        /* 모바일에서 배경 이미지를 카드 영역 내에 유지 */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: contain;
        background-position: center;
        border-radius: 8px;
    }
    
    .card-content-wrapper {
        max-width: 90%;
        padding: 10px;
    }
}

/* 배경 음악 컨트롤 스타일 */
.music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.music-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 터치 친화적 */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.music-toggle:hover {
    background: rgba(184, 134, 11, 0.9);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.music-toggle:active {
    transform: scale(0.95);
}

.music-toggle.paused {
    background: rgba(100, 100, 100, 0.8);
}

.music-toggle.paused:hover {
    background: rgba(100, 100, 100, 0.9);
}

.music-icon {
    animation: pulse 2s infinite;
}

.music-toggle.paused .music-icon {
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* 모바일에서 음악 컨트롤 크기 조정 */
@media (max-width: 768px) {
    .music-control {
        bottom: 15px;
        right: 15px;
    }
    
    .music-toggle {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* 모바일 전용 스크롤 보장 */
@media (max-width: 768px) {
    html {
        /* 모바일에서 스크롤 강제 활성화 */
        overflow: auto !important;
        height: auto !important;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    body {
        /* 모바일에서 세로 스크롤 보장 */
        overflow-x: hidden !important;
        overflow-y: auto !important;
        height: auto !important;
        min-height: 100vh;
        position: relative !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        /* iOS에서 스크롤 성능 향상 */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* 모바일 메뉴가 열려있을 때도 스크롤 유지 */
    body.menu-open {
        overflow-y: auto !important;
        position: relative !important;
        height: auto !important;
    }
    
    /* 컨테이너와 섹션 스크롤 최적화 */
    .container, section {
        overflow: visible;
        height: auto;
        position: relative;
    }
    
    /* 히어로와 경험 섹션 특별 처리 */
    .hero, .experience {
        overflow: visible !important;
        touch-action: manipulation;
        -webkit-overflow-scrolling: touch;
    }
    
    /* 네비게이션 메뉴 스크롤 개선 */
    .nav-menu.active {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        /* 배경 스크롤 허용을 위한 투명도 조정 */
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
}

/* iOS Safari 특별 대응 */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari에서만 적용되는 스타일 */
    body {
        /* iOS에서 스크롤 바운스 효과 제어하면서 스크롤 유지 */
        overscroll-behavior: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* iOS에서 fixed 요소들의 스크롤 간섭 방지 */
    .header {
        /* iOS에서 헤더가 스크롤을 방해하지 않도록 */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform;
    }
}

/* Android 브라우저 최적화 */
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 1) {
    /* Android에서 스크롤 성능 향상 */
    * {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
    }
    
    body {
        /* Android에서 스크롤 smoothing */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

 