body {
    font-family: "Antic Didone", serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

a {
    text-decoration: none;
    color: rgba(65, 96, 74, 1);
    background: linear-gradient(0deg, rgba(65, 96, 74, 1), rgba(65, 96, 74, 1)) no-repeat right bottom / 0 var(--bg-h);
    transition: background-size 350ms;
    padding-bottom: 2px;
    --bg-h: 1.5px;
}

a.image-link {
    background: none;
}

a:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
}

.wedding-website {
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 20px;
}

.header {
    margin-bottom: 100px;
}

.left-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 30%;
    bottom: 0;
    padding: 20px;
    background-color: #fff;
    overflow-y: auto;
    background-image: url('./background-top.jpg');
    background-size: 100% auto;
    background-position: top left;
    background-repeat: no-repeat;
    border-right: rgba(65, 96, 74, 0.2) 1px solid;
}

.right-section {
    position: fixed;
    top: 0;
    right: 0;
    left: 70%;
    bottom: 0;
    overflow-y: auto;
    
}

.right-section-content {
    padding: 20px;
    min-height: 100%;
    background-color: #FEFDFB;
    background-image: url('./background-bottom.jpg');
    background-size: 100% auto;
    background-position: bottom left;
    background-repeat: no-repeat;
}

.question {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 20px;
    color: #000000;
}

.question svg {
    width: 30px;
    margin-right: 6px;
}

.hotels {
    margin-top: 30px;
    display: flex;
    margin-left: -20px;
    width: calc(100% + 40px);
}

.hotel {
    width: 50%;
    padding: 10px;
}

.hotel:first-child {
    padding-left: 20px;
}

.hotel:last-child {
    padding-right: 20px;
}

.hotel img {
    width: 100%;
    border-radius: 3px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.left-section h1, .right-section h2 {
    color: #333;
    margin-bottom: 10px;
}

p.strong {
    font-size: 20px;
    margin: 12px 0;
}

.transport-info {
    margin-top: 30px;
    background-color: #D8DDE6;
    border-radius: 3px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 1px 20px;
}

.important-note {
    margin-top: 30px;
    margin-bottom: 40px;
    background-color: #d7dcd8;
    border-radius: 3px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 1px 20px;
}

.transport-info li, .important-note li {
    font-size: 18px;
    margin: 10px 0;
}

#room-list {
    margin: 60px 0;
    padding: 0;
}

#room-list li {
    list-style: none;
    background-color: #FEFDFB;
    margin: 10px 0;
    border:rgba(65, 96, 74, 0.3) solid 1px;
    border-radius: 3px;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

#room-list li:hover {
    background-color: #c6cec8;
    color: #000;
}

#room-list li .room-hotel, #room-hotel {
    font-size: 18px;
    margin-right: 10px;
}

#room-list li .room-name, #room-name {
    display: inline-block;
    font-size: 18px;
    color: #000;
    background:rgba(65, 96, 74, 0.1);
    padding: 3px 5px 4px;
    border-radius: 3px;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

#room-list li:hover .room-name {
    background:rgba(255, 255, 255, 0.5);
}

#room-list li .room-capacity, #room-capacity {
    display: flex;
    margin-left: auto;
}

#room-list li .room-capacity svg, #room-capacity svg {
    width: 20px;
    margin-left: -4px;
}

#room-list li .room-price, #room-price {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 600;
    font-size: 20px;
    margin-left: 10px;
    width: 60px;
    text-align: right;
    color:rgba(65, 96, 74, 1);
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 0 10000px rgba(0, 0, 0, 0.2);
}

.popup-content {
    text-align: left;
    width: 100%;
}

.popup-content h2 {
    text-align: center;
}

.room-details {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid rgba(65, 96, 74, 0.3);
    padding: 10px;
    border-radius: 3px;
    margin: 20px 0;
}

.popup-content h2 {
    margin-top: 0;
}

.popup-content form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-content label, .popup-content input, .popup-content button {
    margin: 10px 0;
}

.popup-content label {
    margin-bottom: 0;
}

.popup-content input {
    box-sizing: border-box;
    font-family: "Antic Didone", serif;
    font-size: 18px;
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid rgba(65, 96, 74, 0.3);
}

.popup-content button {
    font-family: "Antic Didone", serif;
    font-size: 18px;
    padding: 10px 20px;
    background-color: rgba(65, 96, 74, 1);
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.popup-content button:hover {
    background-color: rgba(65, 96, 74, 0.8);
}

.popup-content button:active {
    transform: translateY(1px);
    background-color: rgba(65, 96, 74, 1);
    transition: none;
}

.popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

#confirmation {
    display: none;
    margin-top: 30px;
    background-color: #D8DDE6;
    border-radius: 3px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 1px 20px;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .left-section, .right-section {
        position: static;
    }
}

@media only screen and (max-width: 1400px) {
    .left-section {
        right: 40%;
    }
    .right-section {
        left: 60%;
    }
}

@media only screen and (max-width: 1100px) {
    .left-section {
        right: 50%;
    }
    .right-section {
        left: 50%;
    }

    .hotels {
        flex-direction: column;
    }

    .hotel {
        width: 100%;
        padding: 10px !important;
    }
}

.schedule-horizontal {
    display: block;
    max-width: 900px;
    width: 100%;
}
.schedule-vertical {
    display: none;
    max-width: 300px;
    width: 100%;
    margin-bottom: 20px;
}
@media (max-width: 1100px) {
    .schedule-horizontal {
        display: none;
    }
    .schedule-vertical {
        display: block;
    }
}
@media (max-width: 768px) {
    .schedule-horizontal {
        display: block;
    }
    .schedule-vertical {
        display: none;
    }
}
@media (max-width: 540px) {
    .schedule-horizontal {
        display: none;
    }
    .schedule-vertical {
        display: block;
    }
}