/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;800&family=Space+Grotesk:wght@300;400;600&display=swap');

:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;

    --acid-orange: #ff9933;
    --acid-pink: #ff3399;
    --acid-purple: #9d00ff;

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    --font-titles: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(157, 0, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 140, 0, 0.05) 0%, transparent 40%);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-titles);
    text-transform: uppercase;
    font-weight: 700;
}

a {
    transition: opacity 0.3s ease;
    text-decoration: none;
    color: inherit;
}

a:hover {
    opacity: 0.8;
    color: var(--acid-orange);
}

/* Utilities */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Increased Section Spacing */
section {
    padding: 10rem 0;
    /* Increased more for visual separation */
}

/* Titles: More space around them */
.section-title {
    font-size: 3rem;
    margin-bottom: 6rem;
    /* More space below title */
    margin-top: 3rem;
    /* More space above title */
    text-align: center;
    background: linear-gradient(135deg, var(--acid-purple), var(--acid-pink), var(--acid-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.95;
    letter-spacing: 1px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lang-switch {
    background: none;
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 0.3rem 0.8rem;
    cursor: pointer;
    border-radius: 20px;
}

.lang-switch:hover {
    border-color: var(--acid-orange);
    color: var(--acid-orange);
}

/* Hero */
#home {
    min-height: 100vh;
    /* Fallback for mobile browsers */
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    /* Removed 'fixed' to allow image to adapt naturally to screen size (better on mobile) */
    background: url('img/szmy.jpg') center center no-repeat;
    background-size: cover;
    overflow: hidden;
}

#home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    will-change: transform;
}

.hero-logo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 0 50px rgba(255, 153, 51, 0.25);
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

#hero-title {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
    background: linear-gradient(90deg, #fff, #ffccaa, #ff9933, #fff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 6s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

#hero-subtitle {
    font-size: 1.2rem;
    color: #ff9933;
    margin-top: 0.5rem;
    letter-spacing: 4px;
}

/* Bio */
.bio-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.bio-img-container {
    flex: 0 0 250px;
    /* Fixed width for image container */
}

.bio-img-container img {
    width: 100%;
    border-radius: 50%;
    /* Circle profile picture for better integration */
    filter: sepia(30%) contrast(110%) hue-rotate(-10deg);
    transition: filter 0.5s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    aspect-ratio: 1/1;
    object-fit: cover;
}

.bio-img-container img:hover {
    filter: none;
}

.bio-text {
    flex: 1;
}

.bio-text p {
    margin-bottom: 1.5rem;
    color: #eee;
    font-size: 1.15rem;
    line-height: 1.9;
}

/* Music */
.music-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

/* Video */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Live */
.live-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.live-card {
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.live-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--acid-orange);
}

.live-card h4 {
    margin-top: 2rem;
    font-size: 1rem;
    color: #fff;
    opacity: 0.9;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.live-card ul {
    margin-top: 1rem;
}

.live-card li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #ccc;
}

.live-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--acid-pink);
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 5rem;
    margin-top: 3rem;
}

.contact-email {
    /* Fluid size: min 1rem, preferred 4vw, max 1.5rem */
    font-size: clamp(1rem, 5vw, 1.5rem);
    font-family: var(--font-titles);
    margin-bottom: 2.5rem;
    display: block;
    text-align: center;
    color: #fff;
    font-weight: 700;
    transition: color 0.3s;
    word-break: break-all;
    /* Ensures it doesn't overflow on very small screens */
}

.contact-email:hover {
    color: var(--acid-orange);
}

.socials {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.socials a {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 800px) {
    .bio-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .live-cols,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 2.5rem;
    }

    #hero-title {
        font-size: 3rem;
    }
}