:root {
  --tiffany: #0ABAB5;
  --dark: #1a1a1a;
  --light: #fdfdfd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  background: #7ecdc4;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

.lux-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background: #7ecdc4;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  padding: 0 60px;
  z-index: 1000;
  border-bottom: 3px solid black; /* riga nera */

}

.nav-left,
.nav-right {
  width: 40%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-right {
  justify-content: flex-end;
}

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo img {
  max-height: 100px;
  width: auto;}

.lux-navbar a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  color: #000000; 
  font-weight: 500;
}

.contact-page {
  padding: 180px 8% 100px;
  background: #7ecdc4;
}

.contact-container {
  display: flex;
  gap: 60px;
  align-items: stretch;
  flex-wrap: wrap;
}

.contact-info-box {
  flex: 1;
  min-width: 320px;

  background: rgba(255,255,255,0.92);
  padding: 60px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info-box h2 {
  font-size: 42px;
  color: var(--tiffany);
  margin-bottom: 40px;
}


.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-item i {
  font-size: 20px;
  color: var(--tiffany);
  margin-top: 5px;
}

.contact-item h4 {
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-item p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}


.contact-map {
  flex: 1;
  min-width: 320px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;

  border: none;

  filter: grayscale(100%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}


.career-page {
  padding: 0 8% 120px;
  background: #7ecdc4;
}

.career-container {
  display: flex;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}


.career-form {
  flex: 1;
  min-width: 320px;

  background: rgba(255,255,255,0.92);
  padding: 60px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.career-form h2 {
  font-size: 42px;
  color: var(--tiffany);
  margin-bottom: 20px;
}

.career-form p {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.career-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.career-form input,
.career-form textarea {
  border: none;
  border-bottom: 1px solid #ccc;

  background: transparent;

  padding: 15px 5px;

  font-size: 14px;
  outline: none;
}

.career-form textarea {
  height: 120px;
  resize: none;
}


.career-form button {
  margin-top: 15px;

  background: var(--tiffany);
  color: white;

  border: none;

  padding: 14px;

  letter-spacing: 2px;
  cursor: pointer;

  transition: 0.3s;
}

.career-form button:hover {
  background: #089e9a;
}


.career-image {
  position: relative;
  flex: 1;
  min-width: 320px;
}

.career-image .image-box {
  position: absolute;

  top: -20px;
  left: -20px;

  width: 100%;
  height: 100%;

  border: 2px solid var(--tiffany);

  z-index: 1;
}

.career-image img {
  width: 100%;
  height: 650px;

  object-fit: cover;

  position: relative;
  z-index: 2;
}

.credits {
  text-align: center;
  font-size: 12px;
  color: #777;
  padding: 15px 30px;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'Lora', serif;
  letter-spacing: 1px;
}

.footer {
  background: #111;
  color: #fff;
  padding: 70px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-box {
  flex: 1;
  min-width: 260px;
}

.footer-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: #c8a97e;
}

.footer-box p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;  font-size: 14px;
  color: #ccc;
  margin: 8px 0;
  transition: 0.3s;
}

.footer-box p:hover {
  color: #ffffff;
}

.icon {
  color: #c8a97e;
  font-size: 16px;
  min-width: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8a97e;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #c8a97e;
  color: #111;
}

.map {
  margin-top: 20px;
}

.map iframe {
  width: 100%;
  height: 140px;
  border: none;
  border-radius: 6px;
  filter: grayscale(100%) contrast(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 12px;
  color: #777;
}

.icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: invert(78%) sepia(18%) saturate(600%) hue-rotate(350deg);
}

.footer-box p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons img {
  width: 18px;
  height: 18px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #c8a97e;
}

.credits span {
  color: #c8a97e;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.credits span:hover {
  color: #ffffff;
}
@media (max-width: 768px) {

  /* ================= NAVBAR ================= */
  .nav-left {
    display: none;
  }

  .nav-right {
    gap: 15px;
  }

  .nav-logo {
    position: static;
    transform: none;
  }

  .lux-navbar {
    justify-content: center;
    padding: 0 20px;
  }

  .nav-logo img {
    height: 45px;
  }

  /* ================= CONTACT PAGE ================= */

  .contact-page {
    padding: 140px 5% 60px;
  }

  .contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info-box {
    padding: 35px 25px;
  }

  .contact-info-box h2 {
    font-size: 30px;
  }

  .contact-item h4 {
    font-size: 13px;
  }

  .contact-item p {
    font-size: 14px;
  }

  .contact-map iframe {
    min-height: 300px;
  }

  /* ================= CAREER PAGE ================= */

  .career-page {
    padding: 60px 5% 80px;
  }

  .career-container {
    flex-direction: column;
    gap: 30px;
  }

  .career-form {
    padding: 35px 25px;
  }

  .career-form h2 {
    font-size: 30px;
  }

  .career-form p {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .career-form input,
  .career-form textarea {
    font-size: 13px;
  }

  .career-form button {
    font-size: 13px;
  }

  /* IMMAGINE LAVORA CON NOI */

  .career-image img {
    height: 350px;
  }

  .career-image .image-box {
    display: none;
  }

  /* ================= FOOTER ================= */

  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }

  .footer-box {
    min-width: 100%;
  }

  .map iframe {
    height: 180px;
  }

  .credits {
    font-size: 11px;
    padding: 15px;
  }
}