/* ==========================================
   기본 스타일 및 변수 설정
   ========================================== */
:root {
    --primary-color: #8B4513;
    --primary-dark: #6B3410;
    --primary-light: #A0522D;
    --secondary-color: #ff9f43;
    --special-color: #D2691E;
    --premium-color: #CD853F;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    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-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 25px;
}

/* 버튼 스타일 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    width: 100%;
}

/* ==========================================
   헤더 및 네비게이션
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

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

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ==========================================
   히어로 섹션
   ========================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://www.genspark.ai/api/files/s/yyhwVxV7') no-repeat center center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-description {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-description p {
    margin-bottom: 15px;
}

.hero-description strong {
    font-size: 1.1rem;
    color: #FFD700;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

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

/* ==========================================
   소개 섹션
   ========================================== */
.about {
    background: var(--bg-white);
}

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

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-image {
    height: 400px;
}

.about-video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
}

/* ==========================================
   객실 섹션
   ========================================== */
.rooms {
    background: var(--bg-light);
}

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

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
}

.room-info {
    padding: 25px;
}

.room-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.room-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-amenities {
    list-style: none;
    margin-bottom: 20px;
}

.room-amenities li {
    padding: 8px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-amenities i {
    color: var(--primary-color);
    width: 20px;
}

.room-price {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.room-badge.special {
    background: var(--special-color);
}

.room-badge.premium {
    background: var(--premium-color);
}

.room-card.featured {
    border: 2px solid var(--premium-color);
}

/* 단체 문의 배너 */
.group-inquiry-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.group-inquiry-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: white;
}

.group-inquiry-icon {
    font-size: 4rem;
    opacity: 0.9;
}

.group-inquiry-text {
    flex: 1;
}

.group-inquiry-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.group-inquiry-text p {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.group-inquiry-text .sub-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

.btn-contact {
    padding: 15px 30px;
    font-size: 1.1rem;
    white-space: nowrap;
    background: white;
    color: var(--primary-color);
}

.btn-contact:hover {
    background: var(--bg-light);
    transform: scale(1.05);
}

.btn-contact i {
    margin-right: 8px;
}

/* ==========================================
   부대시설 섹션
   ========================================== */
.facilities {
    background: var(--bg-white);
}

/* ==========================================
   식사 메뉴 섹션
   ========================================== */
.meals {
    background: var(--bg-light);
}

.meal-order-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-md);
    animation: pulse 2s ease-in-out infinite;
}

.meal-order-notice i {
    font-size: 1.5rem;
}

.meal-order-notice p {
    margin: 0;
    font-size: 1.1rem;
}

.meal-order-notice strong {
    font-size: 1.2rem;
}

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

.meal-category {
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.meal-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.meal-category-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.meal-category-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    flex: 1;
}

.meal-badge {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.meal-badge.breakfast {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.meal-badge.lunch {
    background: linear-gradient(135deg, #87CEEB, #4682B4);
}

.meal-badge.dinner {
    background: linear-gradient(135deg, #9370DB, #6A5ACD);
}

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

.meal-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.meal-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.meal-card.featured {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(160, 82, 45, 0.05));
    border: 2px solid var(--primary-light);
}

.meal-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.meal-info {
    flex: 1;
}

.meal-name {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.meal-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.meal-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.meal-price .price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.meal-price .price-unit {
    font-size: 0.9rem;
    color: var(--text-light);
}

.meal-note {
    margin-top: 20px;
    padding: 12px 20px;
    background: rgba(139, 69, 19, 0.1);
    border-left: 4px solid var(--primary-color);
    color: var(--text-dark);
    font-size: 0.95rem;
    border-radius: 5px;
}

/* 식당 이용 안내 박스 */
.dining-info-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.dining-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.dining-info-header i {
    font-size: 2rem;
}

.dining-info-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.dining-info-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
}

.info-item i {
    font-size: 2rem;
}

.info-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1rem;
    opacity: 0.9;
}

.info-item .small-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 3px;
}

.table-fee-info {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 15px;
}

.table-fee-info h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
}

.fee-range {
    font-size: 1.1rem;
    font-weight: 600;
}

.fee-price {
    font-size: 1.3rem;
    font-weight: 700;
}

