:root {
  --bg: #605e31;
  --accent: rgba(255, 255, 255, 0.95);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.brand-logo {
  width: 500px;   /* logo largo 500px */
  height: auto;
}

.contacts {
  display: flex;
  flex-direction: row; /* desktop: elementi affiancati */
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-item, .ig-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent);
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
  font-size: 15px;
}

.contact-item:hover, .ig-btn:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.contact-item svg, .ig-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .contacts {
    flex-direction: column; /* mobile: elementi in colonna */
    gap: 12px;
  }
  .brand-logo {
    width: 300px; /* riduci il logo su mobile */
  }
}
