/*
Theme Name: Cancao
Version: 2.0
*/

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    background: #000;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

/* LIMPA WP */
header, footer, nav, #wpadminbar {
    display: none !important;
}

/* LAYOUT */
.cv-main {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* LOGO */
.cv-logo {
    height: 85vh;
    max-width: 95vw;

    opacity: 0;
    transform: scale(1.1);
    animation: logoIntro 2s ease-out forwards;
}

/* TEXTO */
.cv-texto {
    text-align: center;
    margin-top: 15px;
}

.cv-aguarde {
    font-size: 4rem;
    font-weight: 900;
    color: #FFD700;

    opacity: 0;
    transform: translateY(20px);
    animation: textUp 1s ease-out forwards;
    animation-delay: 1.3s;
}

.cv-frase {
    font-size: 1.6rem;
    color: #fff;

    opacity: 0;
    transform: translateY(20px);
    animation: textUp 1s ease-out forwards;
    animation-delay: 1.8s;
}

/* PLAYER */
.cv-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

#playBtn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
}

/* ANIMAÇÕES */
@keyframes logoIntro {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes textUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .cv-logo { height: 70vh; }
    .cv-aguarde { font-size: 2.2rem; }
    .cv-frase { font-size: 1.2rem; }
}