/* 전역 스타일 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-dynamic-subset.css');

/* Papyrology 폰트 - 로컬 파일 사용 */
@font-face {
    font-family: 'Papyrology';
    src: url('fonts/Paperlogy-1Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Papyrology';
    src: url('fonts/Paperlogy-2ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Papyrology';
    src: url('fonts/Paperlogy-3Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Papyrology';
    src: url('fonts/Paperlogy-4Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Papyrology';
    src: url('fonts/Paperlogy-5Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Papyrology';
    src: url('fonts/Paperlogy-6SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Papyrology';
    src: url('fonts/Paperlogy-7Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Papyrology';
    src: url('fonts/Paperlogy-8ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Papyrology';
    src: url('fonts/Paperlogy-9Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #004540;
    --secondary-color: #f8f3e9;
    --accent-color: #d4af37;
    --mustard-color: #EDA900;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #1a1a2e;
    --card-bg: #fff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --main-font: 'Papyrology', 'Noto Sans KR', sans-serif;
}

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

body {
    font-family: var(--main-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f9f9f9;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        width: 98%;
        padding: 1rem 0;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--light-text);
    position: relative;
    padding-bottom: 1rem;
    font-family: var(--main-font);
    font-weight: 700;
    line-height: 1.3;
    word-break: keep-all;
    word-wrap: break-word;
}

.tarot-masters .section-title {
    color: #333;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--mustard-color);
}

/* 네비게이션 바 스타일 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a2e;
    box-shadow: none;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.3rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: var(--light-text);
    font-weight: 700;
    font-family: var(--main-font);
}

.logo-image {
    height: 36px;
    width: auto;
    margin-right: 10px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--main-font);
    font-size: 1.4rem;
    color: var(--light-text);
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    font-family: var(--main-font);
    color: var(--light-text);
    font-weight: 700;
    padding: 0.5rem 0;
    position: relative;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--mustard-color);
    transition: width 0.2s ease;
}

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

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

.nav-link.active {
    color: var(--light-text);
    font-weight: 700;
}

/* 브랜드 맞춤형 타로 이벤트 메뉴 - 채도 높은 주황색 강조 */
.nav-link-brand {
    color: #FF6B35 !important;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-link-brand:hover {
    color: #FF8C5A !important; /* 더 밝은 주황색 톤 */
}

.nav-link-brand::after {
    background-color: #FF6B35 !important;
}

.nav-link-brand:hover::after {
    background-color: #FF8C5A !important;
}

.nav-link-brand.active {
    color: #FF6B35 !important;
}

.nav-link-brand.active::after {
    background-color: #FF6B35 !important;
}

/* 모바일에서 축약된 텍스트 표시 */
.nav-text-full {
    display: inline;
}

.nav-text-mobile {
    display: none;
}

.menu-toggle {
    display: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

/* 헤더 스타일 */
.header {
    height: 100vh;
    position: relative;
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 0; /* 패딩 제거 */
    margin-top: 0; /* 마진 제거 */
    background-color: rgba(0, 0, 0, 0.4);
    background-image: url('images/Image_fx - 2025-07-14T172943.044.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.header-overlay {
    display: none;
}

.header::before {
    display: none;
}

.header-content {
    max-width: 900px;
    padding: 3rem;
    z-index: 2;
    text-shadow: none;
    background-color: transparent;
    border-radius: 15px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: none;
}

.header-subtitle-box {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.header-subtitle {
    font-family: var(--main-font);
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-text);
    margin: 0;
    text-shadow: none;
}

.logo {
    font-family: var(--main-font);
    font-size: 4.5rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    animation: fadeIn 1s ease-in;
    text-shadow: none;
    font-weight: 700;
    line-height: 1.2;
}

.tagline {
    font-family: var(--main-font);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: slideUp 1s ease forwards;
    animation-delay: 0.3s;
    text-shadow: none;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.slogan {
    font-family: var(--main-font);
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: slideUp 1s ease forwards;
    animation-delay: 0.6s;
    text-shadow: none;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* 버튼 스타일 - 완전히 새로 작성 */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    animation: slideUp 1s ease forwards;
    animation-delay: 0.9s;
}

/* 기본 버튼 스타일 초기화 */
.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-family: var(--main-font);
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border: none;
    text-shadow: none !important;
}

/* 서비스 확인하기 버튼 (흰색 배경, 어두운 텍스트) */
#service-btn {
    background-color: rgba(255, 255, 255, 0.8) !important;
    color: #1a1a2e !important;
    font-weight: 700;
    box-shadow: none;
    text-shadow: none;
}

#service-btn:hover {
    transform: translateY(-3px);
    background-color: rgba(240, 240, 240, 0.8) !important;
    text-shadow: none;
}

/* 행사&교육 문의하기 버튼 (헤더 배경색, 흰색 텍스트) */
#contact-btn {
    background-color: rgba(26, 26, 46, 0.8) !important;
    color: #ffffff !important;
    font-weight: 700;
    padding-right: 3rem;
    box-shadow: none;
    text-shadow: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid #cccccc !important;
}

#contact-btn i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: #ffffff !important;
    text-shadow: none;
}

#contact-btn:hover {
    transform: translateY(-3px);
    background-color: rgba(37, 37, 66, 0.8) !important; /* 호버 시 약간 더 밝은 색상 */
    text-shadow: none;
}

#contact-btn:hover i {
    transform: translate(3px, -50%);
}

/* CTA 섹션 버튼 스타일 */
.cta-section .cta-button {
    background-color: rgba(26, 26, 46, 0.8) !important;
    color: #ffffff !important;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: none;
    text-shadow: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid #cccccc !important;
}

/* about.html 페이지의 CTA 버튼 스타일 */
#about-cta-btn {
    background-color: rgba(26, 26, 46, 0.8) !important;
    color: #ffffff !important;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: none;
    text-shadow: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid #cccccc !important;
}

#about-cta-btn:hover {
    transform: translateY(-5px);
    background-color: rgba(37, 37, 66, 0.8) !important;
    text-shadow: none;
}

.cta-section .cta-button:hover {
    transform: translateY(-5px);
    background-color: rgba(37, 37, 66, 0.8) !important;
    text-shadow: none;
}

/* 애니메이션 */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    0% { 
        opacity: 0; 
        transform: translateY(50px);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0);
    }
}

/* 타로 마스터 섹션 */
.tarot-masters {
    background-color: #f8f9fa;
    color: #333;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.masters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.master-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #e9ecef;
}

.master-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--mustard-color);
}

