body {
    color: #111;
    background: #fff;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}



/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #e5e5e5;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    text-transform: uppercase;
    font-size: 14px;
}

/* HERO SECTION */
.hero {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-image {
    background-image: url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

/* Sötét overlay */
.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Hero szöveg */
.hero-text {
    position: relative;
    z-index: 25;
    margin-top: 60px; /* lejjebb hozva */
}

/* FŐ CÍM */
.hero-text h2 {
    font-size: 82px;        /* nagyobb cím */
    font-weight: 700;       /* vastagabb */
    letter-spacing: 0.5px;  /* közelebb betűk */
    line-height: 1.05;      /* szorosabb sor */
    margin-bottom: 10px;    /* közelebb a szöveghez */
}

/* ALATTA LÉVŐ SZÖVEG */
.hero-text p {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 18px;
    letter-spacing: 0.3px;
}

/* MOBIL FINOMHANGOLÁS */
@media (max-width: 600px) {
    .hero-text {
        margin-top: 30px;
    }

    .hero-text h2 {
        font-size: 48px;
        line-height: 1.1;
    }

    .hero-text p {
        font-size: 16px;
    }
}


/* Intro */
.intro {
    padding: 60px 40px;
    text-align: center;
}


/* Pricing */
.pricing-table {
    padding: 40px;
}

table {
    width: 100%;
    max-width: 900px;
    margin: auto;
    border-collapse: collapse;
}

th, td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

th {
    font-weight: 600;
}


/* Responsive */
@media (max-width: 1024px) {
    .gallery-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-columns {
        grid-template-columns: 1fr;
    }
}

/* Simple gallery with category separation */
.gallery {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px;
}

.gallery-category {
    margin-bottom: 80px;
}

.gallery-category h3 {
    text-align: center;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    position: relative;
}

.gallery-category h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #111;
    margin: 15px auto 0;
}

.gallery-category img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.gallery-category {
    margin-bottom: 100px;

    column-count: 3;
    column-gap: 20px;
}

.gallery-category h3 {
    column-span: all;
    text-align: center;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    position: relative;
}

.gallery-category h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #111;
    margin: 15px auto 0;
}

.gallery-category img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;

    break-inside: avoid;
    transition: 0.3s ease;
}

.gallery-category img:hover {
    transform: scale(1.02);
}


.gallery-category h3 {
    grid-column: 1 / -1;
}


.gallery-category img:hover {
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .gallery-category {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-category {
        column-count: 1;
    }
}

footer {
    margin-top: auto;
    padding: 20px 40px;
    font-size: 14px;
}

/* Lightbox */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* About photo */
.about-photo {
    width: 200px;
    border-radius: 25%;
    margin: 30px auto;
    display: block;
}

/* Lightbox arrows */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 10px;
}

.lightbox-arrow.left {
    left: 30px;
}

.lightbox-arrow.right {
    right: 30px;
}

.lightbox-arrow:hover {
    opacity: 0.7;
}

/* Hamburger menu */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: white;
        border: 1px solid #ddd;
        padding: 10px 20px;
        gap: 15px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }
}

@media (max-width: 600px) {
    .hero-text h2 {
        font-size: 32px;
        line-height: 1.25;
    }
}

/* VIEW GALLERY BUTTON */
.hero-text .btn {
    display: inline-block;
    padding: 12px 34px;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    transition: all 0.3s ease;
}

/* Hover – finom, elegáns */
.hero-text .btn:hover {
    background: #ffffff;
    color: #000000;
}
