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

body {
    font-family: Arial, sans-serif;
    background: white;
    color: #111;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

/* HEADER */

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
}

.logo img {
    height: 60px;
}

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

/* HERO */

.hero {
    margin-top: 100px;
    position: relative;
    width: 100%;
    background: black;
}

.hero img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-text {
    position: absolute;
    right: 80px;
    bottom: 170px;
    color: white;
    transform: scale(0.88);
    transform-origin: bottom right;
}

.hero-text h1 {
    font-size: 70px;
    max-width: 600px;
    text-align: right;
}

/* ABOUT */

.about {
    padding: 120px 80px;
}

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

.about p {
    max-width: 700px;
    font-size: 20px;
    line-height: 1.7;
}

/* ALBUM BLOCKS */

.album-block {
    position: relative;
    display: block;
    height: 100vh;
    overflow: hidden;
}

.album-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.album-block:hover img {
    transform: scale(1.05);
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-overlay h2 {
    color: white;
    font-size: 80px;
    letter-spacing: 3px;
}

/* ALBUM PAGE */

.album-page {
    padding: 120px 80px 80px;
}

.album-page h1 {
    font-size: 60px;
    text-align: center;
    margin-bottom: 35px;
    margin-top: -20px;
}

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

.album-gallery img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
    image-rendering: auto;
    content-visibility: auto;
}

.album-gallery img:hover {
    opacity: 0.9;
}

/* LIGHTBOX */

#lightbox {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.97);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

#lightbox.active {
    display: flex;
}

#lightbox img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}

/* CONTACT */

.contact {
    padding: 120px 80px;
}

.contact h2 {
    margin-bottom: 30px;
    font-size: 50px;
}

.contact p {
    margin-bottom: 20px;
    font-size: 20px;
}

.contact a {
    font-size: 24px;
}

/* FOOTER */

footer {
    width: 100%;
    padding: 35px 60px;
    border-top: 1px solid rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    background: white;
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-center {
    gap: 15px;
}

.footer-right svg {
    width: 30px;
    height: 30px;
    display: block;
    transition: opacity 0.3s ease;
}

.footer-right a:hover svg {
    opacity: 0.5;
}

footer a:hover {
    opacity: 0.5;
}

/* TABLET / MOBILE */

@media (max-width: 900px) {

    header {
        height: 80px;
        padding: 0 25px;
    }

    .logo img {
        height: 42px;
    }

    nav {
        gap: 20px;
    }

    nav a {
        font-size: 12px;
        letter-spacing: 1px;
    }

    /* HERO */

    .hero {
        margin-top: 80px;
    }

    .hero-text {
        right: 20px;
        bottom: 50px;
        transform: scale(0.75);
        transform-origin: bottom right;
    }

    .hero-text h1 {
        font-size: 49px;
        max-width: 420px;
        text-align: right;
    }

    /* ABOUT */

    .about {
        padding: 70px 25px;
    }

    .about h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .about p {
        font-size: 17px;
        line-height: 1.6;
    }

    /* HOMEPAGE ALBUMS */

    .album-block {
        height: 42vh;
    }

    .album-overlay h2 {
        font-size: 42px;
        letter-spacing: 2px;
        text-align: center;
        padding: 0 20px;
    }

    /* ALBUM PAGES */

    .album-page {
        padding: 90px 20px 40px;
    }

    .album-page h1 {
        font-size: 36px;
        margin-top: 0;
        margin-bottom: 25px;
    }

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

    /* CONTACT */

    .contact {
        padding: 70px 25px;
    }

    .contact h2 {
        font-size: 34px;
    }

    .contact p {
        font-size: 17px;
    }

    .contact a {
        font-size: 18px;
    }

    /* FOOTER */

    footer {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        text-align: center;
    }

    .footer-left,
    .footer-center {
        flex-direction: column;
        gap: 10px;
    }

    .footer-center span {
        display: none;
    }

    .footer-right {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

/* SMALL PHONES */

@media (max-width: 600px) {

    .hero-text {
        right: 10px;
        bottom: 30px;
        transform: scale(0.58);
    }

    .hero-text h1 {
        font-size: 42px;
        max-width: 340px;
    }

    .album-block {
        height: 35vh;
    }

    .album-overlay h2 {
        font-size: 30px;
    }

    .album-gallery {
        grid-template-columns: 1fr;
    }
}
img {
    -webkit-touch-callout: none;
}