/*==================================================
ESSENZIALE
STYLE.CSS
==================================================*/


/*==================================================
01 • RESET
==================================================*/

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

html{
    scroll-behavior:smooth;
}

body{

    background:#F8F5EF;
    color:#3F3934;

    font-family:"Inter",sans-serif;

    line-height:1.7;

    -webkit-font-smoothing:antialiased;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}


/*==================================================
02 • COLORI
==================================================*/

:root{

    --background:#F8F5EF;

    --white:#FFFFFF;

    --text:#3F3934;

    --text-light:#6E6A67;

    --green:#A5B19C;

    --green-dark:#8F9C87;

    --border:#E8E2D9;

}


/*==================================================
03 • LAYOUT
==================================================*/

.container{

    width:min(1380px,94%);

    margin:auto;

}

section{

    padding:130px 0;

}


/*==================================================
04 • TIPOGRAFIA
==================================================*/

h1,
h2,
h3{

    font-family:"Cormorant Garamond",serif;

    font-weight:500;

    color:var(--text);

}

h1{

    font-size:92px;

    line-height:1.04;

    letter-spacing:-2px;

    margin-bottom:42px;

}

h2{

    font-size:68px;

    line-height:1.08;

    margin-bottom:28px;

}

h3{

    font-size:34px;

    margin-bottom:16px;

}

p{

    color:var(--text-light);

    font-size:19px;

    line-height:1.9;

}

.eyebrow{

    display:inline-block;

    margin-bottom:24px;

    letter-spacing:6px;

    text-transform:uppercase;

    font-size:12px;

    color:var(--green);

}

.section-text{

    max-width:620px;

}


/*==================================================
05 • HEADER
==================================================*/

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:1000;

    background:rgba(248,245,239,.92);

    backdrop-filter:blur(20px);

    

}

.header .container{

    padding:40px 0 24px;

}


/*==================================================
LOGO
==================================================*/

.logo{

    display:block;

    font-family:"Cormorant Garamond",serif;

    font-size:76px;

    font-weight:500;

    letter-spacing:4px;

    color:#3F3934;

    text-decoration:none;

    margin-bottom:26px;

}


/*==================================================
SECONDA RIGA
==================================================*/

.nav-row{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-top:10px;

    padding-bottom:18px;

    border-bottom:1px solid rgba(0,0,0,.06);

}


/*==================================================
MENU
==================================================*/

.menu{

    display:flex;

    align-items:center;

    list-style:none;

    gap:58px;

    margin:0;

    padding:0;

}

.menu a{

    position:relative;

    font-size:17px;

    font-weight:400;

    color:#5B5B5B;

    transition:.3s;

}

.menu a:hover{

    color:var(--green);

}

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:1px;

    background:var(--green);

    transition:.3s;

}

.menu a:hover::after{

    width:100%;

}


/*==================================================
PULSANTE HEADER
==================================================*/

.header-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 32px;

    border-radius:999px;

    background:var(--green);

    color:#fff;

    font-size:15px;

    font-weight:500;

    text-decoration:none;

    transition:.35s;

    box-shadow:0 12px 28px rgba(165,177,156,.22);

}

.header-button:hover{

    background:var(--green-dark);

    transform:translateY(-2px);

}

/*==================================================
CTA
==================================================*/

.header-button{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:15px 28px;

    border-radius:999px;

    background:var(--green);

    color:white;

    font-size:15px;

    font-weight:500;

    white-space:nowrap;

    transition:.35s;

    box-shadow:0 12px 30px rgba(165,177,156,.25);

}

.header-button:hover{

    background:var(--green-dark);

    transform:translateY(-3px);

}

/*==================================================
07 • BOTTONI
==================================================*/

.button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 38px;

    border-radius:999px;

    background:var(--green);

    color:white;

    font-weight:500;

    transition:.35s;

    box-shadow:0 10px 30px rgba(165,177,156,.25);

}

.button:hover{

    transform:translateY(-3px);

    background:var(--green-dark);

}

.button-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 38px;

    border-radius:999px;

    border:1px solid var(--border);

    transition:.35s;

}

.button-outline:hover{

    background:white;

}
/*==================================================
08 • HERO
==================================================*/

.hero{

    padding-top:340px;

    padding-bottom:140px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    gap:90px;

    align-items:center;

}

.hero-content{

    max-width:600px;

}

