/* Sub Header */
.my-sub-nav ul {
  font-size: 1.2vw;
  display: flex;
  list-style: none;
  gap: 1vw;
  margin: 0 0;
  padding-right: 1vw;

}

.my-sub-nav a { text-decoration: none; color: var(--text); }
.my-sub-nav a:hover { color: var(--primary); }





.my-sub-header-inner { 
    display: flex;
  align-items: center;
  justify-content: left;
  padding-bottom: 0.5vw;

}
.my-sub-container {
  max-width: var(--max-width);


}

.my-sub-site-header {
  background-color: whitesmoke;
  padding: 0rem;
  padding-left: 5vw;
  margin: 0rem;
}

.my-sub-site-header.my-visible::after {
  content: "";
  display: block;
  height: 12px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.06), rgba(0,0,0,0));
  width: 100%;
}




.my-Link-no-under-line
{
  text-decoration: none; 
  color: var(--text);
}









/* Footer */
.my-site-footer {
  background: #f0f0f0;
  border-top: 1px solid #ddd;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.1vw;
}
.my-site-footer ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: center;
  text-decoration: none; 
  color: var(--text);
}

.my-site-footer a {
  color: #11659c;        
  text-decoration: none; 
}

.my-site-footer a:hover {
  color: #0c3d66;       
  text-decoration: underline;
}

/* Logo Style Footer */
.my-logo-style {

  width: auto; 
  height: 3vw;

}


@media (max-width: 600px) {
  .my-site-footer {
    background: #f0f0f0;
    border-top: 1px solid #ddd;
    text-align: center;
    padding: 0rem 0;
    font-size: 10px;
  }
  .my-site-footer ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    justify-content: center;
    text-decoration: none; 
    color: var(--text);

  }
}


/* Desktop Header */
.my-site-header {
  background-color: whitesmoke;
  padding: 0rem;
  padding-left: 4%;
  margin: 0rem;
}

.my-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
}

.my-logo {
  height: 4vw;
  max-height: 5vw;
  width: auto;
}

.my-main-nav ul {
  font-size: 1.3vw;
  font-weight: 600;
  display: flex;
  list-style: none;
  gap: 1vw;
  margin: 0 1vw;
  justify-content: right;
}

.my-main-nav a {
  text-decoration: none;
  color: var(--text);
}

.my-main-nav a:hover {
  color: var(--primary);
}

.active-page {
  color: rgb(43, 153, 197) !important;
  font-weight: bold;
  text-decoration: none;
}


.my-Link-no-under-line
{
  text-decoration: none; 
  color: var(--text);
}


/* Mobile Menu Button & Side Menu */
.my-menu-btn {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.my-side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  background-color: whitesmoke;
  padding: 2rem;
  box-shadow: 2px 0 8px rgba(0,0,0,0.3);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.my-side-menu.open {
  right: 0;
}

.my-side-menu .my-close-btn {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  margin-bottom: 2rem;
}

.my-side-menu ul {
  list-style: none;
  padding: 0;
}

.my-side-menu li {
  margin: 1rem 0;
}

.my-side-menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.2rem;
}



/* Desktop und Mobile Side Menu */
.my-main-nav a.active-page,


.my-side-menu a.active-page {
  color: rgb(43, 153, 197) !important;
  font-weight: bold;
}

/* Media Queries */
@media (max-width: 600px) {
  .my-main-nav { display: none; }
  .my-menu-btn { display: block; }

  
  .my-logo {
    height: 100%;
    max-height: 10vw;
    width: auto;
    padding: 0%;
    }
  .my-header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 0;
}
    .my-site-header {
    background-color: whitesmoke;
    padding: 0rem;
    padding-left: 4%;
    padding-right: 2%;
    margin: 0rem;
    }

}

