nav{
    height: 100px;
    width: 100%;
    position: fixed;
    top: 0;
    padding: 0 60px;
    display: flex;
    text-transform: uppercase;
    align-items: center;
    background-color: #000;
    z-index: 10;
}

nav #logo{
    height: 50px;
    transition: all 0.2s;
}

nav #logo img{
    height:100%;
}

nav #logo:hover {
  color: #FBB03F;
  transform: scale(1.1);
}

nav #nav-items{
    margin-left: 60px;
    display: flex;
}

nav #nav-items a{
    margin-right: 40px;
    font-family: "Goldman";
    font-weight: 400;
    font-size: 1.25rem;
    transition: all 0.2s;
}

nav #nav-items .selected{
    color: #FBB03F;
    text-shadow: 0 0 10px #FBB03F, 0 0 20px #FBB03F, 0 0 30px #FBB03F, 0 0 40px #FBB03F;
}

nav #nav-items a:hover {
  color: #FBB03F;
  text-shadow: 0 0 10px #FBB03F, 0 0 20px #FBB03F, 0 0 30px #FBB03F, 0 0 40px #FBB03F;
    transform: scale(1.1);
}

nav #socials{
    height: 20px;
    margin-left: auto;
    display: flex;
    align-items: center;
}

nav #socials a{
    margin-left: 10px;
    transition: all 0.2s;
}

nav #socials a:hover {
  color: #FBB03F;
  text-shadow: 0 0 10px #FBB03F, 0 0 20px #FBB03F, 0 0 30px #FBB03F, 0 0 40px #FBB03F;
    transform: scale(1.2);
}

nav #socials #instagram{
    height: 20px;
}

nav #socials #youtube{
    height: 16px;
}

nav #socials #spotify{
    height: 20px;
}

nav #socials #applemusic{
    height: 20px;
    margin-bottom: 3px;
}

nav #socials a img{
    height: 100%;
}

footer {
  flex-shrink: 0; 
  width: 100%;
  line-height: 50px;
  font-size: 0.75rem;
  padding: 0 60px;
  text-align: right;
}

footer a, span{
    margin-left: 20px;
}

footer a:hover{
    text-decoration: underline;
}





/* Mobile Menu Styles */

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    z-index: 10;
    transition: all 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.hamburger:hover{
    transform: scale(1.2);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #fff !important;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 0;
}

/* Mobile Styles */
@media (max-width: 800px) {
    body {
        padding-top: 70px;
    }
    
    .content {
        padding-top: 50px;
        flex: 1; 
    }
    
    nav {
        height: 70px;
        padding: 0 20px;
        /* Keep the original flex setup */
        justify-content: flex-start;
    }
    
    /* Keep hamburger with margin-left: auto but ensure it's visible */
    .hamburger {
        display: flex;
    }
    
    nav #logo {
        height: 40px;
        z-index: 10;
    }
    
    /* Mobile Menu when active */
    nav.mobile-active {
        height: 100vh;
        align-items: flex-start;
        padding-top: 20px;
        background-color: #000;
    }
    
    nav.mobile-active #nav-items {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        margin: 0;
    }
    
    nav.mobile-active #nav-items a {
        margin: 15px 0;
        font-size: 1.8rem;
    }
    
    nav.mobile-active #socials {
        display: flex !important;
        justify-content: center;
        position: absolute;
        bottom: 100px;
        left: 0;
        right: 0;
        margin: 0;
    }
    
    nav.mobile-active #socials a {
        margin: 0 15px;
    }
    
    /* Default mobile state (hidden) */
    nav #socials {
        display: none !important; /* !important ensures it overrides */
    }
    
    nav #nav-items {
        display: none !important;
    }
    
    /* Hamburger animation when active */
    nav.mobile-active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    nav.mobile-active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    nav.mobile-active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    footer {
        padding: 0 20px;
    }
    
    footer #footer-items {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    footer a, span{
        margin: 0;
        padding: 0;
        text-align: center;
        line-height: 2rem;
    }
    
}

/* Tablet Styles */
@media (min-width: 801px) and (max-width: 1024px) {
    nav {
        padding: 0 30px;
    }
    
    nav #nav-items {
        margin-left: 30px;
    }
    
    nav #nav-items a {
        margin-right: 20px;
        font-size: 1.1rem;
    }
    
    footer {
        padding: 0 30px;
    }
}

/* Prevent body scroll when menu is open */
body.no-scroll {
    overflow: hidden;
}

@media (prefers-color-scheme: dark) {
  .hamburger-line {
    background-color: #fff; /* keep white even in dark mode */
  }
}