:root {
    --darker-bg: #121317;
    --smooth-darker-bg: #1b1f23;
    --scroll-bar-hover: #303030;
    --light-text: white;
    --span-color: gold;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--smooth-darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--scroll-bar-hover);
}

/*Configurações gerais*/
body {
    background-color: var(--smooth-darker-bg) !important;
    color: var(--light-text) !important;
}

.nav-link:hover {
    background-color: var(--smooth-darker-bg);
}

h1 {
    text-shadow: var(--light-text) 1px 1px 100px;
    font-weight: 600 !important;
}

.span {
    color: var(--span-color);
}

/* config form*/
form {
    width: 50%;
}

/* Header principal*/
@keyframes smoth-move-img {
    from {
        margin-top: -4rem;
        opacity: 0;
    }
    to {
        margin-top: 0;
        opacity: 1;
    }
}

.mucambo-img {
    animation: smoth-move-img 1s ease-in-out;
}

.bg-img {
    background-image: url("../imgs/bg-body.webp");
    filter: blur();
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/*Centralizador da imagem principal*/
.center-header {
    display: flex;
    height: 100dvh !important;
    justify-content: center;
    align-items: center;
}

/* navgation */
.bg-op {
    background-color: var(--darker-bg);
}

/*Imagem galeria*/
.item-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-center h1 {
    color: var(--darker-bg);
}

@keyframes smooth_view {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

.img-bg {
    width: 100%;
    height: 100dvh !important;
    position: relative;
    filter: grayscale(100%);
    background-image: url("../group-photo/bg-principal.webp");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    animation: smooth_view linear;
    animation-timeline: view();
    animation-range: entry 0;
}

.img-bg {
    background-image: url("../group-photo/photo03.webp") !important;
}

@keyframes appear {
    from {
        opacity: 0;
        scale: 0.5;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}

.img-edits-galery img {
    cursor: pointer;
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
    margin-top: 10px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
}

article {
    column-count: 3;
    column-gap: 10px;
}

label {
    padding: 0.3em;
}

/* Media para centralizar o texto da pagina*/
@media (max-width: 767.98px) {
    .center {
        text-align: center;
    }
    form {
        width: auto;
        margin: 0 10px;
    }
}

.messages {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert-success {
    color: #75b798 !important;
    background-color: #051b11 !important;
    border: 1px solid #0f5132 !important;
}

.alert-danger {
    color: #ea868f !important;
    background-color: #2c0b0e !important;
    border: 1px solid #842029 !important;
}
