@charset "utf-8";

/************************************************************************
* header *
************************************************************************/
.header {
    width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 40px;
    font-weight: 700;
    color: #204A12;
}

.header .nav {
    display: flex;
    justify-content: flex-end;
    gap: 35px;
}

.header .nav a {
    font-size: 19px;
    font-weight: 500;
    color: #222;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header .nav a.active {
    color: #204A12 !important;
    font-weight: 700 !important;
}

.header .nav a:hover {
    color: #204A12;
    font-weight: 700;
}


/* 모달 기본 스타일 */
.reservation-modal {
    display: none;
    /* 기본적으로 숨김 */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

/* 모달 콘텐츠 */
.reservation-content {
    position: relative;
    margin: 10% auto;
    background: white;
    padding: 71px 175px;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
}

/* 닫기 버튼 */
.reservation-modal .close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    color: #333;
}

.reservation-modal h3 {
    font-size: 29px;
    font-weight: 700;
    color: #204A12;
    margin-bottom: 50px;
}

.reservation-modal .form-group label {
    color: #222;
    font-size: 20px;
    font-weight: 500;
}

.reservation-modal .form-group input {
    display: flex;
    width: 100%;
    height: 45px;
    padding: 26px 20px;
    margin-top: 10px;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid #DFDFDF;
    background: #FFF;
    font-size: 20px;
}

.reservation-modal .form-group input::placeholder {
    color: #ccc;
}

/* 폼 스타일 (선택사항) */
.modal-content form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.reservation-content form input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}


.reservation-content form .submit-button {
    background-color: #204A12;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 21px;
    font-weight: 700;
    margin-top: 50px;
    height: 55px;
    width: 100%;
}

.reservation-content form .submit-button:hover {
    background-color: #1b3a0e;
}