html {
    scroll-behavior: smooth;
}
:root {
    --gold: #D99000;
}
body {
    margin: 0;
    background: #050505;
    color: white;
    font-family: 'JetBrains Mono', monospace;
}

h1, h2, h3, .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 10;
}

.nav-logo {
    color: var(--gold);
    font-size: 26px;
    text-decoration: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--gold);
}

.hero {
    min-height: 100vh;
    padding-top: 120px;
    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.9)
        ),
        url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1600&q=80");

    background-size: cover;
    background-position: center;

    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(234,196,53,0.18), transparent 45%);
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.logo {
    width: 420px;
    max-width: 85%;
    margin-bottom: 35px;
}

.eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 115px;
    line-height: 0.85;
    margin: 0;
    color: white;
    text-shadow: 6px 6px 0px var(--gold);
}

.hero-text {
    color: white;
    font-size: 18px;
    margin-top: 25px;
}

.event-date {
    margin-top: 15px;
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}

.button {
    background: var(--gold);
    color: black;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 16px;
    display: inline-block;
    margin-top: 25px;
    border-radius: 999px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.button:hover {
    background: white;
    transform: translateY(-3px);
}

.section {
    padding: 100px 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid rgba(234, 196, 53, 0.15);
}

.section h2 {
    color: var(--gold);
    font-size: 55px;
    margin-bottom: 25px;
}

.section p {
    font-size: 18px;
    line-height: 1.7;
}

#about p {
    margin-bottom: 25px;
}

.cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 25px;
    overflow: hidden;
    flex: 1;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}


.card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.4s;
}


.card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}


.card h3 {
    font-size: 45px;
    color: white;
}


.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card h3 {
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 10px;
}

.card h3,
.card p {
    padding-left: 20px;
    padding-right: 20px;
}

.card p {
    padding-bottom: 25px;
    font-size: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

.tickets {
    background:
        linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)),
        url("https://images.unsplash.com/photo-1506157786151-b8491531f0631?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    max-width: none;
}

.tickets h2 {
    font-size: 70px;
}

.small-title {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 14px;
}

.footer {
    background: #050505;
    border-top: 1px solid #333;
    text-align: center;
    padding: 60px 20px;
}

.footer h2 {
    color: var(--gold);
    font-size: 42px;
}

.footer p {
    color: white;
}

.footer-links {
    margin-top: 25px;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    margin: 0 12px;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    margin-top: 30px;
    font-size: 12px;
    color: #777;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links a {
        margin: 0 8px;
        font-size: 13px;
    }

    .hero h1 {
        font-size: 70px;
    }

    .hero-text {
        font-size: 16px;
    }

    .event-date {
        font-size: 14px;
    }

    .cards {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 80px 25px;
    }
}
body::after {
    content: "";
    position: fixed;
    inset: 0;

    background-image:
        url("https://www.transparenttextures.com/patterns/asfalt-light.png");

    opacity: 0.08;
    pointer-events: none;
    z-index: 999;
}
.hero .logo,
.hero h1,
.hero-text,
.eyebrow,
.event-date,
.hero .button {
    opacity: 0;
    transform: translateY(30px);

    animation: fadeUp 1s ease forwards;
}


.hero .logo {
    animation-delay: 0.2s;
}

.eyebrow {
    animation-delay: 0.4s;
}

.hero h1 {
    animation-delay: 0.6s;
}

.hero-text {
    animation-delay: 0.8s;
}

.event-date {
    animation-delay: 1s;
}

.hero .button {
    animation-delay: 1.2s;
}


@keyframes fadeUp {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}
.lineup-list {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.lineup-item {
    display: grid;
    grid-template-columns: 70px 1fr 180px;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    text-align: left;
}

.lineup-item span {
    color: var(--gold);
    font-size: 14px;
}

.lineup-item h3 {
    font-size: 42px;
    margin: 0;
}

.lineup-item p {
    margin: 0;
    color: var(--gold);
    font-size: 14px;
    text-align: right;
}

@media (max-width: 768px) {
    .lineup-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lineup-item p {
        text-align: center;
    }
}
.event-card {
    margin-top: 60px;

    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;

    align-items: center;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 25px;

    padding: 30px;

    overflow: hidden;
}


.event-card img {
    width: 100%;
    border-radius: 20px;
}


.event-info h3 {
    font-size: 55px;
    margin: 10px 0;

    color: white;
}


@media (max-width: 768px) {

    .event-card {
        flex-direction: column;
        text-align: center;
    }


    .event-card img {
        width: 100%;
    }

}
.partners {
    padding: 80px 30px;
    text-align: center;
    background: #050505;
}


.partner-logos {
    margin-top: 40px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 80px;
}


.partner-logos img {
    max-width: 220px;
    max-height: 120px;

    object-fit: contain;

    filter: grayscale(100%);
    opacity: 0.75;

    transition: 0.3s;
}


.partner-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}


@media (max-width: 768px) {

    .partner-logos {
        flex-direction: column;
        gap: 40px;
    }

}