/* =======================================================
   CANADIAN WINTER
   STYLE.CSS
   BLOCCO 1
   Reset - Font - Header
======================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Montserrat',sans-serif;

    background:#ffffff;

    color:#222222;

    overflow-x:hidden;

}

/* ==========================================
   CONTAINER
========================================== */

.container{

    width:92%;

    max-width:1400px;

    margin:auto;

}

/* ==========================================
   LINKS
========================================== */

a{

    text-decoration:none;

    color:inherit;

}

/* ==========================================
   IMAGES
========================================== */

img{

    display:block;

    max-width:100%;

}

/* ==========================================
   HEADER
========================================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:90px;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(8px);

    z-index:9999;

}

/* ==========================================
   HEADER CONTAINER
========================================== */

.header .container{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* ==========================================
   LOGO
========================================== */

.logo img{

    height:54px;

    transition:.30s;

}

.logo img:hover{

    transform:scale(1.03);

}

/* ==========================================
   MENU
========================================== */

.navigation ul{

    list-style:none;

    display:flex;

    gap:45px;

}

.navigation a{

    color:white;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:.30s;

}

.navigation a:hover{

    color:#d7d7d7;

}

/* ==========================================
   HEADER ICONS
========================================== */

.header-icons{

    display:flex;

    gap:20px;

}

.header-icons a{

    color:white;

    font-size:22px;

    transition:.30s;

}

.header-icons a:hover{

    transform:translateY(-2px);

}

/* ==========================================
   TITLES
========================================== */

h1{

    font-size:72px;

    line-height:0.95;

    font-weight:800;

}

h2{

    font-size:34px;

    font-weight:700;

}

p{

    line-height:1.7;

}

/* ==========================================
   BUTTON
========================================== */

.hero-button{

    display:inline-block;

    margin-top:40px;

    padding:18px 36px;

    background:white;

    color:black;

    font-weight:700;

    letter-spacing:1px;

    transition:.35s;

}

.hero-button:hover{

    background:#222;

    color:white;

}
/* =======================================================
   HERO SECTION
======================================================= */

.hero{

    position:relative;

    width:100%;

    height:100vh;

    background:url("../images/hero.jpg") center center;

    background-size:cover;

    background-repeat:no-repeat;

    display:flex;

    align-items:center;

    justify-content:flex-start;

}

/* Overlay scuro */

.hero::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.55) 0%,
        rgba(0,0,0,.35) 35%,
        rgba(0,0,0,.15) 60%,
        rgba(0,0,0,.05) 100%
    );

}

/* Contenuto */

.hero-overlay{

    position:relative;

    z-index:2;

    width:100%;

}

.hero-content{

    max-width:700px;

    margin-left:8%;

    color:white;

}

/* Testo piccolo */

.hero-subtitle{

    font-size:15px;

    font-weight:600;

    letter-spacing:5px;

    text-transform:uppercase;

    margin-bottom:25px;

    color:#f2f2f2;

}

/* Titolo principale */

.hero h1{

    font-size:clamp(58px,8vw,96px);

    line-height:.92;

    font-weight:800;

    letter-spacing:-2px;

    text-transform:uppercase;

    margin-bottom:40px;

    text-shadow:0 5px 25px rgba(0,0,0,.45);

}

/* Pulsante */

.hero-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 42px;

    background:white;

    color:#111;

    border-radius:4px;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:.35s;

}

.hero-button:hover{

    background:#222;

    color:white;

    transform:translateY(-2px);

}

/* Animazione */

.hero-content{

    animation:fadeHero 1.2s ease;

}

@keyframes fadeHero{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* =======================================================
   SHOP SECTION
======================================================= */

.shop-section{

    background:#ffffff;

    padding:90px 0 120px;

}

/* ==========================================
   PRODUCT GRID
========================================== */

.products-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

    margin-top:20px;

}

/* ==========================================
   PRODUCT CARD
========================================== */

