body{
	background-color: #1c1c1c;
	
}

a {
  text-decoration: none; 
  color: inherit; 
  transition: color 0.3s ease; 
}





footer .wp-block-group,
footer .wp-block-column {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


.wp-block-group is-layout-flow wp-block-group-is-layout-flow {
    padding: 0 !important;
}
.wp-block-button__link{
	background-color: black;
	color: white;
	padding: 15px;
	margin: 20px;
}






.custom-logo {
  transition: transform 0.4s ease;
}

.custom-logo:hover {
  transform: scale(1.1);
}

.wp-block-button__link{
	background-color: white;
	border-radius: 40px;
	padding:20px;
	color: black;
}


.wp-block-navigation-item__label {
    position: relative;
    color: white;    
    text-decoration: none !important; 
    transition: color .25s;
}

.wp-block-navigation-item__label::before {
    content: "";
    position: absolute;
    left: -10px;          
    bottom: 50%;         
    transform: translateY(50%) scale(0.4);
    width: 6px;
    height: 6px;
    background: #1558e0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .25s, transform .25s;
}




.wp-block-navigation-item__label:hover::before {
    opacity: 1;
    transform: translateY(50%) scale(1);
}





.glsr-button.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 26px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;

  color: #ffffff;
  background: rgba(255,255,255,0.1);         
  border: 1px solid rgba(255,255,255,0.25);       
  backdrop-filter: blur(6px);
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}


.glsr-button.wp-element-button:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}




.glsr-button[aria-busy="true"] {
  opacity: 0.6;
  pointer-events: none;
}

.blue-navbar {
    background-color: white; 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
}