/* ===== ALAP ===== */
body {
    background: #f5f7fa;
    font-family: Arial, sans-serif;
}

/* ===== TOPBAR ===== */
.topbar {
    background: #0a3d62;
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

/* ===== NAVBAR ===== */
.navbar {
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding-top: 20px;
    padding-bottom: 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    height: auto;
}

.navbar .container {
    align-items: center;
}

.nav-logo {
    height: 110px;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, rgba(13,110,253,0.92), rgba(10,61,98,0.95));
    color: white;
    padding: 90px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 44px;
    font-weight: 800;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-logo {
    height: 100px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

/* ===== SZEKCIÓK ===== */
.section-title {
    font-weight: 800;
    margin-bottom: 12px;
}

/* ===== SZOLGÁLTATÁS KÁRTYÁK ===== */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 34px;
    margin-bottom: 12px;
}

/* ===== GALÉRIA / REFERENCIA KÁRTYÁK ===== */
.gallery-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: white;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    cursor: pointer;
}

.category-badge {
    display: inline-block;
    background: #e9f2ff;
    color: #0d6efd;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 8px;
}

.card-title {
    font-weight: 700;
}

/* ===== LINKEK ===== */
.back-link {
    text-decoration: none;
    color: #0d6efd;
    font-weight: bold;
}

/* ===== ÜRES DOBOZ ===== */
.empty-box {
    background: white;
    padding: 40px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, #0a3d62, #0d6efd);
    color: white;
    border-radius: 20px;
    padding: 45px 25px;
}

/* ===== FOOTER ===== */
footer {
    background: #0a3d62;
    color: white;
    padding: 25px 0;
}

/* ===== MOBIL ===== */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-logo {
        height: 90px;
    }

    .nav-logo {
        height: 90px;
    }

    .gallery-card img {
        height: 240px;
    }
}