.hero h1{

    max-width:650px;

}

.hero-text{

    max-width:560px;

    margin-bottom:55px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:55px;

}

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

    height:700px;

    object-fit:contain;

    object-position:center;

    border-radius:34px;

    background:#F8F5EF;

    box-shadow:0 35px 90px rgba(0,0,0,.08);

}

.hero-image img:hover{

    transform:scale(1.015);

}

/*==================================================
09 • HERO DETAILS
==================================================*/

.hero-values{

    display:flex;

    flex-wrap:wrap;

    gap:26px;

    margin-top:20px;

}

.hero-value{

    display:flex;

    align-items:center;

    gap:10px;

    color:var(--text-light);

    font-size:15px;

}

.hero-value span{

    color:var(--green);

    font-size:18px;

}

/*==================================================
10 • SECTION TITLES
==================================================*/

.section-title{

    max-width:720px;

}

.section-text{

    margin-top:8px;

    margin-bottom:10px;

}

/*==================================================
11 • SOFT ANIMATIONS
==================================================*/

.button,
.button-outline,
.product-card,
.method-card{

    transition:.35s ease;

}

.button:hover{

    transform:translateY(-4px);

}

.button-outline:hover{

    transform:translateY(-4px);

}

.product-card:hover{

    transform:translateY(-10px);

}

.method-card:hover{

    transform:translateY(-8px);

}
/*==================================================
12 • IL METODO
==================================================*/

.method{

    background:var(--white);

}

.method-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:36px;

    margin-top:70px;

}

.method-card{

    background:#FCFBF8;

    border:1px solid var(--border);

    border-radius:28px;

    padding:42px;

    box-shadow:0 15px 35px rgba(0,0,0,.04);

}

.method-number{

    width:56px;

    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--green);

    color:white;

    font-size:15px;

    font-weight:600;

    margin-bottom:28px;

}

.method-card h3{

    margin-bottom:18px;

}

.method-card p{

    font-size:18px;

}


/*==================================================
13 • COLLEZIONE
==================================================*/

.collection{

    background:var(--background);

}

/*==================================================
COLLEZIONE
==================================================*/

.collection{

    background:#F8F5EF;

}

.launch-grid{

    margin-top:80px;

    display:grid;

    grid-template-columns:520px 1fr;

    gap:90px;

    align-items:center;

}

.launch-image img{

    width:100%;

    border-radius:28px;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.launch-content{

    max-width:560px;

}

.launch-content h3{

    font-family:"Cormorant Garamond",serif;

    font-size:58px;

    font-weight:500;

    margin:18px 0 24px;

    color:#3F3934;

}

.launch-content p{

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;

}

.volume{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:#E9EEE3;

    color:#7E8E74;

    font-size:12px;

    font-weight:600;

    letter-spacing:2px;

}
/*==================================================
PROSSIMAMENTE
==================================================*/

.coming-soon{

    margin-top:120px;

    padding-top:70px;

    border-top:1px solid #E5DED3;

    text-align:center;

}

.coming-soon h3{

    font-family:"Cormorant Garamond",serif;

    font-size:46px;

    margin-bottom:45px;

}

.coming-soon ul{

    list-style:none;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.coming-soon li{

    padding:28px;

    background:white;

    border-radius:22px;

    border:1px solid #ECE6DC;

    color:#666;

    transition:.35s;

}

.coming-soon li:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}
.launch-image{

    overflow:hidden;

    border-radius:28px;

}

.launch-image img{

    transition:.5s;

}

.launch-image:hover img{

    transform:scale(1.03);

}

/*==================================================
14 • CARD
==================================================*/

.product-card{

    background:white;

    border-radius:30px;

    overflow:hidden;

    border:1px solid var(--border);

    box-shadow:0 18px 45px rgba(0,0,0,.05);

}

.product-card img{

    aspect-ratio:3/4;

    object-fit:cover;

}

.product-content{

    padding:32px;

}

.volume{

    display:inline-block;

    margin-bottom:16px;

    letter-spacing:2px;

    font-size:12px;

    color:var(--green);

    font-weight:600;

}

.product-card h3{

    margin-bottom:16px;

}

.product-card p{

    font-size:17px;

    margin-bottom:28px;

}

.product-card a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:var(--green);

    font-weight:600;

    transition:.3s;

}

