@font-face {
    font-family: 'DIN Pro';
    src: url('../fonts/DIN Pro 400.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN Pro';
    src: url('../fonts/DIN Pro Bold 700.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN Pro Condensed';
    src: url('../fonts/DIN Pro Condensed Regular 400.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-size: 1.4rem;
}

:root {
    --lime: #ecffad;
    --lime-strong: #d1fa31;
    --lilac: #d8cae4;
    --lilac-strong: #9d81fc;
    --rose: #ff71bd;
    --rose-soft: #ffcde7;
    --pink: var(--lilac);
    --pink-strong: var(--lilac-strong);
    --purple: var(--lime);
    --deep: #1b1537;
    --surface: #14102d;
    --ink: #050505;
    --text-light: rgba(255, 255, 255, 0.92);
    --text-dim: rgba(216, 202, 228, 0.68);
    --panel: rgba(216, 202, 228, 0.08);
    --panel-strong: rgba(157, 129, 252, 0.18);
    --stroke: rgba(216, 202, 228, 0.22);
    --font-display: 'DIN Pro', sans-serif;
    --font-tech: 'DIN Pro Condensed', sans-serif;
    --gutter: 2rem;
    --radius-sm: 6px;
    --radius-md: 7px;
    --radius-lg: 7px;
    --radius-pill: 999px;
}

::selection{
    background-color: var(--lime-strong);
    color: var(--deep);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    max-width: 100vw;
    font-family: var(--font-tech);
    font-weight: 400;
    overflow-x: hidden;
}

body {
    background-color: var(--deep);
    background-image: radial-gradient(circle at top right, rgba(157, 129, 252, 0.16), transparent 34%), linear-gradient(180deg, #211a43 0%, var(--deep) 58%, var(--surface) 100%);
    color: var(--text-light);
    font-family: var(--font-tech);
    font-weight: 400;
    min-height: 100vh;
    position: relative;
}

/* ---------------------------------------------------*/
/* --- SPLIT HERO --- */
.split-hero {
    position: relative;
    height: 100vh; /* Teljes képernyő */
    width: 100%;
    display: flex;
    background-color: var(--deep); /* #140312 */
    overflow: hidden;
}

/* --- BAL OLDAL (SZÖVEG) --- */
.hero-content {
    width: 55%; /* Kicsit szélesebb, hogy a szöveg domináljon */
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 8vw; /* Bal margó */
    position: relative;
    z-index: 10; /* A kép felett legyen */
    border: none !important;
}

/* Óriás háttérszöveg (Dísz) */
.big-outline-bg {
    position: absolute;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display); /* Syne */
    font-size: 25vw; /* Brutálisan nagy */
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03); /* Alig látható körvonal */
    z-index: -1;
    pointer-events: none;
    line-height: 1.2;
}

.text-wrapper {
    position: relative;
}

.subtitle {
    font-family: var(--font-tech); /* Space Mono */
    color: var(--lime);
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 6rem);
    line-height: 0.95;
    color: white;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* A "KELLA" szó stílusa */
.hero-content h1 .filled {
    color: transparent;
    -webkit-text-stroke: 1px white; /* Körvonalas */
}

/* A "DEKOR" szó stílusa */
.hero-content h1 .neon-highlight {
    color: var(--pink);
    text-shadow: 0 0 30px rgba(157, 129, 252, 0.3); /* Neon ragyogás */
}

.hero-desc {
    font-family: var(--font-tech);
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 3rem;
    border-left: 1px solid var(--stroke);
    padding-left: 1.5rem;
}

/* Gomb Stílus */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--lime-strong);
    color: var(--ink);
    text-decoration: none;
    font-family: var(--font-tech);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    box-shadow: 0 18px 36px rgba(209, 250, 49, 0.2);
    transition: 0.3s;
}

.hero-btn:hover {
    background: var(--lime);
    box-shadow: 0 18px 36px rgba(236, 255, 173, 0.22);
    transform: translateX(10px);
}

