@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;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* 헤더 */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    top: 0;
    z-index: 1000;
}
.reserch-btn {
    padding: 10px;
    cursor: pointer;
    background-color: #0c1526;
    color: white;
    font-size: 16px;
    border-radius: 5px;
}

.header .container {
    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;
}
.go-btn {
    text-align: center;
}
/* 메인 섹션 */
.main-section {
    background-image: url(./images/banner.png);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.main-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}
.big-size {
    display: block;
}
.small-size {
    display: none;
}
.hero-title {
    font-size: 2.7rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.point {
    font-size: 13px;
    font-weight: bold;
    color: #d8bf5c;
    margin-top: 10px;
}
.red-text {
    color: #d8bf5c;
}
.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
    text-align: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.1rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}
.stat-item p span {
    color: #d8bf5c;
}
.text-text {
    margin-top: 30px;
}
.cta-button {
    display: inline-block;
    background: #d8bf5c;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

/* 예약 섹션 */
.reservation-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #444;
    font-weight: bold;
}

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

.reservation-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3498db;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 0.5rem;
}

/* 성별 선택 스타일 */
.gender-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.gender-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.8rem 1.5rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    transition: all 0.3s;
}

.gender-option:hover {
    border-color: #3498db;
    background-color: #f8f9fa;
}

.gender-option input[type="radio"] {
    margin-right: 0.5rem;
    accent-color: #3498db;
}

.gender-option input[type="radio"]:checked + span {
    color: #3498db;
    font-weight: 600;
}

.submit-button {
    width: 100%;
    background: #cacaca;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #0c1526;
}

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 1.8rem;
    font-size: 1.3rem;
}

.info-card2 {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-card2 h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
}

.benefit-list,
.info-list {
    list-style: none;
}

.benefit-list li,
.info-list li {
    padding: 0.2rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.benefit-list li:last-child,
.info-list li:last-child {
    border-bottom: none;
}

.benefit-list li::before {
    content: "✓";
    color: #09090d;
    font-weight: bold;
    margin-right: 0.5rem;
}
.info-list li::before {
    content: "✓";
    color: #09090d;
    font-weight: bold;
    margin-right: 0.5rem;
}
.info-card-num {
    display: none;
    background-color: #f8f9fa;
    box-shadow: none;
}
/* 푸터 */
.footer {
    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;
}
.modal {
    width: 500px;
    height: 200px;
    box-sizing: border-box;
    padding-top: 20px;
    background-color: #d9d9d9;
    text-align: center;
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #09090d;
    border-radius: 20px;
    display: none;
}
#modal-title {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}
#close-btn {
    padding: 5px;
    background-color: #c0c0c0;
    border: none;
    border: 1px solid gray;
    cursor: pointer;
}
#close-btn:hover {
    background-color: #c0392b;
    color: white;
}
#modal-text {
    font-size: 20px;
    margin-bottom: 20px;
}
.reserch-modal {
    width: 500px;
    height: 300px;
    border-radius: 20px;
    background-color: #c0c0c0;
    color: #09090d;
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    box-sizing: border-box;
    padding-top: 20px;
    display: none;
}
.result-modal {
    width: 500px;
    height: 250px;
    border-radius: 20px;
    background-color: #d9d9d9;
    color: #09090d;
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    box-sizing: border-box;
    padding-top: 30px;
    display: none;
}
#result-modal-close {
    padding: 5px;
    background-color: #c0c0c0;
    border: none;
    border: 1px solid gray;
    cursor: pointer;
}
#result-modal-close:hover {
    background-color: #c0392b;
    color: white;
}
.reserch-modal h2 {
    margin-bottom: 40px;
    color: #09090d;
}
.form-input2 {
    width: 80%;
    padding: 5px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    margin-bottom: 20px;
}
.rebtn {
    padding: 5px;
    margin-top: 40px;
    background: #c0c0c0;
    border: none;
    border: 1px solid gray;
    cursor: pointer;
}
.reserch-close-btn {
    padding: 5px;
    background-color: #c0c0c0;
    border: none;
    border: 1px solid gray;
    cursor: pointer;
}
.small {
    font-size: 12px;
}
.rebtn:hover {
    background-color: #333;
    color: white;
}
.reserch-close-btn:hover {
    background-color: #c0392b;
    color: white;
}
.result-text {
    font-size: 20px;
    margin-bottom: 20px;
}
.dim {
    width: 100%;
    height: 227vh;
    background-color: #3333337a;
    position: absolute;
    top: 0;
    display: none;
}
.info-card p {
    margin-top: 10px;
    color: #d8bf5c;
}
/* 반응형 */
@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;
    }
    .big-size {
        display: none;
    }
    .small-size {
        display: block;
    }
    .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;
    }
    .footer-num {
        display: none;
    }
    .info-card-num {
        display: block;
    }
}
