/* 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: #333;
    background-color: #000;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.hidden {
    display: none !important;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: block;
    margin: 1rem auto 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    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: 70px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-link:hover {
    color: #4ecdc4;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #4ecdc4;
    transition: width 0.3s ease;
}

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ccc;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.lang-btn:hover {
    border-color: #4ecdc4;
    color: #4ecdc4;
}

.lang-btn.active {
    background: #4ecdc4;
    border-color: #4ecdc4;
    color: #000;
}

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

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

/* Hero Carousel Section */
.hero-carousel {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ff6b6b" stop-opacity="0.1"/><stop offset="100%" stop-color="%234ecdc4" stop-opacity="0.05"/></radialGradient></defs><circle cx="500" cy="500" r="500" fill="url(%23a)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.carousel-container {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.slide-text {
    color: #fff;
}

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-subtitle {
    font-size: 1.25rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.slide-description {
    font-size: 1.125rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
}

.slide-image {
    position: relative;
}

.slide-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.carousel-btn:hover {
    background: rgba(78, 205, 196, 0.3);
    transform: scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #4ecdc4;
    border-color: #4ecdc4;
}

.indicator:hover {
    border-color: #4ecdc4;
}

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



/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #4ecdc4;
}

.btn-secondary:hover {
    background: #4ecdc4;
    color: #000;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: #4ecdc4;
    color: #000;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: #fff;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Main intro section with image and first two paragraphs */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-text {
    color: #333;
}

.about-intro-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

/* Detail sections in 2x2 grid */
.about-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    border-left: 3px solid #4ecdc4;
}

.about-section h4 {
    color: #4ecdc4;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-section p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Override section title color for about and press sections */
.about .section-title,
.press .section-title {
    color: #333;
}

/* Music Section */
.music {
    padding: 8rem 0;
    background: #000;
}

/* Timeline */
.releases-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.timeline-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border-left: 4px solid #ff6b6b;
    position: relative;
}

.timeline-content .release-date {
    color: #ff6b6b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-content .release-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content .release-description {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.release-artwork-small {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
    width: 200px;
}

.release-artwork-small img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease;
}

.release-artwork-small img:hover {
    border-color: #ff6b6b;
}

.song-count {
    text-align: left;
    color: #888;
    font-size: 0.75rem;
    margin: 1rem 0 0.5rem 0;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Streaming Links */
.streaming-links {
    display: flex;
    gap: 1rem;
}

.streaming-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ccc;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.streaming-link:hover {
    color: #ff6b6b;
    transform: scale(1.1);
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: #111;
    text-align: center;
}

/* Responsive YouTube Iframe */
.youtube-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
}

.youtube-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.gallery-grid {
    display: grid;
    padding-top: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Press Section */
.press {
    padding: 8rem 0;
    background: #fff;
}

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

.quote {
    background: rgba(0, 0, 0, 0.05);
    padding: 2rem;
    border-radius: 20px;
}

.quote blockquote {
    color: #333;
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote cite {
    color: #4ecdc4;
    font-weight: 600;
}



/* Shows Section */
.shows {
    padding: 8rem 0;
    background: #111;
}

.shows-section {
    margin-bottom: 4rem;
}

.shows-section:last-child {
    margin-bottom: 0;
}

.shows-subtitle {
    color: #4ecdc4;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.shows-subtitle::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #4ecdc4;
    display: block;
    margin: 0.5rem auto 0;
}

.shows-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.show-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.show-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.show-item.past {
    opacity: 0.8;
}

.date {
    text-align: center;
    color: #4ecdc4;
    min-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.year {
    font-size: 0.8rem;
    opacity: 0.8;
}

.venue-info {
    flex: 1;
}

.venue-info h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.venue-info .venue {
    color: #4ecdc4;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.venue-info .location {
    color: #ccc;
    font-size: 0.9rem;
}

.show-status {
    display: flex;
    align-items: center;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.sold-out {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #000;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(78, 205, 196, 0.3);
}

.contact-header h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    color: #4ecdc4;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.contact-item i {
    color: #4ecdc4;
    font-size: 1.125rem;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.social-media {
    text-align: center;
}

.social-media h4 {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.social-links-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ccc;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links-contact a:hover {
    background: #4ecdc4;
    color: #000;
    transform: scale(1.1);
}

/* Downloads Section */
.downloads {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.downloads .section-title {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.downloads .section-title::after {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
}

.downloads-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

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

.download-item h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.download-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ccc;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #4ecdc4;
    color: #000;
    transform: scale(1.1);
}

.footer p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

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

    .language-switcher {
        margin-left: 0;
        margin-right: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .carousel-slide {
        padding: 0 1rem;
    }

    .carousel-nav {
        padding: 0 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Mobile order: photo first, then text */
    .about-intro {
        display: flex;
        flex-direction: column;
    }

    .about-intro .about-image {
        order: -1; /* Move image to top */
    }

    .about-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .downloads {
        padding: 3rem 0;
    }

    .downloads .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .downloads-grid {
        flex-direction: column;
        gap: 1rem;
    }

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



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

    .press-downloads {
        flex-direction: column;
        align-items: center;
    }

    .show-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .date {
        min-width: auto;
    }

    /* Music Section Mobile */
    .releases-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .timeline-content {
        padding: 2rem;
    }

    .release-artwork-small {
        float: none;
        margin-left: 0;
        margin-bottom: 1.5rem;
        width: 100%;
        text-align: center;
    }

    .release-artwork-small img {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .song-count {
        font-size: 0.7rem;
    }



    .streaming-links {
        justify-content: center;
    }
} 