.product-card{

    overflow:hidden;

    background:#ffffff;

    transition:.35s ease;

}

.product-card:hover{

    transform:translateY(-8px);

}

/* ==========================================
   PRODUCT IMAGE
========================================== */

.product-card img{

    width:100%;

    aspect-ratio:1/1;

    object-fit:cover;

    border-radius:8px;

    transition:.45s;

}

.product-card:hover img{

    transform:scale(1.04);

}

/* ==========================================
   PRODUCT INFO
========================================== */

.product-info{

    text-align:center;

    padding:22px 10px;

}

.product-info h3{

    font-size:22px;

    font-weight:700;

    letter-spacing:2px;

    color:#222;

    margin-bottom:10px;

}

.product-info span{

    display:inline-block;

    font-size:14px;

    color:#666;

    letter-spacing:1px;

    transition:.30s;

}

.product-card:hover span{

    color:#000;

    letter-spacing:2px;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1200px){

.products-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.products-grid{

grid-template-columns:1fr;

gap:50px;

}

.product-info h3{

font-size:20px;

}

}
/* =======================================================
   CANADIAN WINTER
   BLOCCO CSS 4
   FOOTER - EFFECTS - RESPONSIVE
=======================================================*/


/*==========================
        BRAND SECTION
==========================*/

.brand-section{

    padding:120px 0;

    background:#f7f7f7;

}

.brand-container{

    width:92%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.brand-image img{

    width:100%;

    border-radius:10px;

}

.brand-text h2{

    font-size:46px;

    font-weight:700;

    margin-bottom:20px;

    letter-spacing:2px;

}

.brand-subtitle{

    font-size:22px;

    color:#666;

    margin-bottom:35px;

}

.brand-text p{

    font-size:17px;

    line-height:1.8;

    margin-bottom:35px;

}

.brand-button{

    display:inline-block;

    padding:18px 42px;

    background:#111;

    color:#fff;

    letter-spacing:2px;

    font-weight:600;

    transition:.30s;

}

.brand-button:hover{

    background:#333;

}



/*==========================
          FOOTER
==========================*/

.footer{

    background:#111;

    color:white;

    padding:70px 0 30px;

}

.footer-container{

    width:92%;

    max-width:1400px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:50px;

    flex-wrap:wrap;

}

.footer-logo img{

    width:180px;

}

.footer-menu{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-menu a{

    color:#ddd;

    transition:.30s;

}

.footer-menu a:hover{

    color:white;

}

.footer-social{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-social a{

    color:#ddd;

    transition:.30s;

}

.footer-social a:hover{

    color:white;

}

.footer-copy{

    text-align:center;

    margin-top:60px;

    color:#888;

    font-size:14px;

}



/*==========================
     GLOBAL ANIMATIONS
==========================*/

img{

    transition:.40s;

}

img:hover{

    transform:scale(1.02);

}

a{

    transition:.30s;

}



/*==========================
      MOBILE
==========================*/

@media(max-width:1100px){

.brand-container{

grid-template-columns:1fr;

gap:50px;

}

.brand-text{

text-align:center;

}

}



@media(max-width:900px){

.header{

height:80px;

}

.header .container{

height:80px;

}

.navigation{

display:none;

}

.header-icons{

gap:15px;

}

.hero h1{

font-size:56px;

}

.hero-content{

margin-left:6%;

}

}



@media(max-width:768px){

.hero{

height:85vh;

}

.hero-content{

max-width:90%;

}

.hero h1{

font-size:46px;

}

.hero-subtitle{

font-size:13px;

letter-spacing:3px;

}

.hero-button{

padding:15px 28px;

}

.footer-container{

flex-direction:column;

text-align:center;

align-items:center;

}

}



@media(max-width:480px){

.hero{

height:80vh;

}

.hero h1{

font-size:36px;

line-height:1;

}

.hero-button{

width:100%;

text-align:center;

}

.brand-text h2{

font-size:34px;

}

.brand-subtitle{

font-size:18px;

}

}