/* -------------------- */
/* ALAP BEÁLLÍTÁSOK */
/* -------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #eee;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* -------------------- */
/* NAVIGÁCIÓ */
/* -------------------- */

header {
    background: #000;
    padding: 1rem 0;
    border-bottom: 2px solid #FFC300;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* DESKTOP MENÜ */
nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

nav a {
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    color: #FFC300;
}

.nav-phone {
    color: #FFC300;
    font-weight: bold;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: #FFC300;
    cursor: pointer;
}

/* -------------------- */
/* HERO */
/* -------------------- */

.hero,
.services-hero {
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::after,
.services-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1,
.services-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

/* -------------------- */
/* GOMBOK */
/* -------------------- */

.btn-primary {
    background: #FFC300;
    padding: 0.8rem 1.6rem;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e6b100;
}

/* -------------------- */
/* FŐ ELŐNYÖK */
/* -------------------- */

.features {
    padding: 3rem 0;
}

.features-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: 0.3s;
}

.feature-card i {
    font-size: 2rem;
    color: #FFC300;
    margin-bottom: 1rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #FFC300;
}

/* -------------------- */
/* SZOLGÁLTATÁSOK */
/* -------------------- */

.services {
    padding: 3rem 0;
}

.section-title {
    color: #FFC300;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-photo-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
    transition: 0.3s;
    text-align: center;
}

.service-photo-card:hover {
    transform: translateY(-5px);
    border-color: #FFC300;
}

.service-photo {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
}

/* -------------------- */
/* RÓLUNK */
/* -------------------- */

.about-section {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    color: #FFC300;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ddd;
}

.about-text li {
    list-style: none;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
}

.about-text li i {
    color: #FFC300;
    margin-right: 0.6rem;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* -------------------- */
/* STATISZTIKA */
/* -------------------- */

.stats {
    background: #000;
    padding: 3rem 0;
    margin-top: 2rem;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 1rem;
}

.stat-number {
    font-size: 2.4rem;
    color: #FFC300;
    font-weight: bold;
}

/* -------------------- */
/* REFERENCIA GALÉRIA */
/* -------------------- */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    border: 1px solid #333;
    background: #000;
    transition: 0.3s ease;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    border-color: #FFC300;
    box-shadow: 0 0 18px rgba(255,195,0,0.25);
}

/* -------------------- */
/* KAPCSOLAT OLDAL */
/* -------------------- */

.contact-wrapper {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.contact-actions h2 {
    color: #FFC300;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: #ddd;
}

.contact-info i {
    color: #FFC300;
    margin-right: 0.6rem;
    font-size: 1.2rem;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    justify-content: center;
    transition: 0.3s ease;
}

.contact-btn i {
    color: #FFC300;
    font-size: 1.3rem;
}

.contact-btn:hover {
    transform: translateY(-4px);
    border-color: #FFC300;
    box-shadow: 0 0 15px rgba(255,195,0,0.2);
}

/* -------------------- */
/* MOBIL */
/* -------------------- */

@media (max-width: 992px) {

    nav ul {
        display: none;
        flex-direction: column;
        background: #000;
        padding: 1rem;
        position: absolute;
        right: 0;
        top: 70px;
        width: 200px;
        z-index: 9999;
    }

    nav ul.show {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .features-inner,
    .services-grid,
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 600px) {

    .features-inner,
    .services-grid,
    .stats-inner,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 200px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about-image img {
        height: 250px;
    }
}
