/* Stili generali */

:root{
    --border: solid 2px red;
}

/*
.BUILD{
border: var(--border);
}
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

body {
    color: white;
    overflow-x: hidden;
}

/* Video di sfondo */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 45%);
}

/* Header */
header {
    padding: 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 175px;
    height: auto;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}


/* Animazioni */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .main-message h1 {
        font-size: 2rem;
    }
    .main-message p {
        font-size: 1rem;
    }
    .products {
        flex-direction: column;
        align-items: center;
    }
    .product-card {
        max-width: 100%;
    }
}




main.hero.BUILD {
    padding: 2%;
}


.wrapper-main {
    height: 100vh ! IMPORTANT;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 1%;
}

footer.BUILD {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.destra-footer.BUILD {
    display: flex
;
    width: 50%;
}

img.logo {
    border-radius: 16px;
    border: solid 2px #a9a9a942;
}

button.link-button {
    background: #A7CD5A;
    padding: 5% 5%;
    width: 200px;
    border-radius: 8px;
    color: #282828;
    font-weight: 600;
    font-size: 16px;
}

.text-footer {
    display: flex
;
    flex-direction: column;
    gap: 13px;
    justify-content: space-between;
}

h1.main-title {
    text-transform: capitalize;
    font-size: 60px;
    width: 50%;
    line-height: 53px;
}

p.main-description {
    width: 30%;
    padding-top: 2%;
    text-transform: capitalize;
}

h1.footer-title {
    font-weight: 400;
}

h2.footer-subtitle {
    font-weight: 500;
}
.destra-footer.BUILD {
    gap: 30px;
}

p.footer-description {
    font-weight: 200;
}

ul.lista-intera {
    list-style: none;
}
li.voci {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
}


a:hover{
    text-decoration: none;  
}
.sinistra-footer.BUILD {
    height: 100%;
    display: flex
;
    flex-direction: column;
    align-items: flex-end;
    justify-content: end;
}



h1.footer-title {
    font-size: 24px;
}

h2.footer-subtitle {
    font-size: 16px;
}

p.footer-description {
    font-size: 14px;
}

footer.BUILD {
    padding: 0% 2%;
    padding-bottom: 3%;
}

li.voci:hover {
    color: #a7cd5a;
    text-shadow: 0px 0px 3px #cdef8ac2;
   
}

li.voci {
 transition: all 0.2s ease-out;
}


.text-footer {
    background: #acacac47;
    padding: 2%;
    border-radius: 20px;
    border: solid 2px #7474743b;
    backdrop-filter: blur(4px);
    transition: all 0.2s ease-out;
}

.text-footer:hover {
border: #A7CD5A solid 2px;
box-shadow: 0px 0px 7px #a7cd5a97;
}

button.link-button {
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

button.link-button {
    cursor: pointer;
    transition: all 0.2s ease-out  ;
}

button.link-button:hover {
    background: #a7cd5a;
    box-shadow: 0px 0px 7px #a7cd5a97;
    border: #A7CD5A solid 2px;
}


