:root {
    --text: #333;
    --bg: #fff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

.hero,
.about-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-section {
    min-height: 100vh;
    padding: 10vh 4vw;
    background: #fff;
    box-sizing: border-box;
}

.hero {
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-parallax {
    position: absolute;
    inset: 0;
    background: url('images/heroimage.jpg') center/cover;
    transform: scale(1.2);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
}

.hero-content p {
    letter-spacing: 3px;
}

.about-section {
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.gallery-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.85);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-close { top: 20px; right: 30px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

@media (max-width: 900px) {
    .gallery-grid { column-count: 2; }
}

@media (max-width: 600px) {
    .gallery-grid { column-count: 1; }
}