/* 예약 페이지 전체 스타일 */
.reservation-page {
    width: 100%;
    overflow: hidden;
    color: #4a4a4a;
    line-height: 1.6;
    background-color: #fdfbf6;
}

/* 헤더 섹션 */
.page-header {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.header-logo {
    width: 160px;
    height: auto;
    margin-bottom: 1rem;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: 'MaruBuri', serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.header-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'MaruBuri', serif;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* 컨테이너 */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* 예약 버튼 섹션 */
.booking-section {
    background-color: #fff;
    text-align: center;
    padding: 3rem 0;
    border-bottom: 1px solid #f0ebe0;
}

.booking-content {
    max-width: 600px;
    margin: 0 auto;
}

.booking-content h2 {
    font-size: 1.8rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    font-weight: 500;
}

.booking-content p {
    color: #666;
    margin-bottom: 2rem;
}

.booking-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background-color: #8b7355;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.2);
}

.booking-button:hover {
    background-color: #6d5a43;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

/* 필독사항 섹션 */
.notice-section {
    background-color: #fff;
    text-align: center;
    border-bottom: 1px solid #f0ebe0;
}

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

.notice-content h2 {
    font-size: 1.8rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.notice-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* 기본 정보 섹션 */
.info-section {
    background-color: #fdfbf6;
    border-bottom: 1px solid #f0ebe0;
}

.info-section h2,
.usage-section h2,
.rules-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    font-weight: 500;
}

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

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    text-align: center;
    border: 1px solid #f0ebe0;
}

.info-icon {
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.info-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.info-card li {
    color: #666;
    margin: 0.8rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.info-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b7355;
}

.info-card li.notice {
    color: #888;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* 이용 안내 섹션 */
.usage-section {
    background-color: #fff;
    border-bottom: 1px solid #f0ebe0;
}

.usage-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fdfbf6;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #f0ebe0;
}

.usage-list {
    list-style: none;
    padding: 0;
}

.usage-list li {
    color: #666;
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
}

.usage-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b7355;
}

/* 이용 규칙 섹션 */
.rules-section {
    background-color: #fdfbf6;
}

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

.rule-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0ebe0;
}

.rule-card h4 {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.rule-card h4 i {
    color: #8b7355;
}

.rule-card ul {
    list-style: none;
    padding: 0;
}

.rule-card li {
    color: #666;
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.rule-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b7355;
}

/* 네이버 예약 버튼 스타일 */
.booking-button.naver {
    background-color: #03c75a;
    box-shadow: 0 2px 8px rgba(3, 199, 90, 0.2);
}

.booking-button.naver:hover {
    background-color: #02b150;
    box-shadow: 0 4px 12px rgba(3, 199, 90, 0.3);
}

/* 예약 안내 이미지 스타일 */
.notice-image {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.notice-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.notice-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.notice-image:hover img {
    transform: scale(1.05);
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem;
    }

    .header-content {
        width: 90%;
        padding: 2rem;
    }

    .header-logo {
        width: 140px;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-content p {
        font-size: 1.1rem;
    }

    .info-grid, .rules-grid {
        grid-template-columns: 1fr;
    }

    .info-card, .rule-card {
        max-width: 100%;
    }

    .booking-button {
        width: 100%;
        justify-content: center;
    }

    .notice-image {
        margin-top: 2rem;
    }

    .notice-image img {
        height: 200px;
    }
}
