@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

/* Layout */
body {
    background-color: #4d5141;
    color: #e0d6c8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 16px;
    color: #e0d6c8;
}

/* Navigation */
.top-nav {
    padding: 10px 0;
}

.top-nav ul {
    display: flex;
    justify-content: center;
    gap: 50px;
    list-style: none;
    flex-wrap: wrap;
}

.top-nav a {
    color: #e0d6c8;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: 0.2s;
}

.top-nav a:hover,
.top-nav a.active {
    background: #e0d6c8;
    color: #242420;
}

/* 🔥 예약 버튼 */
.reservation-btn {
    background: #e0d6c8;
    color: #242420 !important;
    font-weight: 700;
}

.reservation-btn:hover {
    background: #d4c7b5 !important;
}

/* Main */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
    background: #FFF5E1;
    padding: 30px;
    border-radius: 15px;
}

/* Intro */
.guide-intro {
    margin-bottom: 25px;
}

.guide-intro h2 {
    color: #4d5141;
    font-size: 28px;
    margin-bottom: 10px;
}

.guide-intro p {
    color: #4d5141;
    line-height: 1.6;
}

/* 예약 CTA */
.booking-cta {
    text-align: center;
    margin: 20px 0 30px;
}

.booking-cta a {
    display: inline-block;
    background: #4d5141;
    color: #FFF5E1;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
}

.booking-cta a:hover {
    background: #3b3f34;
}

/* Grid */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Card */
.guide-card {
    background: #fffaf0;
    border: 1px solid #d8ccb8;
    border-radius: 12px;
    padding: 20px;
    color: #4d5141;
    transition: 0.2s;
}

.guide-card:hover {
    transform: translateY(-2px);
}

.guide-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.guide-card p,
.guide-card li {
    font-size: 15px;
    line-height: 1.6;
}

.guide-card ul {
    padding-left: 18px;
}

.guide-card li + li {
    margin-top: 5px;
}

.guide-card a {
    color: #4d5141;
    font-weight: 700;
}

.full-width {
    grid-column: 1 / -1;
}

/* 🤖 챗봇 카드 */
.chatbot-card {
    background: #f3ead8;
    border: 2px solid #4d5141;
    text-align: center;
}

.chatbot-card a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: #4d5141;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 16px;
}

/* 📱 Mobile */
@media (max-width: 768px) {

    h1 {
        font-size: 20px;
    }

    .top-nav ul {
        gap: 15px;
    }

    .top-nav a {
        font-size: 15px;
        padding: 8px 12px;
    }

    .reservation-btn {
        padding: 8px 14px;
    }

    .container {
        padding: 18px;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }

    .booking-cta a {
        width: 100%;
        max-width: 300px;
        font-size: 16px;
    }

    .guide-card h3 {
        font-size: 18px;
    }

    .guide-card p,
    .guide-card li {
        font-size: 14px;
    }
}