/* GLOBAL */
body {
    margin: 0;
    font-family: "Helvetica Neue", sans-serif;
    background: #8f8f8f;
    color: #222;
}

/* HERO */
.hero {
    height: 60vh;
    background: url('phead.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    color: #272425;
    padding-left: 100px;       
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;

}

.hero h1 {
    font-size: 7rem;
    margin: 0;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.6rem;
    opacity: 0.9;
}

/* GALLERY GRID */
.gallery {
    padding: 60px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery .item {
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox.hidden {
    display: none;
}

#lightboxImg {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

#closeBtn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
    opacity: 0.7;
}