menu, ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.photo-section {
    position: relative;
    visibility: visible;
}
.photo-gallery {
    height: 512px;
    display: grid;
    grid-auto-flow: column;
    gap: 8px;
    overflow: hidden;
    border-radius: 12px;
}
.photo-zone {
    position: relative;
    cursor: pointer;
}
.photo-zone.lg {
    grid-row: span 2 / span 2;
}
.photo-zone.md {
    grid-column: span 1 / span 1;
}
.photo-card img {
    max-width: 100%;
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0;
    color: transparent;
}
.photo-more {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.4rem;
    bottom: 12px;
    font-weight: bold;
    right: 12px;
    z-index: 10;
    cursor: pointer;
    padding: 0.5rem 1.2rem;
    background-color: #00D0FF;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgb(171, 171, 171);
}
@media (min-width: 1280px) {
    .photo-card.lg {
        height: 512px;
        min-width: 640px;
    }
    .photo-card.md {
        height: 252px;
        min-width: 272px;
    }
}
@media (min-width: 1080px) {
    .photo-gallery {
        height: 420px;
    }
    .photo-card.lg {
        height: 420px;
        min-width: 525px;
    }
    .photo-card.md {
        height: 206px;
        min-width: 229.5px;
    }
}
@media (min-width: 912px) {
    .photo-gallery {
        height: 356px;
    }
    .photo-card.lg {
        height: 356px;
        min-width: 445px;
    }
    .photo-card.md {
        height: 174px;
        min-width: 185.5px;
    }
}
@media (max-width: 911px) {
    .photo-gallery {
        width: 100%;
        height: 300px;
    }
    .photo-card.lg {
        height: 300px;
        min-width: 300px;
    }
    .photo-card.md {
        height: 150px;
        min-width: 150px;
    }
}
@media (max-width: 500px) {
    .photo-gallery {
        width: 100%;
        height: auto;
    }
    .photo-card.lg {
        height: auto;
        min-width: 300px;
        aspect-ratio: 1/1;

    }
    .photo-card.md {
        display: none;
    }
}
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal.hidden {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    z-index: 10;
    min-width: 375px;
    width: 70vw;
    aspect-ratio: 1/1;
    max-width: 600px;
    display: flex;
    align-items: center;
}

#modalImage {
    width: 100%;
    height: 100%;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
    height: 100%;
    padding: 2rem
}

#prevBtn { left: 0; }
#nextBtn { right: 0;}

/* ===================== */
.room-title {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0.5rem;
    border-left: 3px solid #00D0FF;
}
.room-point {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem;
    border-left: 3px solid #ffbe8f;
}
.room-point div {
    font-size: 1.6rem;
}
.room-point hr {
    width: 0.1rem;
    height: 20px;
}
.room-info {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem
}
.room-info .warning {
    display: flex;
    align-items: center;
}
/* ============================ */
.price-table {
    padding: 0.5rem;
    font-size: 1.4rem;
    table-layout: fixed;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,.25);
    border-collapse: collapse;
    border-radius: 5px;
    overflow: hidden;
}
.price-table th {
    text-align: center;
}
.price-table thead {
  font-weight: bold;
  color: #fff;
  background: #cebba7;
}
.price-table td, th {
  padding: 1em 0.5em;
  vertical-align: middle;
}
.price-table td {
  border-bottom: 1px solid rgba(0,0,0,.1);
  background: #fff;

}
td .help {
    margin: 0 auto;
}
.help {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    padding: 2rem;
    border-radius: 50%;
    background-color: #00D0FF;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: help;
    border: none;
}
/* ============================ */
.room-info .info-row {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    border-left: 3px solid #dedede;
}
.room-location {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0.5rem;
    border-left: 3px solid #dedede;
}
.room-location .info-row {
    display: flex;
    gap: 1rem;
}

