/*  =========HEADER======== */


 /*  INVISIBLE HEADER => for the meta tag  */

.hiddenHeader{ 
  display: none;
  visibility: hidden;
}


 .site-header {
    position: relative;   /* establishes containing block for absolute children */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0rem;        /* keep your existing centering padding */
    max-width: 100%;
    margin-bottom: 2rem;
}
/* todebug */

/*  */

.logo
{
    margin : 0;
    padding : 0;
    max-width: 30%;
    margin-left: 1rem;

}


      /*  NAV */
#menu-toggle {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  top: 3rem; right:3rem;
  font-family: 'EKNoticeSans';
   font-size: large;
}

.menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgb(0, 0, 0);
    color: #9d1e1e;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.3s;
}
.menu-overlay.active {
  display: flex;
}
.menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
}
.overlay-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.overlay-menu li {
  margin: 1.5rem 0;
  list-style: none;
}
.overlay-menu a {
  color: #fffdfd;
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'EKNoticeSans', sans-serif;
}

.overlay-menu a:hover {
  color: #fffdfd;
}

    /* SEPARATOR */
.top-separator {
    width: 90vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem;
    gap: 0rem;
}

.line {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem;
    gap: 0rem;
    margin-top: 1.4rem;
    flex-grow: 1;
    height: 1px;
    background-color: #000; /* Customize color */
}

.cross {
    font-size: 4.2rem; /* Adjust size */
    font-weight: bold;
    user-select: none;
}

@media screen and (max-width: 1441px) {
  .logo{
    margin-left: 3rem;

  }

}


/* 📱 Mobile: ≤ 480px (phones) */
@media screen and (max-width: 480px) {
  /* Small phones (portrait) */


#menu-toggle {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    top: 1rem; right:2rem;
    font-family: 'EKNoticeSans', sans-serif;
}
.logo
{
    margin-top: 2rem;
    width: 100vw;
    max-width: 100%;
    margin-left: unset;
}

.pHeader
{
    font-size: 0.5rem;
    text-align: center;
}

     /*  NAV */




     /*  =============== */
.top-separator {
    width: 60vw;

}

.top-separator .line {
    flex-grow: 1;
    height: 1px;
  background-color: #000; /* Customize color */
}



}

