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

body {
    @import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;700&family=Russo+One&display=swap');
    font-family: 'Fredoka', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    background-color: #000;
    border-bottom: 2px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    font-family: 'Russo One', sans-serif;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link.active {
    background-color: #c41e3a;
    color: #fff;
}

.nav-link:hover:not(.active) {
    color: #ccc;
    transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 2px solid #333;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 0, 0, 0.3);
    font-family: 'Russo One', sans-serif;
}

.hero p {
    font-size: 1.5rem;
    color: #ccc;
}

.content {
    padding: 2rem;
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #bbb;
}

.image-container {
    margin: 2rem 0;
    text-align: center;
}

.splash-image {
    max-width: 100%;
    height: auto;
}

.splash-image.inverted {
    filter: invert(1);
}

.content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

/* Music Grid */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.music-item {
    background-color: #111;
    padding: 2rem;
    border: 2px solid #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.music-item:hover {
    border-color: #c41e3a;
    transform: translateY(-5px);
}

.music-item h3 {
    color: #c41e3a;
    margin-bottom: 1rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.gallery-placeholder {
    background-color: #222;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #888;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-placeholder {
    background-color: #333;
    border-color: #c41e3a;
    color: #c41e3a;
}

/* Tabs for gallery */
.tabs {
    margin-top: 2rem;
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tab-button {
    background-color: #000;
    color: #fff;
    border: 1px solid #333;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-button.active {
    background-color: #c41e3a;
    color: #fff;
    border-color: #c41e3a;
}

.tab-button:hover:not(.active) {
    background-color: #111;
}

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

.tab-image-wrapper {
    position: relative;
    display: inline-block;
}

.tab-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    cursor: zoom-in;
}

.tab-image-wrapper::after {
    content: '→ Click to view next';
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.tab-image-wrapper:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
}
.lightbox.open {
    display: flex;
}
.lb-image-wrap {
    max-width: 92%;
    max-height: 92%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-image {
    max-width: 100%;
    max-height: 100%;
    display: block;
}
.lb-close, .lb-prev, .lb-next {
    position: absolute;
    background: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.15s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { transform: scale(1.08); }
.lb-close { top: 18px; right: 18px; font-size: 2.4rem; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); font-size: 3rem; }

@media (max-width: 600px) {
    .lb-prev, .lb-next { font-size: 2rem; left: 8px; right: 8px; }
    .lb-close { font-size: 2rem; top: 12px; right: 12px; }
}


/* Contact Form */
.contact-form {
    background-color: #111;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 2px solid #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #222;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c41e3a;
    background-color: #2a2a2a;
    box-shadow: 0 0 5px rgba(196, 30, 58, 0.3);
}

.submit-btn {
    background-color: #c41e3a;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #a01830;
    transform: scale(1.05);
}

.contact-info {
    background-color: #111;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #333;
    margin-top: 2rem;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin: 0.5rem 0;
}

/* Footer */
.footer {
    background-color: #111;
    text-align: center;
    padding: 2rem;
    border-top: 2px solid #333;
    margin-top: 3rem;
    color: #888;
}

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

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000;
        border-bottom: 2px solid #333;
        gap: 0;
        width: 100%;
    }

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

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid #333;
    }

    .nav-container {
        padding: 1rem;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .container {
        padding: 1rem;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.3rem;
    }

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

    .hero p {
        font-size: 0.9rem;
    }

    .content h2 {
        font-size: 1.3rem;
    }

    .content p {
        font-size: 0.95rem;
    }

    .hamburger span {
        width: 20px;
    }
}
