@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
}
body {
    font-family: "Noto Sans KR", sans-serif;
    line-height: 1.6;
    color: #333;
}
li {
    list-style: none;
}
/* 헤더 */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    top: 0;
    margin-bottom: 50px;
}
.reserch-btn {
    padding: 10px;
    cursor: pointer;
    background-color: #0c1526;
    color: white;
    font-size: 16px;
    border-radius: 5px;
}

.header .container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    height: 80px;
}
.header .container button {
    border: none;
}
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    cursor: pointer;
    padding-top: 25px;
}
.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #3498db;
}

.content {
    width: 80%;
    margin: 0 auto;
}
.content-title {
    text-align: center;
    margin-bottom: 50px;
}
.content-text {
    margin-bottom: 50px;
    line-height: 2;
}
/* 푸터 */
.footer {
    margin-top: 150px;
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
}
.footer-box {
    display: flex;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
}
.footer-logo {
    margin-top: 5px;
}
.footer-text {
    margin-right: 400px;
    margin-left: 50px;
    text-align: left;
}
.footer-text h3 {
    font-size: 14px;
    margin-bottom: 10px;
}
.footer-text h4 {
    font-size: 14px;
    margin-bottom: 10px;
}
.footer-text h5 {
    font-size: 14px;
    margin-bottom: 10px;
}
.footer-text a {
    font-size: 14px;
    display: block;
    margin-bottom: 30px;
}
.footer-text p {
    font-size: 12px;
}
.footer-num {
    text-align: left;
}
.footer-num h5 {
    margin-bottom: 10px;
}
.footer-num h2 {
    margin-bottom: 10px;
    font-size: 40px;
}

/* 반응형 */
@media (max-width: 768px) {
    .header .container {
        justify-content: center;
        flex-direction: column;
        height: 120px;
    }

    .main-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .reservation-content {
        grid-template-columns: 1fr;
    }

    .nav {
        gap: 1rem;
    }
    .modal {
        width: 400px;
    }
    .result-modal {
        width: 400px;
    }
    .reserch-modal {
        width: 400px;
    }
    .footer-box {
        width: 400px;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    .footer-text {
        margin-right: 0;
        margin-left: 0;
        text-align: center;
    }
    .footer-text h5 {
        margin-bottom: 10px;
    }
    .footer-text p {
        margin-bottom: 30px;
    }
}
