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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080808;
    color: #ffffff;
}


/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 80px;

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

    padding: 0 6%;

    background: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(15px);

    z-index: 1000;
}

.logo {
    color: white;
    text-decoration: none;

    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo span {
    color: #ff3b30;
}

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

nav a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

nav a:hover {
    color: white;
}

.menu-button {
    display: none;
}


/* HERO */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    position: relative;

    padding: 120px 8% 80px;

    background-image: url("images/hero.jpg");
    background-size: cover;
    background-position: center;
}

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

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.95) 0%,
            rgba(0,0,0,0.7) 45%,
            rgba(0,0,0,0.2) 100%
        );
}

.hero-content {
    position: relative;
    max-width: 850px;
    z-index: 2;
}

.eyebrow {
    color: #ff3b30;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 4px;

    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(55px, 9vw, 120px);
    line-height: 0.85;

    letter-spacing: -5px;
}

.hero h1 span {
    color: #ff3b30;
}

.hero-text {
    margin-top: 35px;

    color: #aaa;

    max-width: 520px;

    font-size: 18px;
    line-height: 1.7;
}


/* BUTTON */

.button {
    display: inline-block;

    margin-top: 35px;
    padding: 16px 28px;

    background: #ff3b30;
    color: white;

    text-decoration: none;

    font-weight: bold;

    transition: 0.2s;
}

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


/* GALLERY */

.gallery-section {
    padding: 120px 6%;
}

.section-heading p {
    color: #ff3b30;

    font-size: 12px;
    letter-spacing: 4px;
}

.section-heading h2 {
    font-size: clamp(40px, 6vw, 80px);

    margin-top: 10px;
}


/* FILTER */

.filters {
    margin: 40px 0;

    display: flex;
    gap: 10px;
}

.filter {
    border: 1px solid #333;

    background: transparent;
    color: #aaa;

    padding: 10px 18px;

    cursor: pointer;
}

.filter:hover,
.filter.active {
    background: white;
    color: black;
}


/* IMAGES */

.gallery {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    cursor: pointer;

    min-height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.image-info {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 60px 25px 25px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,0.9)
        );
}

.image-info span {
    color: #ff3b30;

    font-size: 11px;
    letter-spacing: 3px;
}

.image-info h3 {
    margin-top: 8px;
    font-size: 24px;
}


/* ABOUT */

.about {
    min-height: 70vh;

    display: flex;
    align-items: center;

    padding: 100px 8%;

    background: #111;
}

.about div {
    max-width: 700px;
}

.about h2 {
    font-size: 60px;
    margin-bottom: 30px;
}

.about p:not(.eyebrow) {
    color: #aaa;

    font-size: 18px;
    line-height: 1.8;

    margin-bottom: 15px;
}


/* CONTACT */

.contact {
    text-align: center;

    padding: 150px 20px;
}

.contact h2 {
    font-size: clamp(45px, 7vw, 90px);
}

.contact h2 span {
    color: #ff3b30;
}

.contact > p:not(.eyebrow) {
    color: #aaa;

    margin-top: 25px;
}


/* FOOTER */

footer {
    padding: 40px 6%;

    border-top: 1px solid #222;

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

footer p {
    color: #666;
    font-size: 13px;
}


/* LIGHTBOX */

.lightbox {
    position: fixed;
    inset: 0;

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

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

    padding: 30px;

    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

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

    object-fit: contain;
}

.lightbox button {
    position: absolute;

    top: 25px;
    right: 35px;

    background: transparent;
    border: none;

    color: white;

    font-size: 45px;

    cursor: pointer;
}


/* MOBILE */

@media (max-width: 750px) {

    header {
        height: 65px;
    }

    nav {
        position: absolute;

        top: 65px;
        left: 0;

        width: 100%;

        background: #080808;

        padding: 25px;

        display: none;
        flex-direction: column;
    }

    nav.open {
        display: flex;
    }

    .menu-button {
        display: block;

        background: none;
        border: none;

        color: white;
        font-size: 25px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

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

    .gallery-item {
        min-height: 300px;
    }

    footer {
        flex-direction: column;
        gap: 15px;
    }
}
