/* Main Theme cleanings */

.page-content {
    padding:0px !important;
}

/* Variabili CSS per colori e font (assicurati che siano presenti nel tuo CSS) */
:root {
    --primary-blue: #2a3744; /* Blue scuro principale */
    --primary-orange: #ea8f45; /* Arancione */
    --dark-grey: #333;
    --light-grey: #f5f5f5;
    --text-color: #333;
    --white: #fff;
    --black: #000;
    --font-heading: 'Open Sans', serif;
    --font-body: 'Open Sans', sans-serif;
}
/* Reset CSS di base (assicurati che siano presenti nel tuo CSS, potresti già averli) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    /* Rimuovi background-color qui se il tuo sito ha già un background globale */
}

a {
    text-decoration: none;
    color: inherit;
}

/* Stili Generali per Sezioni e Contenitori (mantieni o adatta) */
.container { /* Se usi un container, assicurati che sia definito */
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    margin-bottom: 1rem;
}

h1 {
    font-size: 70px;
    line-height: 100px;
}

h2 {
    font-size:34px;
    line-height:44px;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--white); /* Per sezioni a sfondo scuro */
}

h3 {
    font-size: 22px;
}

p {
    font-weight:100;
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--white);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;

}

.btn-primary:hover, .btn-primary:visited {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 12px 25px;
    border: 2px solid var(--primary-orange);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.btn-secondary:hover,.btn-secondary:visited {
    background-color: var(--primary-orange);
    color: var(--white)
}

/* Header / Hero Section */
.hero-section {
    background: url('top.jpg') no-repeat top center/cover;
    color: var(--white);
    text-align: center;
    padding: 40px 0px 400px 0px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.15);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}



/* Nuovo stile per il titolo "iIQI Life" */
.site-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--black);
    text-align: left;
    margin:50px;
    width: 100%; /* Occupa tutta la larghezza disponibile */
}

@media(min-width:1500px) {
    .site-title {
        margin-left:15%;
    }
}

.site-title h1 {
    font-size: 120px;
    line-height:110px;
    font-weight:900;
    color:#000;
}

.site-title h2 {
    font-size: 120px;
    line-height:110px;
    font-weight:400;
    color:#000;
    text-align:left;
}

.site-title h3 {
    margin-left:10px;
    font-size: 30px;
    line-height:30px;
    font-weight:300;
    color:#ea8f45;
}


.hero-text-container {
    padding-top: 0; /* Rimuovi il padding-top dato che il titolo è sopra */
}

.hero-text-container h1 {
    font-family:basic-sans, sans-serif;
    color: var(--black);
    font-size: 44px;
    line-height:44px;
    font-weight:300;
}

.hero-text-container p {
    font-family:basic-sans, sans-serif;
    font-weight:600;
    color: var(--black);
    font-size: 26px;
    line-height:40px;
}


/* Description Section */
.description-section {
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}


.description-section p {
    color: var(--white);
    font-size:24px;
    line-height:38px;
    margin-bottom: 2rem;
}

.description-section b {
    color: var(--primary-orange);
    font-weight:600;
}


/* Contact Section / Footer (resta uguale) */
.contact-section {
    background-color: var(--light-grey);
    color: var(--black);
    text-align: center;
    padding: 60px 20px;
}

.contact-section h1 {
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-section p {
    color: var(--black);
    font-size:24px;
    line-height:38px;
    margin-bottom: 2rem;
}


/* Media Queries per la Responsiveness (adatta se necessario) */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .site-title {
        font-size: 80px;
        line-height: 80px;
        padding-left: 15px;
    }
    .hero-text-container h1 {
        font-size: 34px;
    }

    
    h1 {
        font-size:44px;
        line-height:68px;
    }

    h2 {
        font-size:28px;
        line-height:40px;
    }

   
}

/* Mobile (fino a 767px) */
@media (max-width: 767px) {
    .hero-section {
        padding: 20px 0 200px 0;
    }

    .site-title {
        font-size: 48px;
        line-height:48px;
    }
    
    .site-title h1, .site-title h2{
        font-size:60px;
        line-height:60px;
    }

    
    .buttons a {
        margin:8px;
    }

    .header-secondary .desc {
        top:-50px;
    }

    h1 {
        font-size:38px;
        line-height:45px;
    }

    h2 {
        font-size: 24px;
    }


    .contact-section {
        padding: 40px 15px;
    }
}

/* Per schermi molto piccoli */
@media (max-width: 480px) {
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (min-width: 1500px) {
    .container {
        width: 1470px;
    }
}