.master-image {
    height: 250px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.master-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.3));
}

#master-image-1 {
    background-image: url('images/master-pd.png');
    background-size: cover;
    background-position: center;
}

#master-image-2 {
    background-image: url('images/master-manager.png');
    background-size: cover;
    background-position: center;
}

#master-image-3 {
    background-image: url('images/master-serena.png');
    background-size: cover;
    background-position: center;
}

#master-image-4 {
    background-image: url('images/master-eluin.png');
    background-size: cover;
    background-position: center;
}

#master-image-5 {
    background-image: url('images/Image_fx - 2025-07-08T174832.856.jpg');
    background-size: cover;
    background-position: center;
}

#master-image-6 {
    background-image: url('images/Image_fx - 2025-07-08T175126.161.jpg');
    background-size: cover;
    background-position: center;
}

#master-image-7 {
    background-image: url('images/Image_fx - 2025-07-08T180610.269.jpg');
    background-size: cover;
    background-position: center;
}

#master-image-8 {
    background-image: url('images/Image_fx - 2025-07-08T181245.718.jpg');
    background-size: cover;
    background-position: center;
}

.master-card h3 {
    padding: 1.5rem 1rem 0.5rem;
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
}

.master-card p {
    padding: 0 1rem 1.5rem;
    color: #666;
}

