/* Sfondo fisso */
body {
  margin: 0;
  font-family: 'Century Gothic', sans-serif;
  background: url('/img/banner_desk.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  height:100vh;
}

/* Header con logo e social */
header {
  padding: 20px;
  text-align: center;
}

.logo img {
  max-width: 600px;
  height: auto;
  margin-bottom: 10px;
  padding-top:100px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding-top:50px
}

.social-icons a img {
  width: 60px; /* o 60px per le icone principali */
  height: auto;
  cursor: pointer;
  display: block;
  transition: opacity 0.3s ease;
}

.social-icons a img:hover,
.icon-link:hover img {
  opacity: 0.8;
}

/* Sezione icone con caption e link */
.links-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop: 4 icone in riga */
  gap: 40px;
  padding: 50px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #000000;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px;
  min-width: 0;
}

.icon-link img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  transition: opacity 0.3s ease;
}

.icon-link:hover img {
  opacity: 0.8;
}

/* Tablet e mobile: 2 colonne sempre */
@media screen and (max-width: 768px) {
  .links-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .icon-link img {
    width: 50px;
    height: 50px;
  }
}

/* Footer con colore identico */
footer {
  background-color: #FFE900; /* modifica se il colore è diverso */
  color: #000000;
  text-align: center;
  padding: 15px 10px;
  margin-top: auto;
  font-size: 0.9rem;
}

.DM {
  color: black;
  text-decoration: unset;

}

.DM:hover {
  text-decoration: unset;
  font-weight: 600;
  color: #FF0000;
}

div.apparel .row,
div.tz-gallery .row {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 0;
    padding-right: 0;
}

footer > p { 
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

div.tz-gallery > div.row {
    background-color: #FFE900;
}