:root {
    --primary-color: #FF0080;
    --secondary-color: #00F0FF;
    --dark-bg: #0A0A0A;
    --darker-bg: #050505;
    --text-light: #FFFFFF;
    --text-gray: #B0B0B0;
    --accent-glow: rgba(255, 0, 128, 0.3);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation - Always Horizontal */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #000000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #000000;
    box-shadow: 0 4px 30px rgba(255, 0, 128, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo a {
    display: block;
}

.logo-image {
    height: 55px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 75px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 75px;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.3), rgba(0, 240, 255, 0.2));
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-logo-image {
    max-width: 500px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 0, 128, 0.3));
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 12vw, 140px);
    line-height: 0.9;
    letter-spacing: 8px;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-subtitle {
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0;
    opacity: 0.8;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s backwards;
}

.btn {
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    border: 2px solid;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
    background: transparent;
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--dark-bg);
}

.scroll-indicator {
    display: none;
}

.scroll-line {
    display: none;
}

/* Page Sections */
.page-section {
    min-height: calc(100vh - 180px);
    padding: 100px 0 30px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.section-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    letter-spacing: 4px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Biography Section */
.biography {
    background: var(--darker-bg);
}

.language-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.flag-img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 128, 0.1);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.lang-btn:hover::before {
    opacity: 1;
}

.lang-btn:hover .flag-img {
    transform: scale(1.1);
}

.lang-btn.active {
    background: rgba(255, 0, 128, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(255, 0, 128, 0.2);
}

.lang-btn.active::before {
    opacity: 1;
}

.bio-lang {
    animation: fadeIn 0.5s ease-in-out;
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.bio-image {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.bio-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.bio-image:hover img {
    transform: scale(1.05);
}

.bio-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.2), rgba(0, 240, 255, 0.2));
    mix-blend-mode: multiply;
}

.bio-text {
    padding-top: 20px;
}

.bio-intro {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--secondary-color);
    line-height: 1.6;
}

.bio-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 16px;
}

.bio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-gray);
}

/* Spotify Section */
.spotify {
    background: var(--darker-bg);
}

.spotify-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.spotify-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 35px;
}

.spotify-embed {
    margin-bottom: 40px;
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.event-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 0, 128, 0.2);
}

.event-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.event-status {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.event-status.past {
    background: rgba(255, 255, 255, 0.2);
}

.event-info {
    padding: 30px;
}

.event-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.event-date,
.event-location {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 5px;
}

/* Contact Section */
.contact {
    background: var(--darker-bg);
}

.contact-content-page {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-intro h3 {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-intro p {
    color: var(--text-gray);
    font-size: 18px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    align-self: center;
    cursor: pointer;
}

/* Social Media Section */
.social-media-section {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media-section h4 {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.social-icons-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-circle svg,
.social-icon-circle i {
    width: 24px;
    height: 24px;
}

.social-icon-circle:hover {
    border-color: var(--primary-color);
    background: rgba(255, 0, 128, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 15px 0 10px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-title {
    display: none;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-social-icon svg,
.footer-social-icon i {
    width: 28px;
    height: 28px;
}

.footer-social-icon:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0 5px 15px rgba(255, 0, 128, 0.4));
}

.footer p {
    color: var(--text-gray);
    font-size: 12px;
    margin-bottom: 3px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.7;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bio-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-number {
        font-size: 60px;
    }
    
    .section-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 10px 20px;
        flex-wrap: wrap;
    }

    .nav-menu {
        gap: 20px;
        font-size: 12px;
    }

    .nav-link {
        font-size: 12px;
    }

    .logo-image {
        height: 45px;
        max-width: 170px;
    }
    
    .hero-title {
        font-size: clamp(40px, 10vw, 80px);
    }
    
    .section-header {
        gap: 15px;
        margin-bottom: 50px;
    }
    
    .section-number {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .bio-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .language-selector {
        gap: 15px;
    }
    
    .lang-btn {
        width: 50px;
        height: 50px;
    }
    
    .flag-img {
        width: 30px;
        height: 30px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-section {
        padding: 100px 0 40px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
        margin-top: 10px;
    }
    
    .nav-link {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .bio-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .language-selector {
        gap: 12px;
    }
    
    .lang-btn {
        width: 45px;
        height: 45px;
    }
    
    .flag-img {
        width: 28px;
        height: 28px;
    }
    
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-icon-circle {
        width: 50px;
        height: 50px;
    }
}
