* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

font-face {
  font-family: 'Manifesto';
  src: url('file:///Macintosh HD/Users/paolo/Downloads/sito_dreamweaver_cursor_final/fonts/Manifesto-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: MANIFESTO ;
  line-height:  1.6;
  color: #EBE5E6;
  cursor: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: #42583E;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.main-nav a {
  text-decoration: none;
  color: #EBE5E6;
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}

.grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.grid-item img {
  width: 100%;
  height: auto;
  display: block;
}

.site-footer {
  background: #222;
  color: #ddd;
  padding: 2rem 0;
}
.site-footer a {
  color: #ddd;
  text-decoration: none;
}
.site-footer .footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.site-footer .col {
  flex: 1 1 200px;
}

.contact-section {
  margin: 4rem 0;
  padding: 2rem;
  background: #f7f7f7;
  border-radius: 1rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
}
.contact-form button {
  padding: 1rem;
  border: none;
  background: #EBE5E6;
  color: #EBE5E6;
  font-size: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
}
.contact-form button:hover {
  background: #555;
}

.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #EBE5E6;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cursor-dot.clickable {
  transform: translate(-50%, -50%) scale(2);
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 200px;
    transform: translateX(100%);
    transition: transform .3s;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav ul {
    flex-direction: column;
  }
  .menu-toggle {
    display: block;
  }
}


a, button, input[type="submit"] {
  cursor: none !important;
}
