/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Header and Navigation */
.header {
    background-color: #0d0d0d;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 90%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 15px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
}

.site-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

    .navigation ul li {
        margin: 0 20px;
    }

        .navigation ul li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1em;
            padding: 5px 10px;
            transition: color 0.3s ease, transform 0.3s ease;
        }

            .navigation ul li a:hover {
                color: #00ffff;
                transform: scale(1.1);
            }

.social-media a {
    color: #ffffff;
    font-size: 1.5em;
    margin-left: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .social-media a:hover {
        color: #00ffff;
        transform: scale(1.2);
    }

/* Main Content and Sections */
.main-content {
    padding-top: 10px; /* Offset for fixed header */
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 0;
}

section {
    padding: 40px 0;
    text-align: center;
    position: relative;
}

/* Hero Section */
.hero-section {
    background: url('https://images.unsplash.com/photo-1516242769911-c96767732a39') no-repeat center center/cover;
    height: 100vh;
    display:flow-root;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 400px;
        background: rgba(0, 0, 0, 0.6);
    }

.hero-text {
    position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding-top: 5px;
}

.hero-logo {
    position: relative;
    top:1%;
    left:auto;
    width: 100%; 
    max-width: 450px; 
    height: 450px;
    opacity: 0.7; 
    z-index: 2; 
    pointer-events: none; /* Make the logo unclickable, so it doesn't interfere with other elements */
}

/* Ensure the text and button are BELOW the logo by setting their z-index */
.hero-text {
    position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding-top: 5px;
    padding-bottom: 5px;
    z-index: 1;
}
.hero-text h2 {
    font-size: 4em;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInDown 1s ease-in-out;
}
.hero-text p {
    font-size: 1.5em;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-in-out;
}
.hero-text a {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #0d0d0d;
    font-size: 1.2em;
    font-weight: bold;
    padding: 15px 30px;
    background-color: #00ffff;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
    .hero-text a:hover {
        background-color: #00e6e6;
        transform: translateY(-5px);
    }
.cta-button {
    position: center;
    padding-top: 2px;
    z-index: 1;
}

/* CTA Button */
.cta-button {
    background-color: #00ffff;
    color: #0d0d0d;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

    .cta-button:hover {
        background-color: #00e6e6;
        transform: translateY(-5px);
    }

/* About Section */
.about-section {
    background-color: #121212;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: #1a1a1a;
    padding: 1px 0;
    display: flex;
}

    .about-section h2 {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: #ffffff;
        text-transform: uppercase;
        position: relative;
    }

        .about-section h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background-color: #00ffff;
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

.about-content {
    text-align: left;
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto;
    column-count: 2;
    column-gap: 40px;
}

    .about-content p {
        margin-bottom: 20px;
    }

/* Music Section */
.music-section {
    background-color: #212121;
    padding: 100px 0;
}

    .music-section h2 {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: #ffffff;
        text-transform: uppercase;
        position: relative;
    }

        .music-section h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background-color: #00ffff;
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

.music-player {
    max-width: 800px;
    margin: 0 auto;
    background-color: #0d0d0d;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Contact Section */
.contact-section {
    background-color: #1a1a1a;
    padding: 100px 0;
}

    .contact-section h2 {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: #ffffff;
        text-transform: uppercase;
        position: relative;
    }

        .contact-section h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background-color: #00ffff;
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: #212121;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

    .contact-form input,
    .contact-form textarea {
        background-color: #333;
        border: 1px solid #444;
        color: #e0e0e0;
        padding: 15px;
        border-radius: 8px;
        font-size: 1em;
        transition: border-color 0.3s ease;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #00ffff;
            outline: none;
        }

    .contact-form button {
        cursor: pointer;
        border: none;
        padding: 15px;
        border-radius: 8px;
        font-size: 1.2em;
        font-weight: bold;
    }

#form-message {
    margin-top: 20px;
    font-weight: bold;
    color: #00ffff;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    color: #888;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navigation ul li {
        margin: 0 10px;
    }

    .hero-text h2 {
        font-size: 3em;
    }

    .about-content {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 15px 5%;
    }

    .logo-container {
        margin-bottom: 15px;
    }

    .navigation ul {
        flex-direction: column;
        text-align: center;
    }

        .navigation ul li {
            margin: 10px 0;
        }

    .social-media {
        margin-top: 15px;
    }

    .hero-text h2 {
        font-size: 2.5em;
    }

    .hero-text p {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.5em;
    }

    .hero-text h2 {
        font-size: 2em;
    }

    .hero-text p {
        font-size: 1em;
    }

    .about-section h2,
    .music-section h2,
    .contact-section h2 {
        font-size: 2em;
    }
}
