/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@300;500;700&display=swap');

:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #00f3ff; /* Cyan neon */
    --secondary-accent: #bc13fe; /* Purple neon */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 10px auto 0;
    box-shadow: 0 0 10px var(--accent-color);
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid #222;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 1.2rem;
}

.email-address {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Header / Banner */
header {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 50px; /* Offset for top bar */
}

.banner-content {
    z-index: 2;
    text-align: center;
}

.banner-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.banner-content p {
    font-size: 1.5rem;
    letter-spacing: 5px;
    color: #ccc;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--accent-color);
    }
    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #4d4dff, 0 0 40px var(--accent-color);
    }
}

/* Video Background */
#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.2), var(--bg-color));
    z-index: 1;
}

/* Sections */
section {
    padding: 80px 0;
}

/* About Section */
.about-section {
    background-color: #0a0a0a;
    position: relative;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: -10px 10px 0 var(--secondary-accent);
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.about-image img:hover {
    filter: grayscale(0%);
}

.about-text {
    flex: 1;
    min-width: 300px;
    font-size: 1.1rem;
}

/* Music Section */
.music-section {
    background-color: var(--bg-color);
}

.youtube-playlist {
    margin-bottom: 40px;
    text-align: center;
}

.youtube-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spotify-embeds {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.spotify-embeds iframe {
    border-radius: 12px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    z-index: -1;
    transition: left 0.3s ease;
}

.btn:hover {
    color: #000;
    box-shadow: 0 0 20px var(--accent-color);
}

.btn:hover::before {
    left: 0;
}

/* Footer */
footer {
    padding: 40px 0;
    background: #000;
    text-align: center;
    border-top: 1px solid #222;
}

/* Partner Section */
.partners-section {
    background-color: #080808;
    border-top: 1px solid #111;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px; /* Container slightly larger than image */
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.partner-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    transform: translateY(-5px);
}

.partner-item img {
    width: 100px;
    height: 100px;
    object-fit: contain; /* Ensures logos fit within the box without distortion */
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%) brightness(1);
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .top-bar {
        flex-direction: column;
        gap: 10px;
    }
}
