/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #0d0d0d;
    color: #fff;
    line-height: 1.6;
}

/* HEADER */
header {
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

header .logo {
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: bold;
    color: #8a6aff; /* blueish purple */
    text-shadow: 1px 1px 4px rgba(138, 106, 255, 0.5); /* subtle shadow */
}

header nav a {
    color: #fff;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s ease;
}

header nav a:hover {
    color: #8a6aff; /* blueish purple hover */
}

/* HERO VIDEO SECTION */
.video-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.hero-video {
    width: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

/* HERO TEXT SECTION */
.hero {
    text-align: center;
    margin: 50px auto;
    max-width: 800px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #8a6aff;
    text-shadow: 2px 2px 6px rgba(138, 106, 255, 0.5); /* subtle shadow */
}

.hero p {
    font-size: 18px;
    color: #cccccc;
}

/* SECTION STYLING */
section {
    padding: 60px 40px;
    max-width: 1100px;
    margin: auto;
}

section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    color: #8a6aff;
    text-shadow: 1px 1px 4px rgba(138, 106, 255, 0.5); /* subtle shadow */
}

/* ABOUT BOX */
.about-box {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.about-box:hover {
    box-shadow: 0 0 20px #8a6aff; /* white glow hover */
}

/* CARDS */
.cards {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    width: 300px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #8a6aff; /* white glow hover */
}

/* MUSIC SECTION */
#music {
    text-align: center;
}

.music-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

/* SPOTIFY EMBED */
.spotify-embed {
    border-radius: 15px;
    overflow: hidden;
}

/* CONTACT SECTION */
#contact {
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    text-align: center;
    background: #111;
    border-radius: 15px;
}

#contact p {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
}

/* Moving diagonal bars behind contact text */
#contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.03) 0,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.01) 10px,
        rgba(255,255,255,0.01) 20px
    );
    pointer-events: none;
    animation: moveBars 8s linear infinite;
    z-index: 1;
}

@keyframes moveBars {
    0% { background-position: 0 0; }
    100% { background-position: 200px 0; }
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    margin-top: 50px;
    color: #8a6aff; /* blueish purple text */
    text-shadow: 1px 1px 4px rgba(138, 106, 255, 0.5); /* subtle shadow */
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        padding: 15px 25px;
    }

    header nav a {
        margin-left: 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .music-grid {
        flex-direction: column;
    }
}

