@charset "UTF-8";
/* Insert here the main colour choices for the project
60% = 
30% = 
10% = 
}

*/
/* ================================
   GLOBAL SETTINGS
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:focus-visible {
  outline: 3px solid blue;
  outline-offset: 4px;
}

body {
  font-family: "Avenir Next", sans-serif;
  color: #222;
}

/* ================================
   NAVIGATION — MOBILE FIRST
================================ */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Let the content determine the height */
  min-height: 150px;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #ababab;
}

/* ---------- LOGO AREA ---------- */
.nav-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  gap: 0.25rem;
}
.nav-left .logo {
  width: auto;
  height: clamp(45px, 14vw, 80px);
}
.nav-left .text {
  width: auto;
  height: clamp(30px, 8vw, 60px);
  margin-top: 0;
}

/* ---------- CONTACT BUTTONS ---------- */
.nav-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 50px;
  gap: 0.6rem;
}
.nav-right .contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 100px;
  padding: 0.6rem 0.8rem;
  color: #222;
  background-color: transparent;
  border: 1px solid #ababab;
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.nav-right .contact-btn i {
  color: green;
}
.nav-right .contact-btn:hover {
  background-color: #222;
  color: white;
  border-color: #222;
}
.nav-right .contact-btn:hover i {
  color: white;
}

/* ================================
   MAIN
================================ */
main {
  min-height: calc(100vh - 150px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-inline: 1rem;
}

/* ================================
   TEMPORARY / UNDER CONSTRUCTION
================================ */
.tempo {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  margin-top: clamp(5rem, 20vh, 12.5rem);
}
.tempo img {
  width: auto;
  height: clamp(100px, 20vw, 180px);
  max-width: 70%;
}
.tempo p {
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: clamp(2rem, 5vw, 3.125rem);
}

/* ================================
   TABLET / DESKTOP
================================ */
@media (min-width: 768px) {
  .top-nav {
    min-height: 100px;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
  }
  .nav-left {
    flex-direction: row;
    gap: clamp(0.5rem, 2vw, 1.25rem);
  }
  .nav-left .text {
    margin-top: 4px;
  }
  .nav-right {
    flex-direction: row;
    gap: clamp(1rem, 4vw, 4.5rem);
  }
  main {
    min-height: calc(100vh - 100px);
  }
}
/* ================================
   LARGE DESKTOP
================================ */
@media (min-width: 1200px) {
  .top-nav {
    min-height: 120px;
  }
  .nav-right {
    gap: clamp(0.75rem, 2vw, 1.5rem);
  }
  .nav-right .contact-btn {
    min-width: 120px;
    padding: 0.7rem 1.1rem;
  }
  main {
    min-height: calc(100vh - 120px);
  }
}/*# sourceMappingURL=style.css.map */