@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root{
    --padding: 10px 5%;

    --b0: rgb(250, 250, 215);
    --f0: rgb(14, 65, 6);
    --bx0: 3px 3px 4px rgba(5, 25, 2, 0.5);
    --bo0: rgba(5, 25, 2, 1);

    --hover: rgba(0, 0, 0, 0.2);
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: var(--b0);
    font-family: "Open Sans", sans-serif;
    color: var(--f0);
    text-shadow: 1px 1px 3px rgba(5, 25, 2, 0.4);
}
h1, h2, h3, h4, h5, h6{
    font-family: "Outfit", system-ui;
    text-shadow: 2px 2px 3px rgba(5, 25, 2, 0.5);
}
h1{
    font-size: 70px;
    line-height: 60px;
    margin-bottom: 25px;
    font-family: "Dancing Script", sans-serif;
}
h2{
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 25px;
}
h3{
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
}
header{
    top: 0;
    left: 0;
    padding: 25px 4%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background-color: var(--b0);
    position: fixed;
    width: 100%;
    z-index: 10;
}
header .left h3{
    font-family: "Dancing Script", sans-serif;
}
header h3{
    margin: 0;
}
header .left img{
    font-size: 25px;
}
header .bi-list{
    font-size: 31px;
}
header .left, header .right{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    padding: 0 10px;
    user-select: none;
}
header .right:hover, header .left:hover{
    cursor: pointer;
    background-color: var(--hover);
}
i{
    color: var(--f0);
    font-size: inherit;
}
padding{
    display: block;
    padding: var(--padding);
    width: 100%;
    margin-top: 125px;
}
::-webkit-scrollbar{
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-thumb{
    background-color: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb:hover{
    background-color: rgba(0, 0, 0, 0.25);
    cursor: pointer;
}
::-webkit-scrollbar-thumb:active{
    background-color: rgba(0, 0, 0, 0.3);
}
a{
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}
button{
    background-color: rgb(0, 225, 100);
    padding: 5px 10px;
    border: 1px solid rgb(0, 200, 90);
    border-radius: 6px;
    color: white;
    transition: all 100ms;
}
button:hover{
    background-color: rgb(0, 200, 90);
    border: 1px solid rgb(0, 175, 75);
}
input, textarea{
    background-color: whitesmoke;
    border-radius: 6px;
    width: 250px;
    padding: 5px;
    border: 1px solid darkgray;
    outline: none;
}
input:hover{
    background-color: rgb(235, 235, 235);
}
input:focus{
    background-color: rgb(235, 235, 235);
}
input::placeholder{
    color: darkgray;
}
img{
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: var(--bx0);
    user-select: none;
    pointer-events: none;
}
.input-validator{
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 25px;
    margin-bottom: 10px;
}
.input-validator p{
    margin: 0;
    font-size: 13px;
    line-height: 20px;
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 5;
}
.input-validator.invalid p{
    color: red;
}
.input-validator.invalid input{
    border-color: red;
}
.input-validator.invalid input:focus{
    outline-color: rgb(255, 50, 50);
}
.input-validator{
    display: flex;
    flex-direction: column;
}
.input-validator.valid p{
    color: rgb(0, 200, 0);
}
.input-validator.valid input{
    border-color: rgb(0, 200, 0);
}
.input-validator.valid input:focus{
    outline-color: rgb(0, 225, 0);
}
.invalid{
    border-color: red;
}
.subtitle{
    font-size: 25px;
    font-weight: bold;
    font-family: "Outfit", system-ui;
}
.bold{
    font-weight: bold;
}
.gold{
    color: rgb(255, 185, 0);
}
.hero{
    text-align: center;
    z-index: 5;
    position: absolute;
}
.heroHolder{
    display: flex;
    justify-content: center;
    gap: 250px;
    margin-bottom: 100px;
    align-items: center;
}
.heroHolder img{
    width: 400px;
    border-radius: 12px;
    object-fit: cover;
    height: 550px;
}
.categorieHeadline{
    margin-top: 100px;
}
.capture #capture{
    margin-bottom: 10px;
}
.capture #capturePreview{
    margin-bottom: 10px;
    width: 400px;
    height: 600px;
    object-fit: cover;
    background-color: darkgray;
}
.capture .captureOptions{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}
.momentsPlaceholder{
    display: flex;
    flex-direction: column;
    gap: 5px;
    user-select: none;
    flex: 1;
}
.momentsPlaceholder:hover{
    cursor: pointer;
}
.momentsPlaceholder h3{
    margin: 0;
    max-width: 400px;
}
.momentsPlaceholder p{
    max-width: 400px;
}
.capture .captureOptions *{
    max-width: 400px;
}
.capture .captureOptions #captureMessage{
    width: 400px;
}
.momentsPlaceholder img{
    background-color: darkgray;
    width: 400px;
    height: 600px;
    object-fit: cover;
}
.moments{
    display: flex;
    gap: 25px;
    padding: 20px;
    justify-content: center;
    min-height: 750px;
}
@media (max-width: 1450px) {
    .moments{
        flex-direction: column;
        padding: 0;
    }
}
.coffcanvas{
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 500;
    display: flex;
    justify-content: end;
}
.coffcanvas .content{
    z-index: 502;
    background-color: var(--b0);
    border: 1px solid var(--bo0);
    border-width: 0 0 0 1px;
    border-radius: 12px 0 0 12px;
    padding: 35px;
    box-shadow: -10px 0 6px rgba(5, 25, 2, 0.25);
    width: 500px;
    overflow-y: scroll;
}
.coffcanvas .content .options{
    margin-top: 75px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.coffcanvas .content .options .links{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.coffcanvas .content .options .links a{
    background-color: rgb(0, 225, 100);
    padding: 5px 10px;
    border: 1px solid rgb(0, 200, 90);
    border-radius: 6px;
    color: white;
}
.coffcanvas .content .options .links a:hover{
    background-color: rgb(0, 200, 90);
    border: 1px solid rgb(0, 175, 75);
    text-decoration: none;
}
.coffcanvas .background{
    z-index: 501;
    height: 100%;
    width: 100%;
    position: fixed;
    backdrop-filter: blur(5px);
    background-color: rgba(0,0,0,0.5);
}
.coffcanvas .top{
    display: flex;
    justify-content: space-between;
}
.coffcanvas .top h2{
    width: fit-content;
    margin: 0;
}
.coffcanvas .top .bi-x-lg{
    font-size: 35px;
    border-radius: 6px;
    padding: 0 10px;
}
.coffcanvas .top .bi-x-lg:hover{
    font-size: 35px;
    background-color: var(--hover);
    cursor: pointer;
}
footer{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    margin-top: 100px;
    margin-bottom: 25px;
    align-items: center;
    border: 1px solid var(--f0);
    padding-top: 25px;
    border-width: 1px 0 0 0;
}
footer div{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
footer div a{
    background-color: rgb(0, 225, 100);
    padding: 5px 10px;
    border: 1px solid rgb(0, 200, 90);
    border-radius: 6px;
    color: white;
}
footer div a:hover{
    background-color: rgb(0, 200, 90);
    border: 1px solid rgb(0, 175, 75);
    text-decoration: none;
}
footer p{
    text-align: center;
}
p.marked{
    color:magenta;
}
.hint{
    color: rgb(100, 100, 100);
    font-style: italic;
    font-size: 13px;
}