/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #080e1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo .logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #c85a00, #1e3a5f, #8a9ab0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #c85a00;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #080e1a 0%, #0d1b2a 50%, #152238 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(200, 90, 0, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-name {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #c85a00, #1e3a5f, #8a9ab0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #c85a00;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #c85a00, #1e3a5f);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 90, 0, 0.35);
}

.btn-outline {
    background: transparent;
    color: #c85a00;
    border: 2px solid #c85a00;
}

.btn-outline:hover {
    background: #c85a00;
    color: #080e1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 90, 0, 0.35);
}

/* Audio Visualizer */
.audio-visualizer {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: end;
    gap: 4px;
    height: 60px;
}

.visualizer-bar {
    width: 4px;
    background: linear-gradient(to top, #c85a00, #8a9ab0);
    border-radius: 2px;
    animation: visualize 1s ease-in-out infinite alternate;
    animation-delay: var(--delay);
}

@keyframes visualize {
    0% { height: 10px; }
    100% { height: 50px; }
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(138, 154, 176, 0.4); }
    to   { text-shadow: 0 0 30px rgba(200, 90, 0, 0.7); }
}

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

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #c85a00, #8a9ab0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #c85a00, #8a9ab0);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0d1b2a 0%, #152238 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #c85a00;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    width: 300px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed #c85a00;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c85a00;
    font-weight: 600;
    margin: 0 auto;
}

/* Music Section */
.music {
    background: #080e1a;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.track-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 154, 176, 0.15);
}

.track-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(200, 90, 0, 0.2);
    border-color: #c85a00;
}

/* SoundCloud embed cards */
.track-embed-card {
    padding: 0;
    overflow: hidden;
}

.track-embed-card iframe {
    display: block;
    border-radius: 20px 20px 0 0;
}

.track-embed-card .track-info {
    padding: 1rem 1.5rem 1.5rem;
}

/* Loading skeleton */
.track-loading {
    min-height: 360px;
}

.loading-bar {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border-radius: 15px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.03) 25%,
        rgba(138,154,176,0.08) 50%,
        rgba(255,255,255,0.03) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.track-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.track-genre {
    color: #8a9ab0;
    font-size: 0.9rem;
}

.music-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.platform-link {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 154, 176, 0.25);
}

.platform-link:hover {
    background: linear-gradient(135deg, #c85a00, #8a9ab0);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 90, 0, 0.25);
    border-color: transparent;
}

/* Events Section */
.events {
    background: linear-gradient(135deg, #0d1b2a 0%, #152238 100%);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 154, 176, 0.15);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(200, 90, 0, 0.18);
    border-color: #c85a00;
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.date-day {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #c85a00;
}

.date-month {
    display: block;
    font-size: 0.9rem;
    color: #8a9ab0;
    text-transform: uppercase;
}

.event-details {
    flex: 1;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.event-venue {
    color: #c85a00;
    margin-bottom: 0.25rem;
}

.event-time {
    color: #8a9ab0;
    font-size: 0.9rem;
}

.event-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #c85a00, #1e3a5f);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.event-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 90, 0, 0.35);
}

/* Contact Section */
.contact {
    background: #080e1a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #c85a00;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-label {
    display: inline-block;
    width: 80px;
    color: #8a9ab0;
    font-weight: 500;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #c85a00;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 154, 176, 0.25);
}

.social-link:hover {
    background: linear-gradient(135deg, #c85a00, #8a9ab0);
    transform: translateY(-2px);
    border-color: transparent;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(138, 154, 176, 0.25);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #5a6a7a;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c85a00;
    background: rgba(200, 90, 0, 0.06);
}

/* Footer */
.footer {
    background: #050b14;
    padding: 40px 0;
    border-top: 1px solid rgba(138, 154, 176, 0.15);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo .logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c85a00, #8a9ab0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: #5a6a7a;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(8, 14, 26, 0.97);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-name {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

    .hero-name {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .tracks-grid {
        grid-template-columns: 1fr;
    }

    .music-links {
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }
}
