﻿/* == Stili di base - Mobile first ========================================== */

div {
  box-sizing:border-box;
}
a:link { color: inherit; text-decoration: none; border:0;}
a:active {color: inherit;text-decoration: none; border:0;}
a:visited {color: inherit;text-decoration: none; border:0;}
a:hover {color: inherit;text-decoration: underline; border:0;}

.clearaltahome{
clear:both;
max-width:100%;
height:30px;
}


/* Hero section */
#hero {
 width: 100%;
 height: 98vh;
 background-image: url('images/hero-01bassa.jpg');
 background-size: cover;
 background-position: center center;
 position: relative;
 display: flex;
 flex-direction: column;
 justify-content: flex-end;
 align-items: center;
 text-align: center;
 padding-bottom: 50px;
 margin-top:20px;
}

 /* Testo hero */
 #hero .hero-text {
  position: relative;
  z-index: 2;
 }

 /* H1 bianco con shadow chiaro */
 #hero h1 {
  font-size: 3em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  text-shadow: 2px 2px 6px rgba(255,255,255,1.5); /* leggero shadow bianco */
 }

 /* P bianco con contorno nero */
 #hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7), -1px -1px 2px rgba(0,0,0,0.7), 1px -1px 2px rgba(0,0,0,0.7), -1px 1px 2px rgba(0,0,0,0.7);
 }

 /* Pulsante hero */
 #hero .btn-consulenza {
  background-color: #f7941e;
  color: #fff;
  padding: 12px 25px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  border: none;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
 }

  #hero .btn-consulenza:hover {
   background-color: #d9771f;
  }

/* ================== Responsive Mobile ================== */
@media screen and (max-width: 768px) {

 #hero {
  background-image: url('images/Hero-01-9-16.jpg');
  background-size: cover;
  background-position: top center;
  height: 90vh;
  padding-bottom: 30px;
 }

  #hero h1 {
   font-size: 2em;
  }

  #hero p {
   font-size: 1em;
  }

  #hero .btn-consulenza {
   padding: 10px 20px;
   font-size: 1em;
  }
}




/* Sezione Collezioni */
.container00 h2 {
 text-align: center;
 color: #f7941e; /* Arancio brand */
 margin-bottom: 40px;
 font-size: 2.5em;
 font-weight: 600;
}

.div3-01, .div3-02, .div3-03 {
 display: inline-block;
 width: 30%;
 margin: 0 1.5%;
 text-align: center;
 vertical-align: top;
}

 .div3-01 img, .div3-02 img, .div3-03 img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
 }

  .div3-01 img:hover, .div3-02 img:hover, .div3-03 img:hover {
   transform: scale(1.03);
  }

 .div3-01 h3, .div3-02 h3, .div3-03 h3 {
  margin-top: 15px;
  color: #f7941e; /* Arancio brand */
  font-size: 1.3em;
  font-weight: 500;
 }



.home-consulenza {
 max-width: 900px;
 margin: 70px auto;
 padding: 40px;
 background: #f8f8f8;
 border-radius: 10px;
 text-align: center;
}

/* Bottone Sezione CTA */
.container00 .btn-consulenza {
 background-color: #f7941e; /* Arancio brand */
 color: #fff;
 padding: 12px 25px;
 font-size: 1.2em;
 font-weight: bold;
 text-transform: uppercase;
 border-radius: 5px;
 border: none;
 box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
 transition: all 0.3s ease;
}

 .container00 .btn-consulenza:hover {
  background-color: #d9771f; /* arancio più scuro */
 }

/* Responsive */
@media screen and (max-width: 768px) {
 .div3-01, .div3-02, .div3-03 {
  width: 80%;
  margin: 10px auto;
  display: block;
 }
}


.home-video-negozio {
 text-align: center;
 margin: 70px auto;
 max-width: 900px;
}

.video-verticale {
 position: relative;
 width: 100%;
 max-width: 420px;
 margin: 30px auto;
 aspect-ratio: 9/16;
}

 .video-verticale iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
 }









