/* 파티모 스타일 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

:root {
    --primary: #E8A87C;
    --primary-dark: #d4956a;
    --primary-light: #FFF5EE;
    --secondary: #9B59B6;
    --secondary-dark: #8E44AD;
    --secondary-light: #F5EEFA;
    --gold: #FFD700;
    --gold-dark: #E8B84B;
    --dark: #1a0a2e;
    --gray-100: #F7F8FA;
    --gray-200: #EEF0F4;
    --gray-500: #8B95A5;
    --gray-700: #4A5568;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 16px;
}

body {
    font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    color: var(--gray-700);
    background: #FAFBFD;
    line-height: 1.7;
}

/* 네비게이션 */
.navbar {
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(155,89,182,0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar .nav-link {
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s;
}

.navbar .nav-link:hover {
    background: rgba(255,215,0,0.15);
    color: #FFD700 !important;
}

/* 히어로 섹션 */
.hero-section {
    background: linear-gradient(135deg, #0d0221 0%, #1a0a2e 25%, #2d1b4e 50%, #1a0a2e 75%, #150729 100%);
    color: white;
    padding: 100px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(155,89,182,0.25) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(232,168,124,0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255,215,0,0.08) 0%, transparent 50%);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.03), transparent, rgba(255,255,255,0.02), transparent);
    animation: shimmer 8s infinite linear;
}

@keyframes shimmer {
    0% { transform: translateX(-33%); }
    100% { transform: translateX(33%); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 4s ease-in-out infinite;
    text-shadow: none;
}

@keyframes goldShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-section .lead {
    font-size: 1.2rem;
    opacity: 0.92;
    font-weight: 300;
    position: relative;
    color: #d4c5f0;
}

.hero-price {
    display: inline-block;
    background: rgba(255,215,0,0.12);
    border: 1px solid rgba(255,215,0,0.35);
    border-radius: 50px;
    padding: 14px 44px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    color: #FFD700;
    box-shadow: 0 0 20px rgba(255,215,0,0.1);
}

.hero-section .btn-party {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    color: #1a0a2e;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(255,215,0,0.35);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.hero-section .btn-party::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.hero-section .btn-party:hover::before {
    left: 100%;
}

.hero-section .btn-party:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255,215,0,0.5);
    color: #1a0a2e;
}

/* 가격 카드 */
.price-card {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 30px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.price-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.price-card.premium {
    border-color: var(--secondary);
    background: linear-gradient(to bottom, var(--secondary-light), #fff);
}

.price-card.premium:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(155,89,182,0.2);
}

.price-amount {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
}

.price-card.premium .price-amount {
    color: var(--secondary);
}

.price-card ul li {
    padding: 6px 0;
    color: var(--gray-700);
}

.price-card ul li i {
    margin-right: 6px;
}

/* 매장 카드 */
.store-card {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.store-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.store-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

.store-card .card-body {
    padding: 22px;
}

.store-card .badge-area,
.badge-area {
    background: var(--secondary);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* 버튼 */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 24px;
    transition: all 0.3s;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200,149,108,0.35);
}

.btn-outline-danger {
    border-color: var(--primary);
    color: var(--primary);
    border-radius: 10px;
    font-weight: 500;
}

.btn-outline-danger:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-secondary-custom {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 24px;
    transition: all 0.3s;
}

.btn-secondary-custom:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(106,143,167,0.3);
}

.btn-lg {
    border-radius: 12px;
    padding: 14px 32px;
}

/* 예약 폼 */
.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius);
    padding: 44px;
    box-shadow: var(--shadow-md);
}

.form-control, .form-select {
    border-radius: 10px;
    border: 1.5px solid var(--gray-200);
    padding: 10px 16px;
    transition: border-color 0.2s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,89,79,0.1);
}

.form-label {
    color: var(--dark);
    font-size: 0.92rem;
}

/* 예약 완료 */
.booking-complete {
    text-align: center;
    padding: 44px;
}

.booking-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    background: var(--primary-light);
    padding: 16px 36px;
    border-radius: 14px;
    display: inline-block;
    letter-spacing: -0.5px;
}

/* 섹션 */
.section-title {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--gold));
    margin: 12px auto 0;
    border-radius: 2px;
}

/* 매장 상세 슬라이드 */
.store-detail-carousel .carousel-item img {
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* 정보 박스 */
.info-box {
    background: var(--gray-100);
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 16px;
}

.info-box i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 28px;
}

.info-box p {
    font-size: 0.95rem;
}

/* 푸터 */
.site-footer {
    background: #1a1f2e;
    color: #8b93a7;
    padding: 50px 0 30px;
    margin-top: 60px;
}

.site-footer h5 {
    color: #cdd2de;
    font-weight: 700;
    margin-bottom: 12px;
}

.site-footer h6 {
    color: #b0b8c9;
    font-weight: 600;
    margin-bottom: 14px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.footer-desc {
    color: #6b7389;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact li {
    color: #8b93a7;
    padding: 3px 0;
    font-size: 0.9rem;
}

.footer-contact li i {
    width: 22px;
    color: var(--primary);
}

.footer-links li {
    padding: 3px 0;
}

.footer-links a {
    color: #7c8498;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #cdd2de;
}

.site-footer hr {
    border-color: rgba(255,255,255,0.07);
    margin: 24px 0;
}

.footer-copy {
    color: #4e5567;
    font-size: 0.82rem;
}

/* 관리자 */
.admin-sidebar {
    min-height: 100vh;
    background: linear-gradient(180deg, #1a2332 0%, #2c3e50 100%);
}

.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.65);
    padding: 11px 18px;
    border-radius: 10px;
    margin-bottom: 3px;
    font-size: 0.92rem;
    transition: all 0.2s;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: white;
    background: rgba(255,255,255,0.1);
}

.admin-sidebar .nav-link i {
    width: 24px;
}

.stat-card {
    border: none;
    border-radius: 14px;
    padding: 22px;
    color: white;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

/* 이미지 플레이스홀더 */
.img-placeholder {
    background: linear-gradient(135deg, #1a0a2e, #2d1b4e, #3d2466);
    color: #c9a0dc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    height: 220px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.store-detail-carousel .img-placeholder {
    height: 420px;
    border-radius: var(--radius);
}

/* 카드 공통 */
.card {
    border-radius: 14px;
}

.card-header {
    border-radius: 14px 14px 0 0 !important;
    padding: 16px 20px;
}

/* 테이블 */
.table th {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* 배지 */
.badge {
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.78rem;
}

/* 알럿 */
.alert {
    border-radius: 12px;
    border: none;
}

/* 반응형 */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 50px;
    }
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .hero-price {
        font-size: 1.1rem;
        padding: 10px 28px;
    }
    .booking-form {
        padding: 28px 20px;
        margin: 0 10px;
    }
    .store-detail-carousel .carousel-item img,
    .store-detail-carousel .img-placeholder {
        height: 250px;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .site-footer {
        padding: 36px 0 24px;
    }
}
