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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #111;
    color: #f5f5f5;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: "Manrope", sans-serif;
}


/* Navigation */

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 5%;
    z-index: 100;

    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

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

.logo {
    color: white;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    letter-spacing: 2px;

    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.7;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;

    position: relative;

    transition: 0.2s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: white;

    transition: width 0.2s ease;
}

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

.menu-toggle {
    display: none;

    background: none;
    border: none;

    color: white;
    font-size: 2rem;

    cursor: pointer;
}

/* Hero */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 120px 10%;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.75)
        ),
        url("../images/hero.jpg");

    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
    transform: translateY(200px);
}

.eyebrow {
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.85;
    letter-spacing: -5px;
}

.hero-description {
    margin-top: 30px;
    font-size: 1.2rem;
    max-width: 500px;
}


/* Buttons */

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

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

    width: 50px;
    height: 50px;

    background: white;
    color: black;

    text-decoration: none;

    border: 1px solid white;

    transition: 0.2s;
}

.button-outline {
    background: transparent;
    color: white;
}

.hero-buttons i {
    font-size: 1.3rem;
    transition: 0.2s;
}

.button:hover {
    transform: translateY(-3px);
}

.button:hover i {
    transform: scale(1.1);
}

/* Sections */

.section {
    padding: 120px 10%;
    max-width: 1400px;
    margin: auto;
}

.section h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 30px;
}

.section > p {
    max-width: 850px;
}



/* Projects */

.projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.project {
    border: 1px solid #444;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.project:hover {
    transform: translateY(-5px);
}

.project img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project:hover img {
    transform: scale(1.03);
}
.project-content {
    padding: 30px;
}

.project-type {
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.project h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.project-links {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.project-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border: 1px solid #555;

    color: white;
    text-decoration: none;

    transition: 0.2s;
}

.project-links i {
    font-size: 1.1rem;
}

.project-links a:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
}

/* Gallery */

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

.gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.02);
}


/* Lightbox */

.lightbox {
    display: none;

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.9);

    z-index: 1000;

    align-items: center;
    justify-content: center;

    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;

    object-fit: contain;
}


.lightbox-close {
    position: absolute;

    top: 25px;
    right: 35px;

    background: none;
    border: none;

    color: white;

    font-size: 3rem;

    cursor: pointer;
}

/* Video */

.video-heading {
    margin-top: 100px;
}

.video-container {
    width: 100%;
    margin-top: 40px;
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* Shows */

.shows-list {
    margin-top: 50px;
}

.show {
    display: flex;

    gap: 50px;

    padding: 40px 0;

    border-bottom: 1px solid #444;
}

.show-date {
    width: 120px;

    display: flex;
    flex-direction: column;
}

.show-day {
    font-size: 4rem;
    font-weight: bold;
    line-height: 0.9;
}

.show-month {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 8px;
}

.show-info {
    flex: 1;
}

.show-type {
    font-size: 0.75rem;
    letter-spacing: 2px;

    margin-bottom: 8px;
}

.show-info h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.show-venue {
    margin-bottom: 20px;
}

.show-button {
    display: inline-block;

    padding: 10px 18px;

    border: 1px solid #555;

    color: white;
    text-decoration: none;

    font-size: 0.85rem;

    transition: 0.2s ease;
}

.show-button:not(.coming-soon):hover {
    background: white;
    color: black;
    transform: translateY(-3px);
}

.coming-soon {
    cursor: default;
    opacity: 0.7;
}

/* Footer */

footer {
    padding: 40px 10%;
    border-top: 1px solid #333;
}

/* Music */

.music-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.music-link {
    display: block;

    padding: 40px;

    border: 1px solid #444;

    color: white;
    text-decoration: none;

    transition: 0.2s;
}

.music-link h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.music-link:hover {
    background: #222;
}
/* Contact */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;

    margin-top: 50px;
}

.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}


/* Contact Form */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;

    background: #111;
    color: white;

    border: 1px solid #444;

    font-family: "Inter", sans-serif;
    font-size: 1rem;

    outline: none;

    transition: border 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: white;
}

.form-group textarea {
    resize: vertical;
}

.form-button {
    align-self: flex-start;

    padding: 12px 25px;

    background: white;
    color: black;

    border: 1px solid white;

    font-size: 1rem;

    cursor: pointer;

    transition: 0.2s ease;
}

.form-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}
/* Mobile */

@media (max-width: 700px) {

    h1 {
        letter-spacing: 2px;
    }

    .nav-links {
        display: none;

        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;

        background: rgba(0, 0, 0, 0.95);

        flex-direction: column;
        padding: 20px;
    }

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

    .menu-toggle {
        display: block;
    }

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

    .show {
    flex-direction: column;
    gap: 20px;
}

.show-date {
    width: auto;
}

.show-day {
    font-size: 3rem;
}

    .music-links {
        grid-template-columns: 1fr;
    }

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

.gallery img {
    height: 350px;
}
.contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
}



}