/* --- JOBB OLDAL (KÉP) --- */
.hero-visual {
    width: 45%;
    height: 100%;
    position: absolute; /* Abszolút, hogy a tartalom mögé mehessen kicsit */
    right: 0;
    top: 0;
    z-index: 1;
    border: none !important;
    animation: none !important;
    overflow: hidden;
    border-top-left-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Lassú zoom effekt a képen */
    /* animation: slowZoom 20s infinite alternate; */
    opacity: 1 !important;
    animation: none !important;
    /* Finom átmenet a tetején */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 100%);
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* AZ ÁTMENET (A legfontosabb rész!) */
.gradient-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Balról (feketéből) jobbra (átlátszóba) megy az átmenet */
    background: linear-gradient(90deg, var(--deep) 10%, rgba(27, 21, 55, 0.6) 50%, transparent 100%);
    opacity: 1 !important;
    animation: none !important;
}

/* Fehér csík eltávolítása (felesleges animáció) */
.split-hero::after,
.split-hero::before,
.hero-visual::before,
.hero-visual::after,
.hero-content::after,
.hero-content::before,
.hero-image::before,
.hero-image::after,
.gradient-overlay::before,
.gradient-overlay::after {
    display: none !important;
}

/* --- MOBIL NÉZET --- */
@media (max-width: 900px) {
    .split-hero {
        flex-direction: column-reverse; /* Mobilon a kép legyen felül, szöveg alul? Vagy fordítva. */
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        width: 100%;
        height: auto;
        padding: 4rem 2rem;
        justify-content: center;
    }

    .hero-visual {
        position: relative;
        width: 100%;
        height: 50vh; /* Fél képernyő a kép */
    }

    .gradient-overlay {
        /* Mobilon lentről felfelé sötétedjen */
        background: linear-gradient(0deg, var(--deep) 5%, transparent 100%);
    }
    
    .big-outline-bg {
        font-size: 40vw; /* Mobilon még nagyobb háttérszöveg */
        top: 20%;
    }
}
/* ---------------------------------------------------*/

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.ambient-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--purple) 0%, rgba(27, 21, 55, 0) 70%);
    top: -20%;
    right: -10%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem var(--gutter);
        position: relative;
        z-index: 10;
}

body > nav {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 99;
}

nav .logo {
        height: 60px;
        width: auto;
        display: block;
}



.menu-btn {
    font-family: var(--font-tech);
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--text-light);
    border: 1px solid var(--stroke);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-pill);
    background: var(--panel);
    backdrop-filter: blur(5px);
    transition: 0.3s;
    cursor: pointer;
}

.menu-btn:hover {
    border-color: var(--pink);
    box-shadow: 0 0 15px var(--pink);
}

.ambient-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px); /* Erős elmosás */
    opacity: 0.4;
    animation: floatShape 10s infinite alternate ease-in-out;
}

.shape-1 {
    width: 300px; height: 300px;
    background: var(--purple);
    top: 10%; left: 10%;
    animation-duration: 12s;
}

.shape-2 {
    width: 400px; height: 400px;
    background: var(--deep); /* Vagy egy sötétebb kék/lila */
    border: 1px solid var(--pink); /* Csak egy vékony neon körvonal */
    bottom: -10%; right: 20%;
    animation-duration: 15s;
    animation-direction: reverse;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(30px, -50px) rotate(10deg); }
}

.hero-content {
    position: relative;
    min-width: 0;
    overflow: visible;
}

h1 {
    font-size: clamp(3.5rem, 7vw, 8rem);
    font-family: var(--font-display);
    line-height: 0.9;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    max-width: 100%;
}

/*h1 span{
    animation: neonPulse 3s infinite alternate;
}

@keyframes neonPulse {
    0%, 100% { text-shadow: 0 0 10px rgba(216, 202, 228, 0.5)}
    50% { text-shadow: 0 0 25px rgba(216, 202, 228, 0.9), 0 0 50px rgba(216, 202, 228, 0.4)}
    90% { opacity: 1; }
    92% { opacity: 0.8; }
    94% { opacity: 1; }
}*/

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    display: block;
    transition: 0.5s;
}

