    @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    background: #000;
    color: #fff;
    font-family: "Quicksand", sans-serif;
}


/* =========================
   MAIN HEADER
========================= */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.55)
        ),
        url("images/drumsticks.png") center center / cover no-repeat;
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: clamp(15px, 3vw, 50px);

    padding: 25px 20px;

    z-index: 10;
}

.navbar a {
    color: white;
    text-decoration: none;

    font-size: clamp(10px, 1vw, 14px);
    font-weight: 500;

    letter-spacing: 3px;

    transition: opacity 0.25s ease;
}

.navbar a:hover {
    opacity: 0.55;
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 35px;

    padding: 20px;
}

.hero-content h1 {
    font-size: clamp(55px, 12vw, 180px);

    font-weight: 400;

    letter-spacing: clamp(8px, 2vw, 25px);

    line-height: 0.9;

    white-space: nowrap;
}


/* Explore Images */

.explore {
    color: white;

    text-decoration: none;

    font-size: clamp(12px, 1.2vw, 16px);

    letter-spacing: 5px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.7);

    padding-bottom: 8px;

    transition:
        opacity 0.25s ease,
        letter-spacing 0.25s ease;
}

.explore:hover {
    opacity: 0.6;
    letter-spacing: 7px;
}


/* =========================
   INTRO
========================= */

.intro {
    min-height: 350px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 60px 20px;
}

.intro h2 {
    font-size: clamp(30px, 5vw, 70px);

    font-weight: 300;

    letter-spacing: 10px;

    margin-bottom: 20px;
}

.intro p {
    font-size: 14px;

    letter-spacing: 3px;

    opacity: 0.65;
}


/* =========================
   GALLERY HEADER
========================= */

.gallery-header {
    position: relative;

    width: 100%;
    height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #000;

    border-bottom: 1px solid #222;
}

.gallery-title h1 {
    font-size: clamp(45px, 8vw, 100px);

    font-weight: 300;

    letter-spacing: 15px;
}


/* =========================
   IMAGE GALLERY
========================= */

.gallery {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 3px;

    background: #000;
}

.photo {
    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #111;
}

.photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}

.photo:hover img {
    transform: scale(1.04);
    opacity: 0.75;
}


/* =========================
   FOOTER
========================= */

footer {
    width: 100%;

    padding: 45px 20px;

    background: #000;

    text-align: center;
}

.footer-content {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 15px;
}

.footer-content p {
    font-size: 11px;

    letter-spacing: 2px;

    opacity: 0.6;
}

.footer-links {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    font-size: 10px;

    letter-spacing: 1.5px;
}

.footer-links a {
    color: white;

    text-decoration: none;

    opacity: 0.6;

    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links span {
    opacity: 0.3;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .hero {
        min-height: 500px;
    }

    .navbar {
        gap: 14px;

        padding: 20px 10px;
    }

    .navbar a {
        font-size: 9px;

        letter-spacing: 1.5px;
    }

    .hero-content h1 {
        white-space: normal;

        font-size: clamp(42px, 14vw, 80px);

        letter-spacing: 7px;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-header {
        height: 240px;
    }

    .gallery-title h1 {
        letter-spacing: 8px;
    }
}


@media (max-width: 420px) {

    .navbar {
        gap: 8px;
    }

    .navbar a {
        font-size: 8px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }
}
