/*
Theme Name: SC THEME
Theme URI: https://wordpress.org/themes/twentytwentytwo/
Text Domain: sc
*/



 @import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@400;700&display=swap');

body {
    font-family: 'SF Pro Display', sans-serif; /* Font stile Apple */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #edddd4; /* Usa il tuo sfondo */
    position: relative;
    text-align: center;
}

.title {
    font-size: 4rem;
    font-weight: 700;
    color: #197278; /* Primary color */
    margin: 0;
}

.subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: #c44536;
    opacity: 0;
    transform: translateY(50px);
    position: absolute;
    top: 60%; /* Partenza */
    left: 50%;
    transform: translateX(-50%);
}

.hero-image {
    position: absolute;
    top: 80%;
    left: 60%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    border-radius: 25px; /* Bordi arrotondati come le foto di Apple */
    object-fit: cover;
    opacity: 0;
}

/* Reset della posizione di partenza dell'immagine */
.hero-image.initial {
    top: 100%;
    opacity: 0;
}


 html, body{
	margin:0;
	padding:0;
	box-sizing: border-box;
 }

