/* Variables */
:root {
    --primary: #3299cd;
    --dark: #000000;
    --light: #ffffff;
    --grey: #808080;
}

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

/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    padding-top: 0; /* Remove offset for fixed nav */
}

/* Navigation */
.nav {
    display: flex;
    justify-content: flex-end; /* Align nav content to the right */
    align-items: center;
    padding: 1rem 2rem;
    background: none; /* No background at all */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-brand {
    text-decoration: none;
}

.nav-logo {
    height: 100px;
    width: auto;
    display: block;
    padding: 5px 0;
}

.nav-mobile {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
    background: transparent; /* Remove black background */
}

.nav-link {
    text-decoration: none;
    color: var(--grey);
    transition: color 0.3s;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 20;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 85vh;
    background-image: url('images/website/Header-new.webp');
    background-size: contain;
    background-position: center;
    color: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    background-repeat: no-repeat;
    background-color: var(--dark);
    margin-top: -100px; /* Pull hero up behind nav (nav height = 100px) */
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-white {
    background: transparent;
    border: 2px solid var(--light);
    color: var(--light);
}

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

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

.btn-primary:hover {
    background: #2b83aa;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
    position: relative;
    height: 5vh;
}

.features-with-bg {
    background: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.features-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.feature {
    text-align: center;
    position: relative;
    z-index: 1;
    color: var(--light);
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* About, Tech, and Contact Section Styles */
.about,
.tech,
.contact {
    background: #000;
    color: var(--light);
    padding: 4rem 2rem;
}

.about-container,
.tech-container,
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

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

.info-item {
    text-align: center;
    color: var(--light);
}

.info-item h3 {
    margin: 1rem 0;
    color: var(--primary);
}
/* Live Music Section */
.live-music {
    background: #000;
    color: var(--light);
    padding: 4rem 2rem;
}

.live-music-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Gallery */
.gallery {
    padding: 4rem 2rem;
    text-align: center;
    background: #000;
    overflow: hidden;
}

.gallery h2 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.gallery-container {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide {
    min-width: 100%;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.5rem;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

.slider-dots {
    text-align: center;
    margin-top: 1rem;
}

.slider-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
}

.slider-dot.active {
    background-color: var(--primary);
}

/* Footer */
.footer {
    background: #000;
    color: var(--light);
    padding: 4rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

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

.social-link {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--primary);
}

.footer-input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    background: #374151;
    border: none;
    border-radius: 0.25rem;
    color: var(--light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .features,
    .about-container,
    .tech-container,
    .contact-container,
    .gallery-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .nav {
        padding: 0.5rem 1rem;
        background: rgba(0,0,0,0.3); /* Slightly more opaque on mobile for readability */
    }

    .nav-mobile {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 5rem 2rem 2rem;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

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

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .nav-link {
        font-size: 1.25rem;
        color: var(--light);
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero {
        height: 50vh;
        background-size: contain;
        justify-content: flex-end;
        align-items: center;
        text-align: center;
        margin-top: 0;
    }

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

    .features-with-bg {
        background-size: cover;
    }

    .about-container,
    .tech-container,
    .contact-container {
        gap: 2rem;
    }

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

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

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