.outline-text-bg{
    position: absolute;
    z-index: 0;
    opacity: 0.1;
    white-space: nowrap;
    animation: scrollText 40s linear infinite;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-20%); } /* Lassan balra úszik */
}

.filled-text {
    display: block;
    background: linear-gradient(90deg, #fff, var(--lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1:hover .outline-text {
    -webkit-text-stroke: 2px var(--pink);
    transform: translateX(10px);
}

.hero-meta {
    margin-top: 2rem;
    font-family: var(--font-tech);
    color: var(--text-dim);
    font-size: 0.9rem;
    display: flex;
    gap: 2rem;
    border-left: 2px solid var(--pink);
    padding-left: 1rem;
}

.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.magnetic-btn {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid var(--stroke);
    background: var(--panel);
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.magnetic-btn span {
    font-family: var(--font-tech);
    font-size: 1.4rem;
    z-index: 2;
}

.magnetic-btn small {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pink);
    z-index: 2;
}

.magnetic-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 var(--pink);
    transition: 0.3s;
    opacity: 0;
}

.magnetic-btn:hover {
    border-color: var(--pink);
}

.magnetic-btn:hover::after {
    box-shadow: 0 0 30px var(--pink);
    opacity: 0.4;
}

.services-container {
    display: flex;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    background: var(--deep);
    border-top: 1px solid var(--stroke);
    border-bottom: 1px solid var(--stroke);
    grid-column: 1 / -1;
    min-width: 0;
}

.service-panel {
    position: relative;
    flex: 1;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    cursor: pointer;
    border-right: 1px solid var(--stroke);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    min-width: 0;
}

.service-panel:last-child {
    border-right: none;
}

.service-panel:hover {
    flex: 3;
}

.panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    transition: 0.6s;
    filter: grayscale(100%) blur(2px);
    z-index: 1;
}

.service-panel:hover .panel-bg {
    opacity: 0.8;
    filter: grayscale(0%) blur(0px);
    transform: scale(1.05);
}

.bg-1 {
    background-image: url('https://images.unsplash.com/photo-1621996664977-802c65a0445d?q=80&w=1920&auto=format&fit=crop');
}

.bg-2 {
    background-image: url('https://images.unsplash.com/photo-1563245372-f21724e3856d?q=80&w=1920&auto=format&fit=crop');
}

.bg-3 {
    background-image: url('https://images.unsplash.com/photo-1562654501-a0ccc0fc3fb1?q=80&w=1920&auto=format&fit=crop');
}

.bg-4 {
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=1920&auto=format&fit=crop');
}

.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--deep) 0%, transparent 60%);
    z-index: 2;
}

.panel-content {
    position: relative;
    z-index: 3;
    width: 100%;
    transition: 0.4s;
}

.panel-number {
    display: block;
    font-family: var(--font-tech);
    color: var(--pink);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.panel-title {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    text-transform: uppercase;
    color: white;
    white-space: nowrap;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    color: transparent;
    transition: 0.4s;
}

.service-panel:hover .panel-title {
    color: white;
    text-shadow: 0 0 20px rgba(157, 129, 252, 0.5);
}

.panel-details {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.4s 0.2s;
}

.panel-details p {
    font-family: var(--font-tech);
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 1.1rem;
}

.details-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--pink);
    text-decoration: none;
    font-family: var(--font-tech);
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.service-panel:hover .panel-details {
    height: auto;
    opacity: 1;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-meta {
        justify-content: center;
        border: none;
        padding: 0;
    }

    .cta-container {
        display: none;
    }

    .services-container {
        flex-direction: column;
        height: auto;
    }

    .service-panel {
        height: 300px;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--stroke);
    }

    .service-panel:hover {
        flex: none;
    }

    .panel-details {
        height: auto;
        opacity: 1;
    }

    .panel-title {
        color: white;
        font-size: 2rem;
    }
}

