html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  padding-bottom: 100px;
  background-color: var(--my-mid-bg)
}

/*CUSTOM*/
/*Fonts*/
/*<uniquifier > : Use a unique and descriptive class name*/
/*<weight > : Use a value from 100 to 900*/

.urbanist-100 {
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

.urbanist-200 {
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.urbanist-400 {
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.urbanist-600 {
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.urbanist-900 {
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

.lobster-regular {
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.caramel-regular {
    font-family: "Caramel", cursive;
    font-weight: 400;
    font-style: normal;
}

.caramel-100 {
    font-family: "Caramel", cursive;
    font-weight: 100;
    font-style: normal;
}

.caramel-600 {
    font-family: "Caramel", cursive;
    font-weight: 600;
    font-style: normal;
}

/*Vars*/
:root {
    --my-primary: #3C6E71;
    --my-primary-dark: #234143;
    --my-primary-light: #79b5b9;
    --my-secondary: #284B63;
    --my-secondary-dark: #1e3748;
    --my-secondary-light: #437ca3;
    --my-dark-bg: #353535;
    --my-light-bg: #FFFFFF;
    --my-mid-bg: #f2f2f3;
    /*--my-secondary-bg: #f2f2f3;*/
}
/*Simple Color classes*/
.my-bg-primary{
    background-color: var(--my-primary);
}

.my-bg-dark {
    background-color: var(--my-dark-bg);
}

.my-bg-light {
    background-color: var(--my-light-bg);
}

.my-bg-mid {
    background-color: var(--my-mid-bg);
}

.my-bg-secondary {
    background-color: var(--my-secondary);
}

.my-color-primary{
    color: var(--my-primary);
}

.my-color-secondary {
    color: var(--my-secondary);
}
/*general buttons*/
.my-btn-primary {
    background-color: var(--my-primary);
    color:white;
    border:none;
}

.my-btn-primary:hover{
    background-color: var(--my-primary-light)
}

.my-btn-primary:active{
    background-color: var(--my-primary-dark)
}

.my-btn-secondary {
    background-color: var(--my-secondary);
    color: white;
    border: none;
}

.my-btn-secondary:hover {
    background-color: var(--my-secondary-light)
}

.my-btn-secondary:active {
    background-color: var(--my-secondary-dark)
}

.opacity-gradient {
    mask-image: linear-gradient(to right, black 35%, transparent 95%);
}

/*Classes*/

/*Home Page*/
.header-button{
    border-radius:2rem;
    padding: 10px;
    font-size:1.2rem;
}

.hero {
    min-height:85vh;
    height:auto;
}

.hero-title {
    font-size: calc(5vw + 5rem);
    font-family: "Caramel", cursive;
    font-weight: 400;
    font-style: normal;
    color:white;
}

.footer-link {
    text-decoration: none;
    font-size: 1rem;
   color: var(--my-primary-light);
}

    .footer-link:hover {
        cursor: pointer;
        color: var(--my-primary-dark);
    }

    .footer-override{
        line-height:30px !important;
    }

.gallery-container {
    padding:16px;
    margin-bottom:16px;
    background-color: var(--my-light-bg);
    border-radius: 16px;
}

.gallery-container img{
    width:auto;
    max-height:10vw
}

.gallery-container h3{
    font-size: calc(1.5rem * .2vw);
}

    .gallery-container h6 {
        height: 10vw;
        font-size: 3rem; 
        display:flex;
        align-items:center
    }


/*OLD GALLERY CONTAINER*/
/*.gallery-container {
    border-top: 1px solid #BBB;
    padding-top: 5px;
    margin-top:10px;
    padding-bottom:5px;
    transition: .3s linear, transform .3s;
    padding-left:5px;
}*/

/*.gallery-container:hover{
    transform: scale(1.05);
    box-shadow:   0 0 0.25rem #BBB;
}*/

.gallery-goto-button {
    position: absolute;
    top: 50%;
    right: 0;
    margin: 0px;
    transform: translate(-50%, -50%);
    line-height: 0px;
}

.hide{
    display:none;
}

.thumbnail {
    width: auto;
    max-width: 25vw;
    /*height: calc(40px + 5vw);*/
    max-height: calc(40px + 5vw);
}

/*Gallery*/
#div_images_holder {
    background: var(--my-light-bg);
    border-radius: 15px;
}

#h2_author{
    font-size:2.5rem;
}
#h2_name{
    font-size:4rem;    
}
.download-image-button {
    border: none;
    text-align: center;
    background-color: rgba(220,220,220,.5);
    color: black;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: calc(20px + 1vw);
    height: calc(20px + 1vw);
    display:none;
    border-radius:5px;
}

.download-image-button:hover {
    color: white;
}


.delete-button {
    border: none;
    text-align: center;
    background-color: #DDD;
    color: darkred;
    position: absolute;
    top: 0px;
    right: 0px;
    display: none;
}

.delete-button:hover {
    color: red;
}



.gallery-image-holder {
    position: relative;
    width: 45%;
}

.gallery-image-holder:hover {
    /*background-color: #DDD;*/
    
}

.gallery-image-holder:hover .delete-button{
    display: block;
}

.gallery-image-holder:hover .download-image-button {
    display: block;
}

.gallery-image {
    width: 100%;
    height: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;    
    transition: 0.2s;
}

    .gallery-image:hover {
        filter: drop-shadow(10px 10px 4px #333);
        transform: translateY(-50%) scale(1.1);
    }

.full-screen-img {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color: rgba(0,0,0,.5);
    position: fixed;
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    width: 100dvw;
    left: 0;
    top: 0;
    justify-content: center;
}

.button-circle {
    height: calc(20px + 2vw);
    width: calc(20px + 2vw);
    border-radius: 5vw;
    border: none;
    justify-content: center;
    color: white;
    padding:0px;
    align-content:center
}

.button-circle:disabled{
    background-color: gray;
}
.button-circle svg {
    height: calc(8px + 1.8vw);
    width: calc(8px + 1.8vw);
}


.button-full-screen {
    height: calc(20px + 2vw);
    width: calc(20px + 2vw);
    border-radius: 5vw;
    border: none;
    justify-content: center;
    color: white;
    background-color: rgba(0,0,0,.7);
    padding: 0px;
    margin-top: 30px;
    margin-left: 20px;
    margin-right:20px;
}

.button-full-screen svg{
    height: calc(4px + 2vw);
    width: calc(4px + 2vw);  
}

.button-full-screen:hover {
    background-color: rgba(0,0,0,.85);   
}

.my-search-bar{
    height:3rem;
    display:flex;
    width: 100%
}

    .my-search-bar input {
        border: none;
        border-bottom-left-radius: 25px;
        border-top-left-radius: 25px;
        height: 100%;
        margin:0px;
        padding:.8rem;
        width: calc(80% - 3rem);
        margin-left:10%;
        font-size:1.5rem;
    }

    .my-search-bar button {
        border: none;
        border-top-right-radius: 25px;
        border-bottom-right-radius: 25px;
        height: 100%;
        margin: 0px;
        background-color: var(--my-mid-bg);
        border-left: 2px solid var(--my-secondary);
        width: 3rem;
        line-height:0px;
        padding:0;
        text-align:center;
        vertical-align:central;
    }

    .my-search-bar svg {
        width: 1.5rem;
        height: 1.5rem;
        color: var(--my-secondary);
    }




