* {
    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;
    -webkit-touch-callout: none;
}

/* 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;
}

/* HERO */

.hero {
    position: relative;
    height: calc(100vh - 100px);
    margin-top: 100px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

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

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

/* NAV */

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

/* ABOUT */

.about {
    padding: 60px 40px;
}

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

.about p {
    max-width: 700px;
    font-size: 15px;
    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 .8s ease, opacity .3s 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: 60px;
    letter-spacing: 3px;
}

/* ALBUM PAGE */

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

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

.album-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

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

.album-gallery img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.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: 35px 40px 10px;
}

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

.contact p {
    font-size: 15px;
    line-height: 1.7;
}

/* FAQ */

.faq-section {
    width: 100%;
    padding: 20px 40px 40px;
}

.faq-main-toggle {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

#faq-title {
    font-size: 30px;
    font-weight: 700;
}

#faq-wrapper {
    width: 100%;
}

#faq-container {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #111;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 0 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* 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: 15px;
}

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

.footer-center {
    gap: 15px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-right svg {
    width: 30px;
    height: 30px;
}

/* 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 {
        height: calc(100vh - 80px);
        margin-top: 80px;
    }

    .hero-text {
        right: 0;
        bottom: 110px;
        transform: scale(0.75);
    }

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

    .about {
        padding: 30px 25px 45px;
    }

    .about h2,
    .contact h2,
    #faq-title {
        font-size: 34px;
    }

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

    .album-block {
        height: 40vh;
    }

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

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

    .album-page h1 {
        font-size: 36px;
    }

    .album-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

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

    .contact {
        padding: 30px 25px 10px;
    }

    .faq-section {
        padding: 15px 25px 30px;
    }

    #faq-wrapper {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    #faq-wrapper.open {
        overflow: visible;
    }

    .faq-main-toggle {
        position: relative;
        padding-bottom: 20px;
    }

    .faq-main-toggle::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 0;
        font-size: 24px;
    }

    .faq-main-toggle.open::after {
        content: "−";
    }

    .faq-question {
        font-size: 16px;
    }

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

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

    .footer-center span {
        display: none;
    }

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

/* SMALL MOBILE */

@media (max-width: 600px) {

    .hero-text {

        right: -40px;

        bottom: 150px;

        transform: scale(0.58);

    }

    .hero-text h1 {

        font-size: 40px;

        max-width: 260px;

        text-align: center;

        line-height: 1.05;

    }

    .album-block {

        height: 35vh;

    }

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

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

#about-text,
#contact-text,
#album-description {
    white-space: pre-line;
}