.master-info {
    padding: 1rem;
}

.master-title {
    color: var(--mustard-color) !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.master-experience {
    color: #666 !important;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.master-specialties {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.specialty {
    background-color: #f8f9fa;
    color: #495057;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

/* 행사 갤러리 섹션 */
.event-gallery {
    padding: 5rem 0;
    background-color: rgba(26, 26, 46, 0.9);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: var(--mustard-color);
}

.gallery-image {
    height: 250px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.gallery-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.3));
}

#gallery-image-1 {
    background-image: url('images/Image_fx - 2025-07-14T172432.294.jpg');
    background-size: cover;
    background-position: center;
}

#gallery-image-2 {
    background-image: url('images/Image_fx - 2025-07-14T172507.223.jpg');
    background-size: cover;
    background-position: center;
}

#gallery-image-3 {
    background-image: url('images/Image_fx - 2025-07-14T172547.606.jpg');
    background-size: cover;
    background-position: center;
}

#gallery-image-4 {
    background-image: url('images/Image_fx - 2025-07-14T172709.935.jpg');
    background-size: cover;
    background-position: center;
}

#gallery-image-5 {
    background-image: url('images/Image_fx - 2025-07-14T172741.842.jpg');
    background-size: cover;
    background-position: center;
}

#gallery-image-6 {
    background-image: url('images/Image_fx - 2025-07-14T172801.201.jpg');
    background-size: cover;
    background-position: center;
}

.gallery-item h3 {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
    color: var(--light-text);
    background-color: transparent;
}

/* 고객 후기 섹션 - 제거됨 (새로운 스타일로 대체) */

/* 푸터 스타일 */
.footer {
    background-color: #13131f;
    color: var(--light-text);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.footer-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.footer-links h3, .footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

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

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
}

.footer-bottom {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}



/* 페이지 헤더 스타일 */
.page-header {
    background-color: #1a1a2e;
    color: var(--light-text);
    text-align: center;
    padding: 5rem 0 3rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    background-image: url('images/Image_fx - 2025-07-14T172827.209.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.05" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.1"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* About 페이지 스타일 */
.about-section {
    padding: 5rem 0;
    background-color: rgba(26, 26, 46, 0.9);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="%23004540" stop-opacity="0.3"/><stop offset="100%" stop-color="%23004540" stop-opacity="0.1"/></linearGradient></defs><rect width="800" height="600" fill="url(%23grad)"/><circle cx="400" cy="300" r="150" fill="%23d4af37" opacity="0.1"/><path d="M200,300 Q400,100 600,300 T800,450" stroke="%23d4af37" fill="none" stroke-width="3" opacity="0.3"/><path d="M200,450 Q400,250 600,450" stroke="%23d4af37" fill="none" stroke-width="2" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.about-image:hover .about-image-inner {
    transform: scale(1.05);
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--mustard-color);
}

.about-text p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* About 통계 스타일 */
.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mustard-color);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* 미션 & 비전 섹션 스타일 */
.mission-section {
    padding: 5rem 0;
    background-color: #1a1a2e;
    position: relative;
    overflow: hidden;
    color: var(--light-text);
}

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

.mission-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--mustard-color);
}

.mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(237, 169, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    font-size: 2rem;
    color: var(--mustard-color);
}

.mission-card h3 {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* 팀 소개 섹션 스타일 */
.team-section {
    padding: 5rem 0;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    height: 280px;
    background-position: center;
    background-size: cover;
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

#team-image-1 {
    background-image: url('images/master-ceo.png');
    background-size: cover;
    background-position: center top;
}

#team-image-2 {
    background-image: url('images/master-pd.png');
    background-size: cover;
    background-position: center top;
}

#team-image-3 {
    background-image: url('images/master-manager.png');
    background-size: cover;
    background-position: center top;
}

