:root {
    --primary: #6A0DAD;
    --primary-light: #D16CFF;
    --background: #09090b;
    --foreground: #fafafa;
    --muted: #1c1c1c;
    --card: #18181b;
    --border: #27272a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

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

.mt-1 {
    margin-top: 1rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.color-primary {
    color: var(--primary);
}

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

.font-large {
    font-size: 150%;
}

.bold {
    font-weight: bold;
}

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

.gap-small {
    gap: .5rem;
}

.gap-medium {
    gap: 2rem;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    color: var(--foreground);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

h1 img {
    max-width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

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

a {
    color: var(--foreground);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

a:hover {
    color: white;
    opacity: 1;
}

#upload-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

.buttons-container > a {
    flex-grow: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('../images/header_bg.jpg') center/cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), rgba(239, 68, 68, 0.6));
    -webkit-background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1.5s infinite;
    color: var(--primary);
    font-size: 2rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background-color: var(--muted);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.image-grid.cols-1 { grid-template-columns: repeat(1, 1fr); }
.image-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.image-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.image-grid img {
    width: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 0.5rem;
}

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
}

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

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.video-item {
    position: relative;
    /*aspect-ratio: 16/9;*/
    overflow: hidden;
    border-radius: 0.5rem;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.audios-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 3rem;
}

.audios-container ol {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.audio-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.audio-item audio {
    /*width: 100%;*/
    /*height: 100%;*/
    /*object-fit: cover;*/
    /*transition: transform 0.5s;*/
}

/* Shows Section */
.shows-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

.show-card {
    background-color: var(--card);
    padding: 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border: 1px solid #27272a;
}

.show-card.outdated {
    filter: grayscale(100%);
    opacity: 0.5;
    border-color: rgba(255, 255, 255, 0.1);
    font-style: italic;
    font-size: smaller;
}

.show-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.show-date {
    font-weight: 500;
    width: 8rem;
}

.show-location {
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Section */
.contact-form {
    max-width: 32rem;
    margin: 0 auto 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    color: var(--foreground);
}

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

#contact-response-message {
    color: var(--primary-light);
}

#whatsapp-link:hover {
    filter: brightness(.9);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.5rem;
}

.social-links a {
    color: var(--foreground);
    opacity: 0.6;
    transition: opacity 0.2s;
}

.social-links a:hover {
    color: var(--primary);
    opacity: 1;
}

/* Button */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    vertical-align: middle;
}

.btn i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--primary-light);
}

button.btn {
    display: flex;
}

#musicians-container {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
}

.musician-container {
    background-color: var(--card);
    padding: 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.musician-image {
    flex: 0 0 30rem;
    height: 20rem;
    object-fit: cover;
    width: 100%;
}

.musician-content {
    flex: 1;
    padding: 2rem;
}

.musician-content h2 {
    text-align: center;
    font-size: x-large;
    display: flex;
    flex-direction: column;
}

.musician-content h2 > span {
    color: var(--primary-light);
    margin: 0 0.5rem;
}

.musician-content p {
    margin: .5rem 0;
}

@media (max-width: 768px) {
    .musician-container {
        flex-direction: column;
    }
    .musician-image {
        height: auto;
    }
}

/* Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
    }

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

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

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

    .show-card {
        flex-direction: column;
        text-align: center;
    }

    .show-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

