/* INTERCOM MASTER - VÉGLEGES DESIGN */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

:root {
    --bg-deep: #020617;
    --card-bg: #0f172a;
    --accent-blue: #00d2ff;
    --text-pure: #ffffff;
    --border: rgba(255, 255, 255, 0.15);
}

body {
    background-color: var(--bg-deep);
    color: var(--text-pure);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

/* NAVIGÁCIÓ FIX - FEHÉR MENÜPONTOK */
.custom-nav {
    background: #020617 !important;
    border-bottom: 1px solid var(--border);
}

.navbar-nav .nav-link {
    color: #ffffff !important; /* Garantáltan fehér */
    font-weight: 600;
    padding: 10px 20px !important;
}

.logo-fix {
    max-width: 170px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* BENTO GRID KÁRTYÁK - MARAD AZ EREDETI */
.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2rem;
    height: 100%;
}

.hero-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%) !important;
    border: 1px solid var(--accent-blue) !important;
}

/* SZÖVEG JAVÍTÁSA */
.display-3 {
    font-size: clamp(1.8rem, 8vw, 3.5rem) !important;
    font-weight: 800;
    line-height: 1.1;
}

p, .text-muted {
    color: #cbd5e1 !important; /* Olvasható világosszürke */
}

/* GOMBOK - NINCS EGYMÁSRA CSÚSZÁS */
.btn-neon {
    background: #00d2ff !important;
    color: #000000 !important; /* Fekete szöveg a kék gombon a kontraszt miatt */
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
}

/* MOBIL FIX: A gombok egymás alá kerülnek, ha nincs hely */
@media (max-width: 768px) {
    .d-flex.gap-3 {
        flex-direction: column !important;
    }
    .btn-neon, .btn-outline-light {
        width: 100% !important;
        text-align: center;
    }
}

/* KÉPEK - MARAD AZ EREDETI */
.bento-img-container {
    padding: 0 !important;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 28px;
}

.bento-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* AZONOSÍTÓ OLDAL SPECIFIKUS */
.image-zoom-container {
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1;
}

.azonosito-img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Egyforma négyzet alakú kis képek */
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Nagyított állapot */
.image-zoom-container.is-zoomed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
    background: rgba(2, 6, 23, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 0;
}

.is-zoomed .zoom-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
}

.is-zoomed .azonosito-img {
    aspect-ratio: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
    border: 2px solid var(--accent-blue);
}

/* Szöveg a nagyított kép alján */
.zoom-overlay-text {
    display: none;
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
}

.is-zoomed .zoom-overlay-text {
    display: block;
}

.bg-card-footer {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid var(--border);
}