﻿@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');

/* =========================
   HERO INTERNO – CENTRATO
========================= */
#hero-interno {
 width: 100%;
 height: 65vh;
 background-image: url('images/internaO.jpg');
 background-size: contain;
 background-position: center center;
 background-repeat: no-repeat;
 display: flex;
 justify-content: center; /* CENTRO VERTICALE */
 align-items: center; /* CENTRO ORIZZONTALE */
 text-align: center;
 position: relative;
}

 /* Contenuto hero */
 #hero-interno .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  /* spostamento verso il basso */
  margin-top: 14%; /* aumenta o diminuisci per regolare la posizione verticale */
 }

 /* Titolo */
 #hero-interno .hero-titolo {
  font-family: 'Alex Brush', cursive;
  font-size: 5.5em;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.55);
  margin: 0;
 }

 /* Pulsante */
 #hero-interno .btn-collezione {
  background-color: #f7941e;
  color: #ffffff;
  padding: 16px 40px;
  font-size: 1.3em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
 }

  #hero-interno .btn-collezione:hover {
   background-color: #d9771f;
  }

/* =========================
   MOBILE
========================= */
@media screen and (max-width: 768px) {

 #hero-interno {
  height: 80vh;
  margin-top:40px;
  background-image: url('images/internaV.jpg');
  background-size: cover;
  background-position: center top;
 }

  #hero-interno .hero-titolo {
   font-size: 4.5em;
  }

  #hero-interno .btn-collezione {
   font-size: 1.2em;
   padding: 16px 36px;
  }
}