.product-card a:hover{

    transform:translateX(6px);

}


/*==================================================
15 • IMMAGINI PROVVISORIE
==================================================*/

.product-card img{

    background:#EFEAE2;

}
/*==================================================
16 • CHI SIAMO
==================================================*/

.about{

    background:var(--white);

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    height:700px;

    object-fit:contain;

    background: #F8F5EF;

    object-position:center;

    border-radius:34px;

    box-shadow:0 35px 80px rgba(0,0,0,.08);

}

.about-content{

    max-width:560px;

}

.about-content .section-text{

    margin-bottom:28px;

}

.about .button{

    margin-top:20px;

}


/*==================================================
17 • NEWSLETTER
==================================================*/

.newsletter{

    text-align:center;

    background:#FDFBF8;

}

.newsletter-content{

    max-width:760px;

    margin:auto;

}

.newsletter-content .section-title{

    margin-inline:auto;

}

.newsletter-content .section-text{

    margin-inline:auto;

    margin-bottom:50px;

}

.newsletter-form{

    display:flex;

    align-items:center;

    max-width:650px;

    margin:0 auto;

    padding:8px;

    border-radius:999px;

    background:white;

    border:1px solid var(--border);

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.newsletter-form input{

    flex:1;

    border:none;

    outline:none;

    background:transparent;

    padding:18px 24px;

    font-size:16px;

    color:var(--text);

}

.newsletter-form input::placeholder{

    color:#999;

}

.newsletter-form button{

    border:none;

    cursor:pointer;

    background:var(--green);

    color:white;

    padding:18px 34px;

    border-radius:999px;

    font-size:15px;

    font-weight:500;

    transition:.35s;

}

.newsletter-form button:hover{

    background:var(--green-dark);

}


/*==================================================
18 • FOOTER
==================================================*/

.footer{

    background:var(--background);

    border-top:1px solid var(--border);

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:80px;

}

.footer h3{

    font-size:42px;

    letter-spacing:4px;

    margin-bottom:20px;

}

.footer h4{

    font-size:18px;

    margin-bottom:22px;

    color:var(--text);

}

.footer li{

    margin-bottom:14px;

}

.footer a{

    color:var(--text-light);

    transition:.3s;

}

.footer a:hover{

    color:var(--green);

}

.copyright{

    margin-top:70px;

    padding-top:28px;

    border-top:1px solid var(--border);

    text-align:center;

    color:#888;

    font-size:14px;

}


/*==================================================
19 • RESPONSIVE
==================================================*/

@media(max-width:1024px){

    h1{

        font-size:68px;

    }

    h2{

        font-size:54px;

    }

    .hero-grid,
    .about-grid{

        grid-template-columns:1fr;

        gap:60px;

    }

    .collection-grid,
    .method-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .hero-image img,
    .about-image img{

        height:600px;

    }

}

@media(max-width:768px){

    section{

        padding:90px 0;

    }

    h1{

        font-size:50px;

    }

    h2{

        font-size:42px;

    }

    .navbar{

        flex-direction:column;

        gap:20px;

    }

    .menu{

        flex-wrap:wrap;

        justify-content:center;

        gap:18px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:flex-start;

    }

    .hero-values{

        flex-direction:column;

        gap:14px;

    }

    .collection-grid,
    .method-grid{

        grid-template-columns:1fr;

    }

    .newsletter-form{

        flex-direction:column;

        border-radius:30px;

    }

    .newsletter-form input{

        width:100%;

    }

    .newsletter-form button{

        width:100%;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:40px;

    }
    .launch-grid{

    grid-template-columns:1fr;

    gap:50px;

}

.coming-soon ul{

    grid-template-columns:1fr;

}

}
/*=========================================
PAGINA QUADERNI
=========================================*/

.ebook-hero{

    padding:220px 0 140px;

}

.ebook-grid{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:90px;

    align-items:center;

}

.ebook-content h1{

    font-size:84px;

    line-height:.92;

    margin:20px 0 35px;

}

.eyebrow{

    letter-spacing:5px;

    text-transform:uppercase;

    color:#8f8f8f;

    font-size:13px;

}

.ebook-subtitle{

    font-size:22px;

    line-height:1.8;

    max-width:560px;

    color:#666;

    margin-bottom:45px;

}

.ebook-cover img{

    width:100%;

    border-radius:28px;

    box-shadow:0 40px 90px rgba(0,0,0,.10);

}
.features{

padding:120px 0;

}

.section-title{

max-width:700px;

margin:auto;

text-align:center;

margin-bottom:80px;

}

.section-title h2{

font-size:54px;

margin-bottom:20px;

}

.section-title p{

font-size:22px;

line-height:1.8;

color:#666;

}

.features-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.feature{

background:white;

padding:45px;

border-radius:26px;

box-shadow:0 20px 60px rgba(0,0,0,.05);

}

.feature h3{

margin-bottom:20px;

font-size:28px;

}

.feature p{

color:#666;

line-height:1.8;

}
.preview{

padding:120px 0;

background:#faf8f4;

}

.preview-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:70px;

}

