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

/* BODY BASE */
body {
  background: #fffdf9;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

/* HEADER */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

/* TOP LEFT */
.top-left {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.top-left h1 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

.subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}

/* TOP RIGHT MENU */
.top-right {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.top-right ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.top-right ul li a {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* BOTTOM RIGHT (SOCIAL + CONTACT) */
.bottom-right {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.social-links {
  font-size: 0.9rem;
}

.social-links a {
  color: inherit;
  text-decoration: none;
  margin: 0 0.5rem;
}

.contact-button {
  background: none;
  border: 1px solid #1a1a1a;
  padding: 0.8rem 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

/* CONTENUTO CENTRALE */
.main-content {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .top-right ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    position: absolute;
    top: auto;
    bottom: 6rem;
    left: 2rem;
    right: auto;
  }
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
}

.project-box {
  border: 1px solid #ccc;
  padding: 2rem;
  background-color: #fff;
  transition: all 0.2s ease;
  cursor: pointer;
}

.project-box:hover {
  border-color: #000;
  background-color: #f9f9f9;
}

.project-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}
