/* 기본 리셋 및 변수 설정 */
:root {
    --primary-color: #ff6b9d;
    --secondary-color: #f8b195;
    --accent-color: #f67280;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --background-light: #ffeaa7;
    --background-white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

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

/* 헤더 스타일 */
.header {
    background-color: var(--background-white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-family: 'Nanum Pen Script', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
}

.sub-logo {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* 히어로 섹션 */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #ff6b9d 0%, #f8b195 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23ff6b9d" width="1200" height="800"/><path fill="%23f8b195" d="M0 400L50 383.3C100 366.7 200 333.3 300 316.7C400 300 500 300 600 333.3C700 366.7 800 433.3 900 450C1000 466.7 1100 433.3 1150 416.7L1200 400V800H1150C1100 800 1000 800 900 800C800 800 700 800 600 800C500 800 400 800 300 800C200 800 100 800 50 800H0V400Z"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.hero-title {
    font-family: 'Nanum Pen Script', cursive;
    font-size: 3.5rem;
    color: var(--background-white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--background-white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.section-title {
    font-family: 'Nanum Pen Script', cursive;
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

/* 인사말 섹션 */
.greeting {
    background-color: #fff5f5;
}

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

.handwriting {
    font-family: 'Nanum Pen Script', cursive;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* 서비스 메뉴 섹션 */
.services {
    background-color: var(--background-white);
}

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

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

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

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

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

.price-list {
    list-style: none;
    margin-bottom: 1rem;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.price-list span {
    color: var(--accent-color);
    font-weight: 500;
}

.discount-info {
    background-color: var(--background-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* 특별 서비스 섹션 */
.special-services {
    background-color: #fff5f5;
}

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

.special-item {
    text-align: center;
    padding: 2rem;
}

.special-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

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

.special-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* 갤러리 섹션 */
.gallery {
    background-color: var(--background-white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.gallery-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #ff6b9d20 0%, #f8b19520 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

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

.gallery-placeholder span {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.gallery-placeholder p {
    font-family: 'Nanum Pen Script', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* 예약/연락처 섹션 */
.reservation {
    background-color: #fff5f5;
}

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

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.phone-number {
    font-size: 2.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.phone-note,
.kakao-note {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.kakao-id {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.business-hours {
    list-style: none;
    font-size: 1.1rem;
}

.business-hours li {
    padding: 0.5rem 0;
}

.business-hours .closed {
    color: var(--accent-color);
    font-weight: 500;
}

.reservation-notice {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.reservation-notice h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.reservation-notice ul {
    list-style: none;
}

.reservation-notice li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

/* 오시는 길 섹션 */
.location {
    background-color: var(--background-white);
}

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

.address-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.address {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.landmark {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.transport-info {
    list-style: none;
    margin-bottom: 2rem;
}

.transport-info li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.parking {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.map-placeholder {
    background: linear-gradient(135deg, #ff6b9d20 0%, #f8b19520 100%);
    height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-family: 'Nanum Pen Script', cursive;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.map-note {
    font-family: 'Noto Sans KR', sans-serif !important;
    font-size: 1rem !important;
    color: var(--text-light) !important;
}

/* 푸터 */
.footer {
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 2rem 0;
}

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

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

/* 반응형 디자인 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
    }
    
    .phone-number {
        font-size: 2rem;
    }
    
    .handwriting {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-grid,
    .special-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}