/*
Theme Name:  ecwpa
Version:     1.0
*/

@import url("css/header.css");
@import url("css/footer.css");
@import url("css/landing.css");
@import url("css/pagination.css");
@import url("css/single-musica.css");

:root {
    
}


html {
    --trans-speed: 350ms;
    --trans-speed-fast: 200ms;
    --trans-speed-slow: 550ms;

    --color-green-light: #91c480;
    --color-green-light-2: rgb(193, 248, 193);

    --color-green-dark: #1da376;
    --color-green-dark-2: #2b8634;
    --color-green-dark-3: #12641a;

    --color-cream: lightyellow;
    --color-cream-dark: #f5ffa6f0;

    margin: 0 !important;
}


::-webkit-scrollbar {
    -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
    width: 12px;
}

::-webkit-scrollbar:horizontal {
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-cream-dark);
    /* border-radius: 10px; */
    border: 2px solid var(--color-green-light);
}

::-webkit-scrollbar-track {
    border-radius: 10px;  
    background-color: var(--color-green-light); 
}

#wpadminbar {
    overflow: hidden !important;
}
header {
    padding-top: var(--wp-admin--admin-bar--height) !important;
}
body:not(.admin-bar) header.mini {
    padding-top: 0 !important;
}
@media screen and (max-width: 768px) {
    body.admin-bar header.mini {
        padding-top: 0 !important;
    }
}


body {
    background-color: var(--color-green-light);
    /* contrasting-color: #6E3CC3 */
    /* contrasting-color2: #C36E3C */
    min-width: 320px;

    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    margin: 0;

    position: relative;

}

a {
    color: rgb(50, 50, 50);

    &:hover {
        color: rgb(50, 50, 50);
    }
}
.container {
    max-width: 93%;
    margin: 50px auto;

    &.center {
        text-align: center;
    }

    &.no-margin {
        margin: 0 auto;
    }
}

.content-block {
    background-color: lightgray;
    border-radius: 12px;
    padding: 16px;
    text-align: left;
    font-weight: 300;

    font-size: 20px;

    &.with-shadow {
        box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.05);
        transition-duration: var(--trans-speed-fast);
    }

    &.center {
        text-align: center;
    }

    strong {
        font-weight: 800;
    }

    .content-title {
        text-align: left;
        margin-top: 0;
        margin-bottom: 7px;
        font-size: 24px;
        font-weight: 300;
    }

    ul,
    ol {
        text-align: left;
        padding-inline-start: 32px;

        li {
            text-align: left;
            padding: 5px 0 5px 10px;
            font-size: 18px;
        }
    }
}

/* ANIMATIONS */
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media screen and (min-width: 768px) {
    .container {
        max-width: 85%;
    }
    .content-block {
        padding: 36px 24px;

        .content-title { 
            font-size: 28px; 

            ol {
                li {
                    font-size: 20px;
                }
            }
        }
    }
}

@media screen and (min-width: 1024px) {
    .container {
        max-width: 95%;
    }
    ul,
    ol {
        padding-inline-start: 38px;

        /* li {
            text-align: left;
            padding: 5px 0 5px 10px;
        } */
    }
}

@media screen and (min-width: 1500px) {
    .container {
        max-width: 1440px;

        &.small {
            max-width: 1300px;
        }
    }
}

/* MOBILE ONLY */
@media screen and (min-width: 1024px) {
    .mobile-only {
        display: none !important;
    }
}

/* DESKTOP ONLY */
@media screen and (max-width: 1023px) {
    .desktop-only {
        display: none !important;
    }
}
