:root {
    --pageMaxWidth: 1200px;
    --bgColor: #161616;
    --mainBlueColor: #7594b4;
    --detailsTextColor: #f7f7f7;
    --lineColor: #666;
    --headerTextColor: #fff;

}

body {
    font-family: sans-serif;
    font-size: 1rem; 
    background: var(--bgColor); 
    margin: 0;
    padding: 0;
}

.eventImageItemGrid li {
    margin: 0;
    padding: 5px;
}


ul.imageItemGrid {
    padding: 0;
    margin: 20px 0 40px;
    display: grid;
    grid-gap: 10px;
    justify-content: center;
    align-items: stretch;
    list-style: none;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
}

ul.imageItemGrid img {
    width: 100%;
    display: block;

}

details {
    color: var(--detailsTextColor);
    margin: 20px 0;   
}

summary {
    cursor: pointer;
    padding: 0 0 10px;
    border-bottom: 1px dotted var(--lineColor);
}

h1 {
    /* color: #284461; */
    color: #cf5233;
    font-size: 1.6rem;
    text-transform: uppercase; 
    margin: 0;
}

h2 {
    color: var(--mainBlueColor);
    font-size: 1.2rem;
    display: inline;
    text-transform: uppercase;
}

header {
    /* border-bottom: 1px solid var(--lineColor); */
    padding: 20px 0;
    /* background-color: #9bc6c7; */
    background-color: var(--mainBlueColor);
    background-image: url('img/stuffCloud.png');
    background-repeat: no-repeat;
    /* background-size: 50%; */
    background-position: right -20px top -50px;
}

.headerInfo {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(255 255 255 / 0.5);
}

.title {
    color: var(--headerTextDarkColor);
    margin: 5px 0 10px;
}


summary p {
    margin: 10px 0 0 20px;
    font-size: 0.8rem;
}

.info {
    display: block;
    color: var(--headerTextDarkColor);
    font-size: 0.8rem;
}

.info a {
    color: inherit;
    text-decoration: none;
}

.info a:first-child {
    padding: 0 10px 0 0;
    margin: 0 10px 0 0;
    border-right: 2px dotted var(--headerTextDarkColor);
}


.limitWidthContainer {
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    padding: 0 20px 20px;
    margin: 0 auto;
}

.largeImg {
    width: 95%;
    top: 0;
    max-width: 900px;
    position: absolute;
    display: none;
    z-index: 1000;
}

.largeLoad {
    top: 0;
    width: 200px;
    position: absolute;
    display: none;
    z-index: 1001;
    text-align: center;
}


    .largeImgLoader img {
        width: 50%;
        box-sizing: border-box;
        padding: 20px;
    }

    .navPageBg {
        position: absolute;
        left: -6000px;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0;
    }

.navPageBgShow {
    left: 0;
    transition: opacity 0.5s ease;
    opacity: 0.8;
}

.navPageBgHide {
    transition: opacity 0.5s ease;
    opacity: 0;
    left: -2000px;
}





@media screen and (max-width: 1150px) {
.headerInfo {
    background-color: rgb(255 255 255 / 0.95);
}
}



