/*
Theme Name: GoRetrait
Theme URI: https://www.graphilandia.it/
Description: Il Tema di GoRetrait
Version: 1.0
Author: Graphilandia
Author URI: https://www.graphilandia.it/
*/

@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* RESET */
:root{
    --blue:#2eadd1;
    --purple: #a661a2;
    --green: #9dc439;
    --orange: #f9b119;
    --red: #cb3742;
}

html *{
    font-family: "Prompt", serif !important;
}
/* /RESET */

/* HOME */
#hero-section{
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, 
        var(--purple), 
        var(--blue), 
        var(--green),
        var(--orange),
        var(--red)
    );
    background-size:200% 200%;
    animation: gradientAnimation 10s ease infinite;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.big-section{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    max-width: 100%;
    opacity: 0;
}

.find-more{
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.find-more a{
    font-size: 1.3rem;
    color: white;
    letter-spacing: 3px;
    text-decoration: none;
    opacity: 0;
    font-weight: 300;
}

.pulse{
    animation: pulse 1s infinite;
}

#prima-sezione{
    background: linear-gradient(130deg, 
        var(--purple), 
        var(--blue)
    );
}

#seconda-sezione{
    background: linear-gradient(125deg, 
        var(--orange),
        var(--red)
    );
}

#terza-sezione{
    background: linear-gradient(120deg, 
        var(--blue),
        var(--green)
    );
}

#quarta-sezione{
    background-color: var(--green);
}

#quinta-sezione{
    background-color: var(--blue);
}

#sesta-sezione{
    background-color: var(--purple); 
}

#settima-sezione{
    background-color: var(--orange); 
}

#ottava-sezione{
    background: linear-gradient(125deg, 
        var(--orange),
        var(--red)
    );
}

#nona-sezione{
    background: linear-gradient(120deg, 
        var(--blue),
        var(--purple)
    );
}

#decima-sezione{
    background: linear-gradient(120deg, 
        var(--blue),
        var(--purple)
    );
}

#undicesima-sezione{
    background: linear-gradient(115deg, 
        var(--purple),
        var(--green)
    );
}

#dodicesima-sezione{
    background: linear-gradient(115deg, 
        var(--purple),
        var(--green)
    );
}

#tredicesima-sezione{
    background: linear-gradient(110deg, 
        var(--green),
        var(--red)
    );
}

#quattordicesima-sezione{
    background: linear-gradient(110deg, 
        var(--green),
        var(--red)
    );
}

#quindicesima-sezione{
    background: linear-gradient(110deg, 
        var(--red),
        white
    );
}

#sedicesima-sezione{
    background: linear-gradient(110deg, 
        var(--red),
        white
    );
}

#diciassettesima-sezione{
    background-color: white;
}


#pinner-wrap{
    width: 100%;
    height: 100vh;
    position: relative;
}

.slide{
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide:not(:first-child) {
    opacity: 0;
}

.section-title{
    font-size: 2.5rem;
}

.section-subt{
    font-size: 1.8rem;
    letter-spacing: 4px;
}

.section-text{
    font-size: 1.3rem;
}

.mouse {
    display: block;
	width: 40px;
	height: 70px;
	border: 3px solid white;
	border-radius: 60px;
	position: relative;
}

.mouse::before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 50%;
    opacity: 1;
    animation: wheel 2s infinite;
    -webkit-animation: wheel 2s infinite;
}

@keyframes wheel {
	to {
		opacity: 0;
		top: 60px;
	}
}

@-webkit-keyframes wheel {
	to {
		opacity: 0;
		top: 60px;
	}
}

@media screen and (max-width: 769px) {
    .slide{
        min-height: 100vh;
    }

    .section-text {
        font-size: 1rem;
        margin-bottom: 10px !important;
    }

    #pinner-wrap .find-more{
        display: none;
    }
}
/* /HOME */



/* ANIMATIONS */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0%{
        opacity: 0.3,
    } 50%{
        opacity: 1;
    } 100%{
        opacity: 0.3
    }
}

/* /ANIMATIONS */
