/*
Theme Name: VINCE 2026
Theme URI: https://shapethesuperfuture.it
Author: VINCE
Description: Tema custom per il portfolio del designer VINCE.
Version: 1.0
Text Domain: VINCE-2026
*/


:root {
            --bg-color: #EFEFEF;
            --text-color: #111111;
            --card-radius: 40px;
            --primary-font: -apple-system, BlinkMacSystemFont, "Plus Jakarta Sans", Roboto, Helvetica, Arial, sans-serif;
            --menu-bg-color: rgba(239, 239, 239, 0.98);
            --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
        }

        body, html {
            margin: 0;
            padding: 0;
            background-color: var(--bg-color);
            font-family: var(--primary-font);
            color: var(--text-color);
            /*overflow-x: hidden;*/
overflow-x: clip; 
        }

        body.menu-open {
            overflow: hidden;
        }

        /* === HEADER & BURGER MENU === */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 30px 40px;
            box-sizing: border-box;
            z-index: 200;
            display: flex;
            justify-content: space-between;
        }

        .burger-menu {
            width: 30px;
            height: 20px;
            cursor: pointer;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .burger-menu span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--text-color);
            transition: all 0.4s var(--ease-out-expo);
            transform-origin: left center;
        }

        .burger-menu.is-active span:nth-child(1) { transform: rotate(45deg); }
        .burger-menu.is-active span:nth-child(2) { width: 0%; opacity: 0; }
        .burger-menu.is-active span:nth-child(3) { transform: rotate(-45deg); }

        /* === FULLSCREEN MENU OVERLAY === */
        .fullscreen-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--menu-bg-color);
            z-index: 150;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-20px);
            transition: opacity 0.6s var(--ease-out-expo), 
                        visibility 0.6s var(--ease-out-expo), 
                        transform 0.6s var(--ease-out-expo);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .fullscreen-menu.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .fullscreen-menu nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: center;
        }

        .fullscreen-menu nav ul li {
            margin: 25px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
        }

        .fullscreen-menu.is-open nav ul li {
            opacity: 1;
            transform: translateY(0);
        }

        .fullscreen-menu.is-open nav ul li:nth-child(1) { transition-delay: 0.2s; }
        .fullscreen-menu.is-open nav ul li:nth-child(2) { transition-delay: 0.3s; }
        .fullscreen-menu.is-open nav ul li:nth-child(3) { transition-delay: 0.4s; }
        .fullscreen-menu.is-open nav ul li:nth-child(4) { transition-delay: 0.5s; }

        .fullscreen-menu nav a {
            text-decoration: none;
            color: var(--text-color);
            font-size: 3rem;
            font-weight: 600;
            transition: opacity 0.3s ease;
        }

        .fullscreen-menu nav a:hover { opacity: 0.6; }

        /* === STRUTTURA SCROLL CAROSELLO === */
        .scroll-track { height: 300vh; }

        .fixed-viewport {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            z-index: 100;
        }

/*FOOTER*/
footer{position: fixed; bottom: 0; left: 0; width: 100%; z-index: 110;}
footer a{color:#1B1D1A;}



  .footer-bottom{
    width:88%;
    max-width:1500px;
    margin:0 auto 0;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:14px;
  }
  .footer-bottom nav{display:flex;gap:1.4vw;}
  .footer-bottom nav a{opacity:.85;transition:opacity .2s; text-decoration: none;}
  .footer-bottom nav a:hover{opacity:1;text-decoration:none;}

  .giant-text{
    text-align: center;
    margin-top:1.6vw;
    overflow:hidden;
    line-height:1;
  }
  .giant-text span img{width:88%; height:auto; max-width:1500px;}

/* === OVERRIDE FOOTER PAGINA SINGOLA === */
body.single-prodotto footer {
    position: relative; /* Lo toglie dalla posizione fissa */
    bottom: auto;
    margin-top: 100px; /* Aggiungi un po' di spazio tra i progetti correlati e il footer */
}




/*--------SINGOLO PRODOTTO--------*/
.single-prodotto .specs-table{font-size:14px; line-height:21px;}
.single-prodotto .specs-table span{font-weight:200;}
.single-prodotto .specs-table strong{font-weight:600;}

.single-prodotto .centered-text p{font-size:2vw; font-weight:100; line-height:2.2wv; text-align:left;}