﻿/* ===== GLOBAL ===== */
:root {
    --black: #000;
    --white: #fff;
    --gray: #888;
}

/* RESET base height */

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    XXfont-family: "Inter", sans-serif;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0.3px;
}

/* ===== HEADER ===== */
.public-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

body {
    margin: 0;
    padding-top: 70px; /* equal to header height */
}

.logo {
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    text-decoration: none;
    color: inherit;
    display: inline-block; /* or flex if you need layout control */
}

.public-nav .nav-link {
    margin-left: 30px;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

    .public-nav .nav-link:hover,
    .public-nav .nav-link.active {
        color: var(--white);
    }


/* ===== MOBILE NAV ===== */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: var(--color-text);
    cursor: pointer;
}

@media (max-width: 768px) {
    .public-header {
        justify-content: space-between;
        padding: 0 20px; /* narrower on mobile */
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .public-nav {
        display: none; /* hide links by default on mobile */
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.95);
        padding: 40px 0;
        text-align: center;
        gap: 20px;
        z-index: 999;
    }

        .public-nav.show {
            display: flex;
            animation: slideDown 0.3s ease forwards;
        }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

}

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px); /* subtract the header height */
    background: #000; /* background behind portrait image */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* your portrait hero image */
.hero-img {
    width: auto; /* don't stretch width */
    height: 100%; /* scale to fill height */
    max-height: 100vh;
    object-fit: contain; /* keep full image visible */
    object-position: center;
}

/* overlay text */
.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    Xbackground: rgba(0,0,0,0.25); /* overlay soft gray */
    background: rgba(0,0,0,0.10); /* overlay soft gray */
    color: #fff;
    z-index: 2;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 5vw, 56px);
    margin-bottom: 12px;
}

.hero-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #ddd;
}




/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */

/* ===== GALLERY ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 8px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

    .gallery-item .label {
        position: absolute;
        bottom: 12px;
        left: 12px;
        font-size: 14px;
        background: rgba(0,0,0,0.45);
        padding: 6px 10px;
        border-radius: 3px;
    }

/* ===== STATEMENT ===== */
.statement {
    text-align: center;
    padding: 140px 20px 160px;
    XXfont-family: "Playfair Display", serif;
    font-size: 28px;
    color: #ddd;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.public-footer {
    text-align: center;
    padding: 40px;
    font-size: 14px;
    color: var(--gray);
    border-top: 1px solid rgba(255,255,255,0.1);
}


/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */

/* ===== GALLERY PAGE ===== */
.gallery-hero {
    text-align: center;
    padding: 20px 20px 90px;
    XXfont-family: "Playfair Display", serif;
}

    .gallery-hero h1 {
        font-size: clamp(36px, 5vw, 64px);
        margin-bottom: 10px;
    }

    .gallery-hero p {
        color: #aaa;
        font-size: 18px;
    }

.gallery-category {
    margin-bottom: 100px;
    text-align: center;
}

    .gallery-category h2 {
        XXfont-family: "Playfair Display", serif;
        font-size: 28px;
        font-weight: 500;
        letter-spacing: 1px;
        margin-bottom: 30px;
        color: #ddd;
    }

.gallery-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

    .gallery-row img {
        width: 320px;
        height: 480px;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

    .gallery-row a:hover img {
        transform: scale(1.05);
    }

/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */


/* ===== ABOUT PAGE ===== */
.about-hero {
    text-align: center;
    padding: 200px 20px 100px;
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 5vw, 60px);
    color: #fff;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    font-size: 18px;
    color: #ccc;
    padding: 0 20px 120px;
}

.about-image {
    display: flex;
    justify-content: center;
    margin-bottom: 120px;
}

    .about-image img {
        width: 80%;
        max-width: 900px;
        border-radius: 4px;
        object-fit: cover;
        filter: brightness(0.9);
    }

.about-footerquote {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 26px;
    color: #ddd;
    padding-bottom: 140px;
    letter-spacing: 0.5px;
}


/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */

/* ===== CONTACT / PRESS SECTION ===== */
.about-contact {
    text-align: center;
    padding: 100px 20px 160px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

    .about-contact h3 {
        font-family: "Playfair Display", serif;
        font-size: 22px;
        letter-spacing: 1px;
        color: #fff;
        margin-bottom: 10px;
    }

    .about-contact p {
        color: #aaa;
        font-size: 16px;
        margin-bottom: 20px;
    }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 10px;
}

    .social-icons a {
        color: #888;
        font-size: 20px;
        transition: color 0.3s;
    }

        .social-icons a:hover {
            color: #fff;
        }


