/* ===== BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: "Kanit", sans-serif;
  color: #fff;
  text-align: center;
  background: url("img/sito-costruzione-dwb.png") center center / cover no-repeat fixed;
  position: relative;
  overflow-x: hidden;
}


/* Contenuto principale */
.page-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 40px 20px;
}

/* ===== HEADER ===== */
.logo-image {
  width: 150px;
  height: auto;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}

/* ===== MAIN ===== */
.main-message {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-request {
  color: #ddd;
  margin-bottom: 0.4rem;
  font-weight: 200;
}

.email-link {
  color: #fff;
  text-decoration: none;
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 80px;
  font-size: 1.2rem; 
}


.email-link:hover {
  opacity: 0.8;
}

/* ===== CONTATTI ===== */
.contact-sections {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
    margin-top: 10%;
}

.contact-block {
  padding: 1rem 1.5rem;
  min-width: 230px;
  text-align: left;
  background: transparent;
  font-size: 1.1rem; 
}

.contact-title {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-block p {
  line-height: 1.5;
  font-size: 0.95rem;
}

/* ===== LINK + SOCIAL ===== */
.link-social {
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  margin-top: 6rem; 
}

.website-link {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  font-style: italic;
  margin-bottom: 1rem; 
    font-size: 1.2rem; 

}

.website-link:hover {
  opacity: 0.8;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}

footer p {
  margin: 4px 0;
}

.heart {
  color: #ff4d4d;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .main-message {
    font-size: 1.8rem;
  }

  .contact-sections {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .contact-block {
    text-align: center;
  }

  .link-social {
    flex-direction: column;
    gap: 12px;
  }
}