/* --- ABOUT SECTION (ISMERJ MEG MINKET) --- */
.about-section {
    background-color: var(--deep);
    color: var(--text-light);
    padding: 8rem var(--gutter); /* Nagy térközök a levegősségért */
    position: relative;
    border-top: 1px solid var(--stroke);
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Aszimmetrikus osztás: Baloldal kisebb, Jobb nagyobb */
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* --- BAL OLDAL: VIZUÁLIS ELEM --- */
.about-visual {
    position: relative;
    padding-top: 2rem;
}

.est-box {
    border: 1px solid var(--pink);
    padding: 2rem;
    display: inline-block;
    position: relative;
    background: rgba(216, 202, 228, 0.05); /* Halvány rózsaszín háttér */
}

/* Kis dekorációs sarkok a dobozon */
.est-box::before, .est-box::after {
    content: '';
    position: absolute;
    width: 10px; height: 10px;
    background: var(--pink);
    transition: 0.3s;
}
.est-box::before { top: -5px; left: -5px; }
.est-box::after { bottom: -5px; right: -5px; }

.est-box:hover::before { top: -10px; left: -10px; }
.est-box:hover::after { bottom: -10px; right: -10px; }

.est-label {
    display: block;
    font-family: var(--font-tech);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--pink);
}

.est-year {
    display: block;
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 0.8;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px white;
    transition: 0.5s;
}

.est-box:hover .est-year {
    color: white; /* Hoverre kitöltődik */
    text-shadow: 0 0 30px rgba(255,255,255,0.5);
}

/* Háttér dekoráció (pontrács) */
.visual-decor {
    position: absolute;
    top: -20%; left: -20%;
    width: 140%; height: 140%;
    background-image: radial-gradient(var(--stroke) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

/* --- JOBB OLDAL: TARTALOM --- */
.section-tag {
    font-family: var(--font-tech);
    color: var(--text-dim);
    font-size: 1rem;
    display: block;
    margin-bottom: 1rem;
}

.about-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.about-title .text-stroke {
    color: transparent;
    -webkit-text-stroke: 1px white;
}

/* Szövegtörzs */
.about-text-block p {
    font-family: var(--font-tech); /* Technikai font a szövegnek is */
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 650px;
}

.highlight-intro {
    font-size: 1.2rem !important; /* Nagyobb bevezető */
    border-left: 2px solid var(--pink);
    padding-left: 1.5rem;
}

.neon-text {
    color: var(--pink);
    font-weight: 700;
}

/* Lista */
.feature-list {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--pink);
}

/* CTA Rész */
.about-cta {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--stroke);
}

.about-cta p {
    font-family: var(--font-tech);
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.huge-statement {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 4rem); /* Reszponzív méret */
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, var(--lime-strong));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

/* MOBIL NÉZET */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr; /* Egymás alá */
        gap: 2rem;
    }

    .about-visual {
        order: 2; /* Mobilon a szöveg legyen felül, a 2019 alul (vagy fordítva ízlés szerint) */
        display: flex;
        justify-content: center;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .est-year {
        font-size: 5rem;
    }
}

/* --- WORK SECTION (JAVÍTOTT) --- */

.work-section {
    position: relative;
    width: 100vw;       /* Teljes képernyő szélesség */
    height: 100vh;      /* Teljes képernyő magasság */
    background-color: var(--deep); /* #140312 a képed alapján */
    overflow: hidden;   /* Elrejtjük a függőleges görgetősávot */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Függőlegesen középre */
}

/* CÍMSOR */
.work-header {
    position: absolute;
    top: 5vh;
    left: 5vw;
    z-index: 10;
    pointer-events: none; /* Hogy át lehessen kattintani rajta */
}

.section-title {
    font-family: var(--font-display); /* Syne */
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 0.5rem;
}

.section-title .highlight {
    color: var(--pink); /* var(--pink) */
    font-style: italic;
}

.scroll-indicator {
    font-family: var(--font-tech);
    color: var(--text-dim);
    font-size: 0.9rem;
    animation: pulseText 2s infinite;
}

