@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300&display=swap');



.logo {

    margin: 1.5rem;

    width: 5rem;

    height: 5rem;

}



.primary-header {

    align-items: center;

    justify-content: space-between;

    background-color: black;

    margin: 0;

    padding: 0;

    width: 100%;

    height: 7rem;

}



.primary-navigation {

    list-style: none;

    padding: 0;

    margin: 0;



    background: hsl(0 0% 0% / 0.9);

}



.mobile-nav-toggle {

    display: none;

}



@supports (backdrop-filter: blue(1rem)) {

    .primary-navigation {

        background: hsl(0 0% 0% / 0.9);

        backdrop-filter: blue(4rem);

    }

}



.primary-navigation a {

    text-decoration: none;

    font-weight: 300;

    font-family:  "Titillium Web", sans-serif;

    font-size: 20px;

    margin-inline-end: .75rem;

    color: white;

    white-space: nowrap;

}



@media (max-width: 35em) {



    .primary-navigation {

        --gap: 3em;

        

        position: fixed;

        z-index: 1000;

        inset: 0 0 0 40%;



        flex-direction: column;

        padding: min(30vh, 10rem) 2em;



        background: hsl(0 0% 0% / 0.9);

        backdrop-filter: blue(4rem);



        transform: translateX(100%);

        transition: transform 350ms ease-out;

    }



    .primary-navigation[data-visible="true"] {

        transform: translateX(0%);

    }



    .mobile-nav-toggle {

        display: block;

        position: absolute;

        z-index: 9999;

        background-color: transparent;

        background-image: url("/images/icon-hamburger.png");

        background-repeat: no-repeat;



        width: 2rem;

        border: 0;

        aspect-ratio: 1;

        top: 2.5rem;

        right: 2rem;

    }



    .mobile-nav-toggle[aria-expanded="true"]{

        background-image: url("/images/icon-closed.png");

    }



    .primary-header {

        width: 100%;

    }

}



@media (min-width: 35em) and (max-width: 55em)

{

    .primary-navigation a > [aria-hidden] {

        display: none;

    }

}



@media (min-width: 35em) {

    .primary-navigation {

        --gap: 3rem;

        padding: 1rem;

        padding-inline: clamp(2rem, 9vw, 8rem);

    }

}



.flex {

    display: flex;

    gap: var(--grap, 1rem);

}



body {

    overflow-x: hidden;

    margin: 0;

    padding: 0;

}

.nav-auth{
  margin-right: 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  color: #fff;
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  white-space: nowrap;
}
.nav-auth a{ color:#5cc0b3; text-decoration:none; }
.nav-auth a:hover{ text-decoration:underline; }
.nav-auth .sep{ opacity: 0.5; }

/* Desktop auth (right side of header) */
.nav-auth{
  margin-right: 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  color: #fff;
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  white-space: nowrap;
}
.nav-auth a{ color:#5cc0b3; text-decoration:none; }
.nav-auth a:hover{ text-decoration:underline; }
.nav-auth .sep{ opacity: 0.5; }

/* Drawer auth item (inside the slide-out UL) */
.nav-auth-li{
  margin-top: auto;              /* pushes it toward bottom in the column layout */
}

.nav-auth--drawer{
  margin-right: 0;
  justify-content: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ✅ Mobile: hide the desktop auth area; show the drawer auth */
@media (max-width: 35em){
  .nav-auth--desktop{ display:none; }
  .nav-auth--drawer{ display:flex; }
}

/* ✅ Desktop: show the header auth; hide the drawer auth item */
@media (min-width: 35.0001em){
  .nav-auth--desktop{ display:flex; }
  .nav-auth--drawer{ display:none; }
  .nav-auth-li{ display:none; }
}
