* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #1a1a1a;
    color: #fff;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 0;
    z-index: 1000;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger {
    display: none; /* Hidden on desktop */
    font-size: 2rem;
    color: #00ffcc;
    cursor: pointer;
    padding: 0 1rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-menu li {
    margin: 0;
}

nav a {
    color: #00ffcc;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff00ff;
}

.section {
    min-height: 100vh;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.section.visible {
    opacity: 1;
}

h1, h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
}

h1 {
    font-size: 4rem;
    text-shadow: 0 0 10px #00ffcc;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ff00ff;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #00ffcc;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00ffcc;
}

/* Hero Section */
#hero {
    background: url('../img/Franz-One-Hero.png') no-repeat center/cover;
    position: relative;
}

.hero-content {
    text-align: center;
}

.hero-content p {
    font-size: 1.5rem;
    margin: 1rem 0 2rem;
}



/* About Section */
#about {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/Hero-Background-Waves.png') no-repeat center/cover;
    background-attachment: fixed; /* Parallax effect */
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    text-align: center;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: transform 0.3s, filter 0.3s;
}

.avatar:hover {
    transform: rotate(10deg);
    filter: brightness(1.2);
}

/* Music Section */
#music {
    background: linear-gradient(45deg, #1a1a1a, #003366);
}

.music-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.track {
    text-align: center;
}

.track p {
    margin-bottom: 1rem;
}

.stream-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ff00ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.stream-btn:hover {
    background: #00ffcc;
}

/* Videos Section */
#videos {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/Hero-Background-Waves.png') no-repeat center/cover;
    background-attachment: fixed; /* Parallax effect */
}

.video-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.video {
    text-align: center;
}

.thumbnail {
    width: 300px;
    height: 200px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #ff00ff;
}

/* Contact Section */
#contact {
    background: linear-gradient(45deg, #1a1a1a, #660066);
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: #00ffcc;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s, color 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #ff00ff;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    width: 100%;
}

input, textarea {
    padding: 0.8rem;
    border: 2px solid #00ffcc;
    background: #333;
    color: #fff;
    border-radius: 5px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
footer {
    background: #1a1a1a;
    padding: 1rem;
    text-align: center;
    border-top: 1px solid #00ffcc;
}

footer p {
    font-size: 0.9rem;
    color: #00ffcc;
    font-family: 'Orbitron', sans-serif;
}

footer a {
    font-size: 0.9rem;
    color: #00ffcc;
    text-decoration: underline;
    font-family: 'Orbitron', sans-serif;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed; /* Changed from absolute to fixed for better positioning */
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 1rem 0;
        z-index: 999; /* Ensure it stays above content */
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 1rem 0;
        text-align: center;
    }

    /* Adjust header height to avoid overlap */
    header {
        height: 60px;
    }

    /* Ensure sections are pushed down when menu is open */
    .section {
        padding-top: 80px; /* Increased padding to account for fixed header */
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .about-content { flex-direction: column; }
    .video-content { flex-direction: column; }
}