.fee-note {
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: italic;
}

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

.facility-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.facility-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.facility-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.facility-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.facility-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   예약 섹션
   ========================================== */
.reservation {
    background: var(--bg-light);
}

.reservation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.reservation-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    height: fit-content;
}

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

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    margin: 3px 0;
}

.contact-item.highlight {
    background: rgba(139, 69, 19, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid var(--primary-light);
}

.contact-item.highlight strong {
    color: var(--primary-color);
}

.contact-item.highlight .note {
    font-size: 0.9rem;
    font-style: normal;
    color: var(--primary-dark);
}

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

/* ==========================================
   환불 규정 섹션
   ========================================== */
.refund-policy {
    background: var(--bg-light);
}

.refund-content {
    max-width: 800px;
    margin: 0 auto;
}

.refund-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.refund-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.refund-row:last-child {
    border-bottom: none;
}

.refund-row.refund-header {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
}

.refund-row.important {
    background: rgba(231, 76, 60, 0.1);
}

.refund-cell {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.refund-cell strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.refund-row.important .refund-cell strong {
    color: #e74c3c;
    font-size: 1.3rem;
}

.refund-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.refund-notice i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.refund-notice p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ==========================================
   이용 시 주의사항 섹션
   ========================================== */
.usage-rules {
    background: var(--bg-white);
}

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

.rule-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.rule-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.rule-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.rule-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.location-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-placeholder small {
    font-size: 0.9rem;
    opacity: 0.9;
    max-width: 80%;
    text-align: center;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
}

.info-item strong {
    color: var(--text-dark);
}

.info-item .note {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

/* ==========================================
   푸터
   ========================================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

/* ==========================================
   맨 위로 버튼
   ========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ==========================================
   갤러리 모달
   ========================================== */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.gallery-content {
    position: relative;
    margin: auto;
    padding: 40px 80px;
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-main-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
}

.gallery-close:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(139, 69, 19, 0.8);
    color: white;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition);
    z-index: 10001;
}

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

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-counter {
    color: white;
    font-size: 18px;
    margin-top: 20px;
    text-align: center;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-thumbnail {
    width: 100px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    border: 3px solid transparent;
    transition: var(--transition);
    opacity: 0.6;
}

.gallery-thumbnail:hover {
    opacity: 1;
    border-color: var(--secondary-color);
}

.gallery-thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.gallery-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gallery-icon i {
    font-size: 1rem;
}

/* ==========================================
   반응형 디자인
   ========================================== */
@media (max-width: 768px) {
    /* 네비게이션 */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    /* 히어로 */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    /* 섹션 */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* 소개 */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* 객실 */
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    /* 단체 문의 배너 */
    .group-inquiry-banner {
        padding: 30px 20px;
    }
    
    .group-inquiry-content {
        flex-direction: column;
        text-align: center;
    }
    
    .group-inquiry-icon {
        font-size: 3rem;
    }
    
    .group-inquiry-text h3 {
        font-size: 1.5rem;
    }
    
    .btn-contact {
        width: 100%;
    }
    
    /* 예약 */
    .reservation-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .reservation-form {
        padding: 25px;
    }
    
    /* 식사 메뉴 */
    .meal-order-notice {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .meal-order-notice p {
        font-size: 1rem;
    }
    
    .meal-order-notice strong {
        font-size: 1.1rem;
    }
    
    .meal-category {
        padding: 25px 20px;
    }
    
    .meal-category-header {
        flex-wrap: wrap;
    }
    
    .meal-grid {
        grid-template-columns: 1fr;
    }
    
    .meal-card {
        flex-direction: column;
        text-align: center;
    }
    
    .dining-info-box {
        padding: 25px 20px;
    }
    
    .info-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .fee-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* 오시는 길 */
    .location-content {
        grid-template-columns: 1fr;
    }
    
    /* 환불 규정 */
    .refund-row {
        grid-template-columns: 1fr;
    }
    
    .refund-cell {
        padding: 15px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .refund-row .refund-cell:first-child {
        background: var(--bg-light);
        font-weight: 600;
    }
    
    .refund-notice {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    /* 이용 시 주의사항 */
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    /* 푸터 */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
