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

:root {
    --reggae-green: #00c853;
    --reggae-yellow: #ffd600;
    --reggae-red: #d32f2f;
    --primary-dark: #0a0a0a;
    --primary-light: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #1a1a1a;
    --text-gray: #6b7280;
}

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

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

/* WebGL Background */
#webgl-canvas,
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

#webgl-canvas {
    z-index: -2;
}

#particles-canvas {
    z-index: -1;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-family: 'Righteous', cursive;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--reggae-red) 0%, var(--reggae-yellow) 50%, var(--reggae-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--reggae-red), var(--reggae-yellow), var(--reggae-green));
    transition: width 0.3s;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary-light);
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.85) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 214, 0, 0.3);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-family: 'Righteous', cursive;
    font-size: 120px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--reggae-red) 0%, var(--reggae-yellow) 50%, var(--reggae-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: glow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 40px rgba(255, 214, 0, 0.6));
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 30px rgba(255, 214, 0, 0.5))
                drop-shadow(0 0 50px rgba(0, 200, 83, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 50px rgba(255, 214, 0, 0.8))
                drop-shadow(0 0 70px rgba(211, 47, 47, 0.5));
    }
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 48px;
    letter-spacing: 2px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--reggae-red), var(--reggae-yellow));
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 214, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 50px rgba(255, 214, 0, 0.7),
                0 0 80px rgba(0, 200, 83, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 214, 0, 0.5),
                    0 0 40px rgba(211, 47, 47, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 214, 0, 0.7),
                    0 0 60px rgba(0, 200, 83, 0.5);
    }
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--reggae-green);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--reggae-yellow);
    border-bottom: 2px solid var(--reggae-yellow);
    transform: rotate(-45deg);
}

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

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--reggae-red), var(--reggae-yellow), var(--reggae-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Righteous', cursive;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 16px auto 0;
}

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

/* About Section */
.about {
    background: rgba(249, 250, 251, 0.95);
    backdrop-filter: blur(10px);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 48px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.value-item {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.4s;
}

.value-item:nth-child(1):hover { border-color: var(--reggae-red); }
.value-item:nth-child(2):hover { border-color: var(--reggae-yellow); }
.value-item:nth-child(3):hover { border-color: var(--reggae-green); }

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-item h3 {
    font-family: 'Righteous', cursive;
    font-size: 20px;
    margin-bottom: 8px;
}

.value-item p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Music Section */
.music {
    background: transparent;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.music-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.music-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--reggae-yellow);
    box-shadow: 0 20px 60px rgba(255, 214, 0, 0.3),
                0 0 80px rgba(0, 200, 83, 0.2);
}

.music-image {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    background: linear-gradient(135deg, var(--reggae-red) 0%, var(--reggae-yellow) 50%, var(--reggae-green) 100%);
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 64px;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s;
    opacity: 0;
}

.music-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.music-info {
    padding: 24px;
}

.music-title {
    font-family: 'Righteous', cursive;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.music-meta {
    font-size: 14px;
    color: var(--text-gray);
}

/* Events Section */
.events {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    color: var(--primary-light);
}

.events .section-label {
    background: linear-gradient(90deg, var(--reggae-red), var(--reggae-yellow), var(--reggae-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.events .section-title {
    color: var(--primary-light);
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 214, 0, 0.2);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 24px;
    transition: all 0.4s;
}

.event-card:hover {
    border-color: var(--reggae-yellow);
    box-shadow: 0 20px 60px rgba(255, 214, 0, 0.2);
    transform: translateY(-8px);
}

.event-date {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--reggae-red), var(--reggae-yellow));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.event-date .month {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-date .day {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Righteous', cursive;
}

.event-details {
    flex: 1;
}

.event-title {
    font-family: 'Righteous', cursive;
    font-size: 22px;
    margin-bottom: 8px;
}

.event-location {
    color: var(--reggae-yellow);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.event-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.event-btn {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.event-btn:hover {
    background: var(--reggae-green);
    border-color: var(--reggae-green);
}

/* Gallery Section */
.gallery {
    background: rgba(249, 250, 251, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cta {
    text-align: center;
}

/* Contact Section */
.contact {
    background: var(--primary-dark);
    color: var(--primary-light);
}

.contact .section-title {
    color: var(--primary-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 24px 0 40px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--reggae-red), var(--reggae-yellow));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.method-details h4 {
    font-family: 'Righteous', cursive;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.method-details p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    transition: all 0.3s;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--reggae-red), var(--reggae-yellow), var(--reggae-green));
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 214, 0, 0.4);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(255, 214, 0, 0.2);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--primary-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--primary-light);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--reggae-yellow);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 214, 0, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-submit.loading .btn-text {
    opacity: 0.5;
}

.btn-submit.loading .btn-loader {
    display: inline-block;
}

.form-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(0, 200, 83, 0.2);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: var(--reggae-green);
}

.form-status.error {
    display: block;
    background: rgba(211, 47, 47, 0.2);
    border: 1px solid rgba(211, 47, 47, 0.3);
    color: var(--reggae-red);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--primary-light);
    text-align: center;
    padding: 60px 24px 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h3 {
    font-family: 'Righteous', cursive;
    font-size: 24px;
    background: linear-gradient(90deg, var(--reggae-red), var(--reggae-yellow), var(--reggae-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

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

.footer-quote {
    max-width: 400px;
    text-align: right;
}

.footer-quote p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-quote span {
    font-size: 14px;
    color: var(--reggae-yellow);
    font-weight: 600;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-light);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    section {
        padding: 60px 0;
    }

    .hero-cta {
        flex-direction: column;
        gap: 16px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .events-list {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-quote {
        text-align: center;
    }
}