.team-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.team-position {
    color: var(--accent-color);
    font-weight: 500;
    padding: 0 1.5rem;
    margin-bottom: 0.8rem;
}

.team-card p:not(.team-position) {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.7;
}

/* 팀 소셜 미디어 스타일 */
.team-social {
    display: flex;
    padding: 0 1.5rem 1.5rem;
    gap: 1rem;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(0, 69, 64, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* 연혁 섹션 스타일 */
.history-section {
    padding: 5rem 0;
    background-color: var(--secondary-color);
    position: relative;
}

.history-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.05" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.1"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    z-index: 1;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 120px;
    width: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
    padding-left: 160px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    top: 8px;
    left: 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    width: 70px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    z-index: 3;
}

.timeline-item:hover .timeline-date {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.timeline-dot {
    position: absolute;
    left: 120px;
    top: 15px;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background-color: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(0, 69, 64, 0.2);
}

.timeline-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border-left: 3px solid transparent;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-left: 3px solid var(--accent-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #555;
    margin-bottom: 0.5rem;
}

/* 서비스 특징 섹션 스타일 */
.features-section {
    padding: 5rem 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 69, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: #fff;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
}

/* FAQ 섹션 스타일 */
.faq-section {
    padding: 5rem 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
}

.faq-icon {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* CTA 섹션 스타일 */
.cta-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.cta-button {
    display: inline-block;
    background-color: #fff !important;
    color: #1a1a2e !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700 !important;
    font-family: var(--main-font);
    letter-spacing: -0.5px;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    background-color: #f0f0f0 !important;
    box-shadow: none !important;
}

/* 반응형 스타일 */
@media (max-width: 1024px) {
    .masters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid, .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .logo {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .slogan {
        font-size: 1.8rem;
    }
    
    /* 모바일에서 CTA 버튼 세로 배치 */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #contact-btn {
        padding: 1rem 1.5rem;
        padding-right: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: rgba(26, 26, 46, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: all 0.3s ease;
        z-index: 999;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        color: #ffffff !important;
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .menu-toggle {
        display: block !important;
        color: #ffffff;
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 1000;
        position: relative;
        padding: 0.5rem;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .menu-toggle:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    /* 모바일 터치 최적화 */
    .nav-link, .cta-button, .menu-toggle {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    /* 모바일에서 hover 효과 제거 */
    @media (hover: none) {
        .nav-link:hover, .cta-button:hover, .menu-toggle:hover {
            background-color: transparent;
            transform: none;
        }
    }
    
    /* 모바일에서 축약된 텍스트 표시 */
    .nav-text-full {
        display: none;
    }
    
    .nav-text-mobile {
        display: inline;
    }
}

@media (max-width: 576px) {
    .masters-grid, .gallery-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        padding: 1rem;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
        word-break: keep-all;
        word-wrap: break-word;
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .slogan {
        font-size: 1.5rem;
    }
    
    /* 작은 모바일 화면에서 CTA 버튼 최적화 */
    .cta-buttons {
        max-width: 280px;
        gap: 0.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        min-height: 45px;
    }
    
    #contact-btn {
        padding: 0.8rem 1rem;
        padding-right: 2.5rem;
    }
    
    #contact-btn i {
        right: 1rem;
    }
    
    /* 모바일에서 버튼 텍스트 최적화 */
    #contact-btn {
        position: relative;
    }
    
    #contact-btn::before {
        content: "문의하기";
        display: none;
    }
    
    /* 매우 작은 화면에서 텍스트 변경 */
    @media (max-width: 360px) {
        #contact-btn .fas {
            display: none;
        }
        
        #service-btn {
            font-size: 0.8rem;
        }
        
                 #contact-btn {
             font-size: 0.8rem;
         }
         
         .section-title {
             font-size: 1.8rem;
             line-height: 1.4;
             padding: 0 0.5rem;
         }
    }
} 

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 350px;
        margin-bottom: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 90px;
    }
    
    .timeline-dot {
        left: 90px;
    }
    
    .timeline-date {
        position: absolute;
        width: 70px;
        top: 8px;
        left: 0;
        z-index: 3;
    }
    
    .timeline-item {
        padding-left: 120px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .timeline::before {
        left: 80px;
    }
    
    .timeline-dot {
        left: 80px;
    }
    
    .timeline-item {
        padding-left: 110px;
    }
    
    .timeline-date {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        width: 60px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* 갤럭시 플립 (세로 모드) 최적화 */
@media (max-width: 320px) {
    .section-title {
        font-size: 1.7rem;
        line-height: 1.4;
        padding: 0 0.5rem;
        margin-bottom: 2.5rem;
    }
    
    .services-intro .section-title {
        font-size: 1.5rem;
        line-height: 1.5;
        padding: 0 0.3rem;
        margin-bottom: 2rem;
    }
}

/* 갤럭시 플립과 같은 폴더블 폰 최적화 */
@media (max-width: 280px) {
    .section-title {
        font-size: 1.6rem;
        line-height: 1.5;
        padding: 0 0.3rem;
        margin-bottom: 2rem;
    }
    
    .container {
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .header-content {
        padding: 0.5rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .slogan {
        font-size: 1.3rem;
        padding: 0 0.5rem;
    }
    
    /* 긴 제목의 자연스러운 줄바꿈 */
    .services-intro .section-title {
        font-size: 1.4rem;
        line-height: 1.6;
        padding: 0 0.2rem;
        margin-bottom: 1.5rem;
    }
}

/* 서비스 소개 섹션 */
.services-intro {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.services-intro .section-title {
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

.service-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--mustard-color), #f4c430);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* 통계 섹션 */
.statistics {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

@media (max-width: 768px) {
    .statistics {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .statistics {
        padding: 2rem 0;
    }
}

.statistics .section-title {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .statistics .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .statistics .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

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

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--mustard-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 최근 행사 하이라이트 */
.recent-events {
    padding: 5rem 0;
    background-color: #fff;
}

.recent-events .section-title {
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

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

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

.event-highlight {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .event-highlight {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.event-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
}

#event-image-1 {
    background-image: url('images/bb.jpg');
}

#event-image-2 {
    background-image: url('images/soop.jpg');
}

#event-image-3 {
    background-image: url('images/lina.jpg');
}

#event-image-4 {
    background-image: url('images/daewoo.jpg');
}

.event-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-content h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-client {
    color: var(--mustard-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-results {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.result-item {
    background: rgba(237, 169, 0, 0.1);
    color: var(--mustard-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.result-item i {
    margin-right: 0.5rem;
}

/* 개선된 고객 후기 */
.testimonials {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 2rem 0;
    }
}

.testimonials .section-title {
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .testimonials .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonials .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

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

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .client-info {
        width: 100%;
    }
    
    .stars {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .client-info {
        width: 100%;
    }
    
    .stars {
        align-self: flex-start;
    }
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    margin-bottom: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--mustard-color);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--mustard-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.client-details h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.client-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.stars {
    color: var(--mustard-color);
    font-size: 1.1rem;
}

.testimonial-text {
    color: #444;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--mustard-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.client-details h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.client-details p {
    color: #666;
    font-size: 0.9rem;
}

/* 타로마스터 개선 */
.master-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.master-card:hover {
    transform: translateY(-5px);
}

.master-info {
    padding: 1.5rem;
}

.master-info h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.master-title {
    color: var(--mustard-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.master-experience {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.master-specialties {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.specialty {
    background: rgba(237, 169, 0, 0.1);
    color: var(--mustard-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .event-highlight {
        grid-template-columns: 1fr;
    }
    
    .event-image {
        height: 200px;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* 포트폴리오 이미지 스타일 */
.portfolio-image {
    width: 100% !important;
    height: 300px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
}

.portfolio-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 100% !important;
    min-height: 100% !important;
}