/* Reset base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}
/* Main */
.responsive {
  max-width: 100%;
  height: auto;
  display: block;
}
    .fullscreen-container {
      width: 100%;
      height: auto;
      overflow: hidden;
      position: relative;
    }

    .fullscreen-container img {
      width: 100%;
      height:auto;
      object-fit: cover;
    }

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 90px; /* Imposta l'altezza fissa della navbar */
  background-color : #0d2e2a;
/* background-color: #0d2e2a;  verdino*/
/*  background-color: #0a0b0c; neroblu*/
/*  background-color: #0a1a2b; bluscuro*/
  color: white;
  position: relative;
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  height: 100%;   /* Si adatta alla navbar */
  width: auto;    /* Mantiene il rapporto */
  display: block;
}
.logo a {
  height: 100%;   /* Si adatta alla navbar */
  width: auto;    /* Mantiene il rapporto */
  display: block;
}


.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  color: #d4b66a;
  text-decoration: none;
  font-weight: 800;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Footer */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px;
  background-color: #0d2e2a;
  color: white;
  text-decoration: none;
}

.footer-left {
  flex: 1 1 200px;
  margin: 10px;
  text-decoration: none;
}
.footer-right {
  flex: 1 1 200px;
  margin: 10px;
  text-decoration: none;
}
.footer-left p {
	
	font-family: 'Nunito', sans-serif;
	font-weight: 600; 
	letter-spacing: 0.05em;
	color: #d4b66a;
	text-decoration: none;
}
.footer-right a {
  color: none;
  margin-right: 15px;
  font-size: 1.2rem;
  text-decoration: none;
}
.c-link {
	text-decoration: none;
    color: black; 
    cursor: pointer; 
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #0d2e2a;
    position: absolute;
    top: 90px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  .nav-links.show {
    display: flex;
	z-index: 1;
  }

  .hamburger {
    display: block;
	color: #d4b66a;
  }
}
