@import url('https://rsms.me/inter/inter.css');
html { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
  html { font-family: 'Inter var', sans-serif; }
}

/*for header */

* {
    box-sizing: border-box;
    margin: 0; 
}

.navbar-menu {
    width: 100%;
    min-height: .2vh;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 3.5em;
    overflow: hidden;
    font-size: calc(14px + .25vh);
    text-align: right;
}

.logo {
    height: 3vh;
    min-height: 28px;
    display: inline;
    float: left;
}

/* links on navbar*/ 

nav {
    flex: 1;
    display: table;
    width: 100%;
}

nav ul li {
    list-style: none; 
}

nav ul li a {
    line-height: 1.9em; 
    font-weight: 600;
}

@media only screen and (max-width: 1360) {
    
}

/*1360px*/


/*for links*/

a:link, a:visited {
    text-decoration: none; 
    color:#000000;
}

/*for main page*/

.body {
    min-height: calc(100vh - 200px)
}

/*for gallery*/

.gallery {
    padding-left: 22vw; /*change for img spacing padding (left == right)*/
    padding-right: 22vw;
    padding-top: 8vh;

}
.row {
    display: flex;
    flex-wrap: wrap; 
    padding: 0 4px;
    position: relative; 
}

.column {
    flex: 25%; /*percentage == 1/x where x is the number of columns*/
    max-width: 25%;
    padding-right: .37vw; /*goes with margin-top to change photo borders*/
}

.column img {
    margin-top: .37vw;
    vertical-align: middle;
    width: 100%;
}

/* not in use, evil blur filter
.column img:hover {
    -webkit-filter: blur(1px);
    filter: blur(1px);
}
*/

/*gallery text on top*/

.top_bar_container {
    /*padding-top: 6vh;*/
}
.top_bar_text {
    line-height: 12px;
    font-size: 80px;
    font-weight: 800;
    text-align: center;
}


/*text on hover*/

.description {
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    color: white;
    font-size: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
}

/*contact page content*/

.content {
    padding-top: 35vh;
    font-size: 30px;
    font-weight: 420;
    text-align: center;
}
.content .content_text{
    line-height: 21.6px;
}


/*bottom page logo*/

.bottom_logo_container {
    position: absolute; 
    bottom: 0;
    width: 100%;

    max-height: 12px;
}


.bottom_logo {
    position: inherit;
    bottom: 0;
    width: 100%;
    padding-bottom: 20px;
    font-size: 30px;
    text-align: center;
    font-weight: 1000;
    line-height: 18.6px;
}

polaroid.blue {
    color: #0c6fad;
}

polaroid.green {
    color: #a2aa31;
}

polaroid.yellow {
    color: #e6c719;
}

polaroid.orange {
    color: #d16f26;
}

polaroid.pink {
    color: #be0a63;
}

polaroid.purple {
    color: #683fb7;
}


/* Hide checkboxes and labels */
input[type="checkbox"] {
    display: none;
}

label {
    cursor: pointer;
}

label img {
    max-width: 100%;
    transition: opacity 0.5s;
}

/* Style the image pop-up container */
.image-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Style the image inside the pop-up */
.image-popup img {

    max-width: 70%;
    max-height: 70%;
    
    /* maintains aspect ratio*/
    width: auto; 
    height: auto;
}

/* When a checkbox is checked, display the image pop-up */
input:checked + label + .image-popup,
input:checked + label + .image-popup label {
    display: flex;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1; /* Place the overlay below the pop-up */
}