.preview-grid img{

width:100%;

border-radius:20px;

box-shadow:0 25px 60px rgba(0,0,0,.08);

transition:.35s;

}

.preview-grid img:hover{

transform:translateY(-8px);

}
/* ===== PRODUCT DETAILS ===== */

.product-details{
padding:100px 0;
background:#f7f6f2;
}

.product-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:80px;
align-items:center;
}

.product-list{
list-style:none;
padding:0;
margin:0;
}

.product-list li{
margin-bottom:18px;
font-size:18px;
line-height:1.8;
color:#4c5a4c;
}

.price-title{
text-transform:uppercase;
letter-spacing:2px;
font-size:13px;
color:#7a8877;
margin-bottom:12px;
}

.price{
font-family:'Cormorant Garamond',serif;
font-size:60px;
font-weight:500;
margin-bottom:12px;
color:#2e3a2d;
}

.download{
line-height:1.8;
margin-bottom:35px;
color:#5f5f5f;
}
/* ===========================================
   PAGINA QUADERNI
=========================================== */

.ebook-hero{
    padding:120px 0 80px;
}

.ebook-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.ebook-cover img{
    width:100%;
    border-radius:20px;
    box-shadow:0 30px 70px rgba(0,0,0,.08);
}

.ebook-subtitle{
    font-size:1.2rem;
    line-height:1.8;
    color:#666;
    margin:25px 0;
}

.ebook-price{
    font-size:2rem;
    font-weight:600;
    margin:20px 0 35px;
    color:#2f4f3e;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.button.secondary{
    background:white;
    color:#2f4f3e;
    border:1px solid #cfd8d3;
}

.button.secondary:hover{
    background:#f7f7f7;
}
/* ===========================================
   BLOCCO ACQUISTO
=========================================== */

.product-details{
    padding:100px 0;
    background:#faf8f5;
}

.product-box{
    max-width:900px;
    margin:0 auto;
    background:white;
    padding:60px;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.06);
    text-align:center;
}

.product-box h2{
    font-size:2.6rem;
    margin-bottom:20px;
}

.product-box p{
    max-width:700px;
    margin:0 auto;
    color:#666;
    line-height:1.9;
}

.product-list{
    list-style:none;
    padding:40px 0;
    margin:0;
}

.product-list li{
    padding:10px 0;
    font-size:1.1rem;
}

.product-price{
    font-size:3rem;
    color:#2f4f3e;
    margin:25px 0;
    font-weight:600;
}
.ebook-hero{
    padding:70px 0;
}
.logo{
    font-size:48px;
}
/* ===========================================
   COPERTINA QUADERNO
=========================================== */

.book-cover{
    width:100%;
    max-width:430px;
    display:block;
    margin:0 auto;
    border-radius:18px;
    box-shadow:0 35px 70px rgba(0,0,0,.15);
    transition:.35s ease;
}

.book-cover:hover{
    transform:translateY(-8px);
    box-shadow:0 45px 90px rgba(0,0,0,.18);
}
/* ===== FOOTER ===== */

.footer{
    padding:70px 0;
    background:#f6f4ef;
    text-align:center;
}

.footer-logo{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    letter-spacing:4px;
    margin-bottom:15px;
}

.footer-text{
    max-width:520px;
    margin:0 auto 20px;
    color:#666;
    line-height:1.8;
}

.footer-sign{
    font-style:italic;
    margin-bottom:8px;
}

.footer-authors{
    font-weight:600;
}
/* Effetto anteprime */

.preview-grid img {
    border-radius: 12px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    cursor: pointer;
}

.preview-grid img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}