#hall-profile {
    display: flex;
    flex-direction: column;
}

#main-image {
    float: right;
    clear: right;
}

#hall-description {
    display: flex;
    gap: 16px;
}

#continue-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
}

#hall-title-block {
    background-color: var(--gold);
    padding: 16px;
    color: var(--black);
    flex-grow: 0;
}
#hall-header {
    display: flex;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 64px;
}

.hall-name {
    color: var(--black);
}

#welcome-to-hall {
    margin-top: 32px;
}

.photo-grid {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sample-photos {
    margin: 0;
    width: 256px;
    height: 256px;
    object-fit: cover;
}

.sample-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

#main-image {
    width: 200px;
    aspect-ratio: 1;
}

.review-content {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

#reviews-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (max-width: 800px) {
    #main-image {
        float: none;
    }
    #hall-description {
        flex-direction: column;
    }
    #hall-header {
        background-attachment: scroll;
    }
    .sample-photos {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}