/* --------------------------------------------------
   GLOBAL RESET
-------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111;
    color: #fff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.photo-hero {
    padding: 140px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #111, #000);
}

.photo-hero h1 {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.photo-hero .subtitle {
    font-size: 20px;
    opacity: 0.7;
    margin-bottom: 40px;
}

/* --------------------------------------------------
   CTA BUTTON
-------------------------------------------------- */
.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: #444;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    transition: background 0.2s, transform 0.2s;
}

.cta-button:hover {
    background: #666;
    transform: translateY(-2px);
}

/* --------------------------------------------------
   GALLERY PREVIEW STRIP (OPTIONAL)
-------------------------------------------------- */
.preview-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 60px auto;
    max-width: 1000px;
    opacity: 0.8;
}

.preview-strip img {
    width: 30%;
    border-radius: 6px;
    filter: brightness(0.7);
    transition: filter 0.3s;
}

.preview-strip img:hover {
    filter: brightness(1);
}

img {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}



/* --------------------------------------------------
   FOOTER (OPTIONAL)
-------------------------------------------------- */
.photo-footer {
    text-align: center;
    padding: 40px 20px;
    opacity: 0.5;
    font-size: 14px;
}
