/* Font e reset base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Aptos', sans-serif;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Contenitore centrale */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #eaeaea;
  z-index: 10;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.site-header .logo {
  font-weight: 500;
  text-decoration: none;
  color: #333;
}
.main-nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 400;
}

/* Spazio sotto l’header fisso */
main {
  padding-top: 80px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 6rem 0;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.125rem;
}

/* Gallery */
.gallery-section {
  padding: 4rem 0;
}
.gallery-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

/* About */
.about-section {
  padding: 4rem 0;
}
.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-section p {
  max-width: 600px;
}

/* Contatti */
.contact-section {
  padding: 4rem 0;
}
.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 500px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}
.contact-form input,
.contact-form textarea {
  margin-top: 0.5rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}
.contact-form button {
  padding: 0.75rem 1.5rem;
  background-color: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem 0;
  background: #f7f7f7;
  font-size: 0.875rem;
}
