@import url("../renaissance.css");
@import url("../lib/sharing.css");

h1 {
    text-align: center;
    background-color: var(--white);
    padding: 1.5rem 2.5rem;
    margin: 0 0 1rem 0;
    width: calc(100% - 5rem);
}

main {
    padding-bottom: 0;
    background-color: var(--light-brand-color);
}

.venue-page-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-height: 100vh;
}

.venue-overview {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 25%;
    background-color: var(--light-brand-color);
    color: var(--light-brand-contrast-color);
    min-height: 100vh;
    padding-bottom: calc(75px + 1rem)
}

.venue-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 75%;
    background-color: var(--white);
    color: var(--black);
    min-height: 100vh;
    padding-bottom: calc(75px + 1rem)
}

.venue-poster, .venue-event-poster {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.venue-poster img, .mobile-venue-poster img {
    width: 100%;
    object-fit: contain;
}

.mobile-venue-poster {
    display: none;
}

.venue-main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% - 10rem);
    padding: 2rem 5rem;
}

.venue-location {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--dark-brand-color);
    width: calc(100% - 8rem);
    margin: 2rem;
    padding: 2rem;
    border-radius: 8px;
    color: var(--dark-brand-contrast-color);
}

.venue-main .synopsis {
    margin: 0 5rem 2rem 5rem;
    font-size: 1.1rem;
}

.map-container {
    position: relative;
    top: 0;
    left: 0;
    height: 250px;
    width: 100%;
    border: solid 1px var(--light-brand-color);
    margin: 0 0 1rem 0;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 0;
}

.venue-address-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 2rem;
}

.venue-address {
    font-size: 0.8rem;
    margin: 0.5rem 0 0 0;
}

.weather {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
}

.quick-actions {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 1rem;
    width: calc(100% - 2rem);
}

.quick-action {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    align-items: center;
    margin: 0.5rem 0;
    color: var(--dark-links);
}

.quick-action img {
    height: 1.5rem;
    margin-inline-end: 1rem;
}

.quick-action-info {
    font-size: 1rem;
    margin: 1rem 0 0 0;
}

.social-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 2rem;
}

.social-link {
    display: flex;
    height: 2rem;
    width: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-link a {
    height: 25px;
}

.social-link img {
    height: 25px;
    object-fit: contain;
}

.event {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0 1rem 2rem 1rem;
    width: 250px;
}

.event .poster {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.poster img {
    width: 100%;
    object-fit: contain;
}

.event .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0.25rem 0 0 0;
}

.event .info .date {
    font-size: 0.8rem;
    margin: 0.15rem 0 0 0;
}
.event .info h3 {
    display: flex;
    width: 100%;
    font-weight: normal;
    color: var(--titles);
    font-size: 1rem;
    margin: 0.25rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    justify-content: center;
    white-space: nowrap;
}

h4 {
    font-weight: normal;
    color: var(--titles);
}

.meta-group li {
    margin: 0.5rem 1rem;
}
