.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: white;

    border-bottom: 1px solid #eee;
}

.header-inner {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 0;
}

.logo {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #111;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo span {
    font-size: 1.3rem;
    font-weight: 700;
}

nav {
    display: flex;
    gap: 30px;
}

nav a:hover {
    opacity: .7;
}

.hero {

    min-height: 80vh;

    background-image: url('/img/festivalhome.jpg');

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    position: relative;
}



.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.35)
    );

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

.hero-content {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;
}

.hero-logo {
    width: 50em;
    margin-bottom: 25px;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.2rem;
}

.intro {
    padding: 80px 0;

    text-align: center;

    line-height: 1.8;
}

.cta {
    padding: 80px 0;

    text-align: center;
}

.site-footer {
    margin-top: 80px;

    background: #111;

    color: white;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));

    gap: 40px;

    padding: 60px 0;
}

.footer-grid h3 {
    margin-top: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);

    text-align: center;

    padding: 20px;
}

@media (max-width: 768px) {

    .header-inner {

        flex-direction: column;

        gap: 20px;
    }

    nav {

        flex-wrap: wrap;

        justify-content: center;
    }

    .hero {

        min-height: 450px;
    }

    .hero-logo {

        width: 18em;
    }

    .hero h1 {

        font-size: 2.5rem;
    }
}
