/* allabracioleria-custom.css */

/* Contenitore principale */
.ab-page-container {
  width: 100%;
  max-width: 100%;
  margin: 2em auto;
  padding: 2em 5%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2e2e2e;
  background-color: #ffffff;
  border-radius: 0.5em;
  box-shadow: 0 0.4em 1.5em rgba(46, 46, 46, 0.12);
  box-sizing: border-box;
}

/* Titolo principale */
.ab-title-primary {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 1em;
  border-bottom: 0.15em solid #2e2e2e;
  padding-bottom: 0.5em;
  display: inline-block;
  max-width: 100%;
}

/* Sottotitolo */
.ab-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2em;
  margin-bottom: 1em;
  color: #3a3a3a;
}

/* Paragrafi */
.ab-paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5em;
  max-width: 100%;
}

/* Link */
.ab-link {
  color: #2e2e2e;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.25s ease;
}
.ab-link:hover,
.ab-link:focus {
  color: #4a4a4a;
  outline: none;
}

/* Pulsante */
.ab-btn {
  background-color: #2e2e2e;
  color: #fff;
  font-weight: 700;
  padding: 0.8em 2em;
  border-radius: 2em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin-top: 1.5em;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.ab-btn:hover {
  background-color: #4a4a4a;
}

/* Mappa */
.ab-map-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 2em;
  border-radius: 0.75em;
  overflow: hidden;
  box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.1);
}
.ab-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Galleria */
.ab-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 2em;
  justify-content: center;
  width: 100%;
}
.ab-gallery-item {
  flex: 1 1 20em;
  max-width: 100%;
  border-radius: 0.75em;
  overflow: hidden;
  box-shadow: 0 0.3em 1em rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ab-gallery-item:hover {
  transform: translateY(-0.5em);
  box-shadow: 0 1em 2em rgba(0, 0, 0, 0.2);
}
.ab-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75em;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  .ab-title-primary {
    font-size: 2rem;
  }
  .ab-subtitle {
    font-size: 1.4rem;
  }
  .ab-paragraph {
    font-size: 1rem;
  }
  .ab-gallery {
    gap: 1.2em;
  }
}
