@charset "UTF-8";


body {
    margin: 0;
    padding: 0; 
	 padding: 0px; /* Adjust depending on footer height */
	background-color: #ffffff;
	border: 1px solid rgba(44,168,247,1.00);
	
	
}

html {
    scroll-behavior: smooth;
}
	 
 /* Fixed Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 0;
    z-index: 1000;
    display: flex;
    justify-content: center; /* Centers desktop menu */
    align-items: center;
}

/* Mobile Menu Button (Visible ≤768px, stays on right) */
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 70px 0px 0px 0px;
    position: absolute;
    right: 10px;
	margin: 0px;
}

.menu-icon {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    border: .5px solid rgba(0,0,0,1.00);    
}

.nav-menu {
    display: none;
    position: absolute;
    top: 60px; /* Adjust to match button positioning */
    right: 10px;
    background: rgba(0, 0, 0, 0.9);
    width: 150px;
    border-radius: 5px;
    text-align: center;
    font-family: 'Noteworthy-bold';
    font-weight: bold;
    border: 1px solid rgba(44,168,247,1.00);
    flex-direction: column;
}

/* When menu is open */
.nav-menu.open {
    display: flex; /* Ensures proper layout when opened */
}

/* Ensure list is hidden properly */
.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.nav-menu li {
    padding: 10px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    display: block;
    font-size: 18px;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hide menu by default */
.nav-menu {
    display: none;
}

/* When menu is open */
.nav-menu.open {
    display: block;
}

/* Fixed Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 1920px;
    background: black;
    color: white;
    text-align: center;
    padding: 0px 0px 0px 0px;
    margin: 0px auto 0px auto;
    height: 30px;
    font-family: Brullos;
    font-size: 14px;
    line-height: 0px;
	z-index: 1000; /* Ensure footer is on top of everything */
}



@media screen and (max-width: 1920px) {
	
			/* Mobile Menu Button (Visible ≤768px, stays on right) */
.menu-btn {
 padding: 100px 0px 0px 0px;
   right: 15px;
}

	.menu-icon {
    width: 60px;
    height: 60px; 
		
}
	
}


@media screen and (max-width: 1200px) {
	
			/* Mobile Menu Button (Visible ≤768px, stays on right) */
.menu-btn {
 padding: 100px 0px 0px 0px;
   right: 15px;
}

	.menu-icon {
    width: 60px;
    height: 60px; 
		
}
	
}




@media screen and (max-width: 768px) {
	.menu-icon {
    width: 50px;
    height: 50px; 
		
}
	
}




@media screen and (max-width: 480px) {
	
.menu-btn {
 padding: 50px 0px 0px 0px;
   right: 10px;
}

	.menu-icon {
    width: 40px;
    height: 40px; 
}
	
}



@media screen and (max-width: 300px) {
	
		/* Mobile Menu Button (Visible ≤768px, stays on right) */
.menu-btn {
 padding: 50px 0px 0px 0px;
   right: 10px;
}

	.menu-icon {
    width: 40px;
    height: 40px; 
}

	
	
}