@keyframes pulseText { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* A GÖRGETHETŐ SÁV */
.gallery-track {
    display: flex;          /* Egymás mellé rendezés */
    flex-direction: row;    /* Sorba */
    align-items: center;    /* Függőleges középre */
    
    width: 100%;
    height: 70vh;           /* A galéria magassága */
    
    overflow-x: auto;       /* Vízszintes görgetés engedélyezése */
    overflow-y: hidden;
    
    padding-left: 5vw;      /* Kezdő margó */
    gap: 5vw;               /* Távolság a képek között */
    
    /* Scroll viselkedés */
    scroll-behavior: smooth;
    
    /* Görgősáv elrejtése */
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar { display: none; } /* Chrome */

/* EGY PROJEKT KÁRTYA */
.gallery-item {
    /* EZ A KULCS A JAVÍTÁSHOZ: */
    flex: 0 0 70vw; /* Nem zsugorodik, fix 70% szélesség! */
    height: 100%;
    
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

/* KÉP KONTÉNER */
.image-container {
    width: 100%;
    height: 80%; /* A kártya 80%-a kép */
    overflow: hidden;
    position: relative;
    border: 1px solid var(--stroke);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s, transform 0.7s;
}

/* Hover Effekt: Színesedik és nő */
.gallery-item:hover .image-container img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(216, 202, 228,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: 0.3s;
}
.gallery-item:hover .image-overlay { opacity: 1; }

/* SZÖVEGES TARTALOM */
.content-box {
    height: 15%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--pink); /* Neon vonal alul */
    padding-bottom: 10px;
}

.project-number {
    font-family: var(--font-tech);
    color: var(--pink);
    font-size: 1.4rem;
    position: absolute;
    top: 0; left: 0; /* A kép sarkába tesszük */
    background: var(--deep);
    padding: 5px 10px;
    border: 1px solid var(--stroke);
}

.content-box h3 {
    font-family: var(--font-display);
    font-size: 2.5rem; /* Nagy betűk */
    line-height: 1;
    color: white;
    text-transform: uppercase;
    margin: 0;
}

.tags span {
    display: block;
    text-align: right;
    font-family: var(--font-tech);
    color: var(--text-light);
    font-size: 1.4rem;
    opacity: 0.7;
}

/* MOBIL NÉZET */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 85vw; /* Mobilon majdnem teljes szélesség */
    }
    .content-box h3 {
        font-size: 1.5rem;
    }
}
/* --- MARQUEE (FUTÓ FELIRAT) --- */
.marquee-container {
    background: var(--pink);
    color: var(--deep);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
    transform: rotate(-1deg) scale(1.02); /* Kicsit ferde a dinamika miatt */
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: 1.2rem;
    padding-right: 2rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


.label {
    font-family: var(--font-tech);
    color: var(--pink);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: block;
}

/* Nagy Linkek (Email, Tel) */
.big-link {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 3rem);
    color: white;
    text-decoration: none;
    line-height: 1.1;
    transition: 0.3s;
}

.big-link:hover {
    color: var(--pink);
    transform: translateX(10px);
}

/* Infó blokkok */
.info-block {
    margin-bottom: 2rem;
}

.info-block p {
    font-family: var(--font-tech);
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1.6;
}

.address-link {
    cursor: pointer;
}

.address-link:hover {
    color: var(--pink);
}

.map-btn {
    background: var(--pink);
    color: black;
    border: none;
    padding: 0.6rem 1.2rem;
    margin-top: 0.8rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-tech);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.4rem;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    letter-spacing: 0.5px;
}

.map-btn:hover {
    background: white;
    box-shadow: 0 0 15px rgba(216, 202, 228, 0.5);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-family: var(--font-tech);
    font-size: 1.4rem;
    transition: 0.3s;
    border: 1px solid transparent;
    width: fit-content;
}

.social-links a:hover {
    color: var(--pink);
    padding-left: 10px;
}
