/* ========================================= */
/* --- 1. ALAP STÍLUSOK & VÁLTOZÓK --- */
/* ========================================= */
:root {
    --primary: #1d1d1f;
    --accent: #0071e3;
    --bg-gray: #f5f5f7;
    --white: #ffffff;
    --text-light: #515154;
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; }

html, body {
    margin: 0; 
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--primary); 
    background-color: var(--white);
    line-height: 1.6; 
    width: 100%;
    position: relative;
    /* Kivettem az overflow-x: hidden-t, mert ez öli meg a sticky-t mobilon! */
}

/* CÍMEK JAVÍTÁSA: Kötőjeles elválasztás és biztonságos tördelés
h1, h2, h3, h4 { 
    margin-top: 0; 
    font-weight: 700; 
    letter-spacing: -0.01em; 
    line-height: 1.2; 

    overflow-wrap: break-word; 
    word-wrap: break-word; 
    
    word-break: normal; 
    
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}*/

h1, h2, h3, h4 { 
    margin-top: 0; 
    font-weight: 700; 
    letter-spacing: -0.01em; 
    line-height: 1.2; 
    
    overflow-wrap: break-word; 
    word-wrap: break-word; 
    
    word-break: normal; 
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual; 
}

p { color: var(--text-light); font-size: 1.15rem; margin-bottom: 20px; overflow-wrap: break-word; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; height: auto; }
ul { list-style: none; padding: 0; }

/* ANIMÁCIÓK */
.reveal { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ========================================= */
/* --- 2. MENÜ (NAVBAR) --- */
/* ========================================= */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 15px 40px; display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; transition: all 0.4s ease;
    background: transparent; color: white;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    color: var(--primary);
}

/* Különleges szabály a nem-főoldalakhoz */
body:not(.home-page) .navbar:not(.scrolled) a { color: white; } 



/*.logo { font-weight: 800; font-size: 1.5rem; letter-spacing: -1px; }*/
/* --- LOGÓ SZÍN CSERE --- */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Közös méret beállítások */
.logo img {
    height: 50px;       /* Asztali méret */
    width: auto;
    transition: all 0.3s ease;
}

/* --- ALAPÁLLAPOT (Az oldal tetején, sötét háttér) --- */
/* Fehér logó látszik, Fekete rejtve */
.logo-light { display: block; }
.logo-dark  { display: none; }

/* --- GÖRGETETT ÁLLAPOT (.scrolled, fehér háttér) --- */
/* Amikor a menü háttere fehér lesz: Fehér logó rejtve, Fekete látszik */
.navbar.scrolled .logo-light { display: none; }
.navbar.scrolled .logo-dark  { display: block; }

/* --- MOBIL NÉZET --- */
@media (max-width: 768px) {
    .logo img {
        height: 35px; /* Mobilon kicsit kisebb */
    }
    /* A színcsere logika mobilon is ugyanígy működik */
}

/*///////////////////////////////////////////////////////////////////////////*/

.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: var(--accent); }

.navbar a { color: white; } 
.navbar.scrolled a { color: var(--primary); }

/* DROPDOWN MENÜ */
.dropdown { position: relative; }
.dropdown-content {
    display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background-color: #ffffff; min-width: 240px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12); border-radius: 12px; padding: 10px 0;
    z-index: 1001; margin-top: 10px;
}
.dropdown-content::before {
    content: ""; position: absolute; bottom: 100%; left: 50%; margin-left: -7px;
    border-width: 7px; border-style: solid; border-color: transparent transparent #ffffff transparent;
}
.dropdown-content::after {
    content: "";
    position: absolute;
    bottom: 100%; /* A doboz tetejétől indul felfelé */
    left: 0;
    width: 100%;
    height: 20px; /* Elég magas legyen, hogy lefedje a 10px-es rést */
    background: transparent; /* Láthatatlan, de az egér érzékeli */
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content li { display: block; text-align: left; }
.dropdown-content a {
    color: #1d1d1f !important; padding: 12px 25px; display: block; font-size: 0.9rem;
    white-space: nowrap; transition: background 0.2s;
}
.dropdown-content a:hover { background-color: #f5f5f7; color: var(--accent) !important; }

.hamburger { display: none; cursor: pointer; z-index: 1001; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: white; transition: 0.3s; }
.navbar.scrolled .bar { background-color: var(--primary); }

/* ========================================= */
/* --- 3. HEADER & HERO --- */
/* ========================================= */
header {
    position: relative;
    padding: 160px 20px 100px; 
    text-align: center; overflow: hidden;
    background-color: var(--primary); 
    width: 100%;
}

/* Főoldal header (magasabb) */
body.home-page header { min-height: 100vh; display: flex; align-items: center; justify-content: center; }

.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: 1;
    opacity: 1;
    image-rendering: -webkit-optimize-contrast;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(20, 20, 30, 0.6); 
    z-index: 2;
}

.hero-content { position: relative; z-index: 3; max-width: 900px; width: 100%; margin: 0 auto; padding: 0 20px; }
.hero-content h1, .hero-content p { color: white; }

.hero-tag {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 3px;
    color: #4da6ff; font-weight: 700; margin-bottom: 20px; display: block;
}

h1 { font-size: clamp(2rem, 5vw, 4.5rem); margin-bottom: 25px; }
.hero-sub { font-size: clamp(1.1rem, 2vw, 1.4rem); max-width: 700px; margin: 0 auto 40px; font-weight: 400; }

/* BREADCRUMB */
.breadcrumb-nav {
    position: absolute; top: 110px; left: 0; width: 100%; z-index: 3; text-align: center;
    padding: 0 20px; /* Margó, hogy ne lógjon ki */
}
.breadcrumb {
    list-style: none; padding: 0; margin: 0; 
    display: flex; justify-content: center; flex-wrap: wrap; /* Sortörés engedélyezése */
    font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; letter-spacing: 1px;
}
.breadcrumb li { white-space: nowrap; } 
.breadcrumb li + li::before { content: "/"; padding: 0 10px; color: rgba(255, 255, 255, 0.4); }
.breadcrumb a { color: rgba(255, 255, 255, 0.9); text-decoration: none; }
.breadcrumb a:hover { color: white; text-decoration: underline; }
.breadcrumb li.active { color: white; font-weight: 700; pointer-events: none; }

/* GOMBOK */
.btn {
    display: inline-block; background-color: var(--accent); color: white;
    padding: 16px 40px; border-radius: 50px; font-weight: 600;
    transition: transform 0.3s; box-shadow: 0 4px 14px 0 rgba(0,113,227,0.39);
    cursor: pointer; border: none; font-size: 1rem; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-link { color: var(--accent); font-weight: 700; margin-top: 20px; display: inline-block; }
.btn-link:hover { text-decoration: underline; }

/* ========================================= */
/* --- 4. SZEKCIÓK (Grid, Stacked, Features) --- */
/* ========================================= */
section { padding: 80px 20px; position: relative; z-index: 10; background: var(--white); width: 100%; }
.bg-gray { background-color: var(--bg-gray); }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }

.section-header { text-align: center; max-width: 800px; margin: 0 auto 20px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 20px; }

/* STACKED CARDS (Főoldal) */
.stacked-container { max-width: 1000px; margin: 0 auto; position: relative; padding-bottom: 80px; z-index: 1; }
.stack-card {
    position: sticky; background: var(--white); border-radius: 30px; padding: 50px;
    margin-bottom: 50px; box-shadow: 0 -10px 40px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.05);
    display: flex; align-items: center; gap: 40px; overflow: visible; z-index: 1;
}
/* Alapértelmezett desktop pozíciók */
.stack-card:nth-child(1) { top: 90px; z-index: 1; }
.stack-card:nth-child(2) { top: 120px; z-index: 2; }
.stack-card:nth-child(3) { top: 150px; z-index: 3; }
.stack-card:nth-child(4) { top: 180px; z-index: 4; }
.stack-card:nth-child(5) { top: 210px; z-index: 5; }

.stack-content { flex: 1; }
.stack-icon { font-size: 3rem; margin-bottom: 15px; display: block; }
.stack-img { flex: 1; height: 300px; border-radius: 20px; overflow: hidden; display: none; }
@media (min-width: 768px) { .stack-img { display: block; } }
.stack-img img { width: 100%; height: 100%; object-fit: cover; }

/* DETAILS GRID (Szolgáltatás aloldalak) */
.details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 40px; }
.detail-card { background: var(--bg-gray); padding: 30px; border-radius: 16px; border-left: 4px solid var(--accent); }
.detail-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--primary); }

/* CHECKLIST */
.check-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 1.1rem; color: var(--text-light); }
.check-list li::before { content: '✔'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

/* FEATURES GRID (Miért mi) */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature-card { padding: 20px; border: 1px solid #eee; border-radius: 12px; }
.feature { display: flex; align-items: flex-start; }
.feature-icon { font-size: 1.5rem; margin-right: 15px; color: var(--accent); flex-shrink: 0; }

/* PROCESS ROW (Folyamat) */
.process-row { display: flex; align-items: center; justify-content: space-between; gap: 50px; margin-bottom: 100px; }
.process-row:nth-child(even) { flex-direction: row-reverse; }
.process-text { flex: 1; }
.process-number { font-size: 3.5rem; font-weight: 800; color: #e5e5e7; display: block; margin-bottom: 15px; }
.process-img { flex: 1; min-height: 300px; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.process-img img { width: 100%; height: 100%; object-fit: cover; }

/* ========================================= */
/* --- 5. BLOG STÍLUSOK --- */
/* ========================================= */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.blog-card {
    background: var(--white); border-radius: 20px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: 0.3s;
    display: flex; flex-direction: column; height: 100%; border: 1px solid rgba(0,0,0,0.05);
    opacity: 0; transform: translateY(20px); transition: 0.5s ease;
}
.blog-card.active { opacity: 1; transform: translateY(0); }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.blog-img-container { width: 100%; height: 220px; overflow: hidden; background: #eee; }
.blog-img-container img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.blog-card:hover img { transform: scale(1.05); }
.blog-content { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.read-more-btn { margin-top: auto; display: inline-block; padding: 10px 20px; background: var(--accent); color: white; border-radius: 50px; font-size: 0.9rem; }

/* Blog Carousel (Kezdőlap) */
.blog-carousel {
    display: flex; overflow-x: auto; gap: 20px; padding: 10px 5px 30px 5px; min-height: 400px;
    transform: translate3d(0, 0, 0); will-change: scroll-position;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: thin;
    cursor: grab; user-select: none;
}
.blog-carousel.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.blog-carousel.is-empty { overflow: hidden; cursor: default; justify-content: center; align-items: center; min-height: 300px; display: flex; }
.blog-card-item {
    flex: 0 0 300px; scroll-snap-align: start; background: var(--white); border-radius: 20px; overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; border: 1px solid rgba(0,0,0,0.05);
    display: flex; flex-direction: column; transform: translate3d(0, 0, 0); z-index: 1; opacity: 0; animation: fadeInCard 0.5s ease forwards;
}
@keyframes fadeInCard { to { opacity: 1; } }
.blog-card-img { width: 100%; height: 180px; object-fit: cover; background: #eee; }
.blog-card-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }

/* Empty State */
.carousel-empty, .empty-state { width: 100%; text-align: center; color: #777; padding: 40px; display: none; font-size: 1.1rem; }
.empty-icon { font-size: 3rem; margin-bottom: 15px; display: block; opacity: 0.5; }
.loading { text-align: center; padding: 40px; font-weight: bold; color: #999; }

/* Blog Post Cikk (Egyedi oldal) */
.article-container { max-width: 800px; margin: 0 auto; padding: 0 20px 80px; }
.highlight-box { background: var(--bg-gray); padding: 30px; border-radius: 16px; border-left: 4px solid var(--accent); margin: 40px 0; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 40px 0; }
.comp-col { padding: 25px; border-radius: 12px; }
.comp-bad { background-color: #fff5f5; border: 1px solid #ffe0e0; }
.comp-good { background-color: #f0f9ff; border: 1px solid #e0f2fe; }
.comp-title { font-weight: 800; font-size: 1.1rem; display: block; margin-bottom: 15px; text-transform: uppercase; }
.comp-bad .comp-title { color: #d32f2f; }
.comp-good .comp-title { color: #0288d1; }
.cta-box { background-color: var(--primary); color: white; text-align: center; padding: 60px 40px; border-radius: 20px; margin-top: 80px; }
.btn-cta { display: inline-block; background-color: var(--accent); color: white; padding: 16px 40px; border-radius: 50px; font-weight: 600; margin-top: 20px; border: none; cursor: pointer; text-decoration: none; }

/* ========================================= */
/* --- 6. KAPCSOLAT & FOOTER --- */
/* ========================================= */
footer { background: #111; color: #fff; padding: 80px 20px; text-align: center; }
.contact-links { display: flex; justify-content: center; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.contact-link { color: white; opacity: 0.8; font-weight: 500; font-size: 1.1rem; }
.contact-link:hover { opacity: 1; color: var(--accent); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.info-icon { width: 50px; height: 50px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--accent); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.info-item { margin-bottom: 30px; display: flex; align-items: center; gap: 15px; }
.contact-form-card { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }

/* Booking Section */
.booking-section { padding: 80px 20px; background: var(--white); text-align: center; }
.booking-container { max-width: 1000px; margin: 0 auto; box-shadow: 0 10px 40px rgba(0,0,0,0.08); border-radius: 20px; overflow: hidden; background: white; border: 1px solid rgba(0,0,0,0.05); }
.calendar-wrapper { position: relative; width: 100%; height: 700px; }
.calendar-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.calendly-inline-widget { width: 100%; min-width: 320px; }

/* Modal */
.modal-overlay { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.6); backdrop-filter: blur(5px); align-items: center; justify-content: center; animation: fadeIn 0.3s; }
.modal-content { background-color: #fefefe; margin: auto; padding: 40px; border: 1px solid #888; width: 90%; max-width: 500px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); position: relative; animation: slideUp 0.3s; }
.form-group { margin-bottom: 15px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.9rem; color: #333; }
.form-control { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 8px; font-size: 1rem; font-family: inherit; transition: border-color 0.3s; }
.form-control:focus { outline: none; border-color: var(--accent); }
textarea.form-control { resize: vertical; min-height: 100px; }
.g-recaptcha { margin-bottom: 20px; }
.modal-buttons { display: flex; gap: 10px; margin-top: 20px; justify-content: flex-end; }
.btn-close { background-color: transparent; color: #666; border: 1px solid #ccc; padding: 12px 25px; border-radius: 50px; cursor: pointer; font-weight: 600; }

@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
@keyframes slideUp { from {transform: translateY(50px);} to {transform: translateY(0);} }

/* ========================================= */
/* --- 8. MOBIL BEÁLLÍTÁSOK (JAVÍTOTT) --- */
/* ========================================= */
@media (max-width: 768px) {
    
    /* 1. TARTALOM IGAZÍTÁS */
    html, body {
        width: 100%;
        max-width: 100vw;
        /* Overflow-x kivéve a bodyból a sticky miatt! */
    }

    /* Kisebb betűméret */
    h1 { line-height: 1.2; font-size: 1.9rem; } 
    h2 { font-size: 1.7rem; }
    
    section { padding: 60px 20px; }
    
    /* 2. MENÜ JAVÍTÁSOK */
    .nav-links {
        position: fixed; 
        left: -100%; 
        top: 0; 
        width: 100%; 
        height: 100vh;
        flex-direction: column; 
        background: var(--white); 
        justify-content: center;
        align-items: center; 
        transition: 0.3s; 
        z-index: 999;
        overflow-y: auto; 
        padding: 0; 
    }
    
    .nav-links li { width: 100%; text-align: center; } 
    .nav-links.active { left: 0; }
    .nav-links a { color: var(--primary) !important; font-size: 1.5rem; margin: 15px 0; display: block; }
    
    .hamburger { display: block; z-index: 1001; }
    
    body:not(.home-page) .navbar:not(.scrolled) .bar { background-color: white; } 
    .hamburger.active .bar { background-color: var(--primary) !important; }

    .dropdown-content {
        position: static; transform: none; box-shadow: none; border: none;
        background: #f5f5f7; width: 100%; text-align: center; padding: 0; margin-top: 0;
    }
    .dropdown-content::before,
    .dropdown-content::after { 
        display: none; 
    }
    .dropdown-content a { padding: 15px; font-size: 1.2rem; }
    
    /* 3. STACKED KÁRTYÁK JAVÍTÁSA */
    .stack-card { 
        height: auto; 
        max-height: none; 
        flex-direction: column; 
        text-align: left; 
        padding: 30px 20px; 
        gap: 15px;
        position: sticky; 
        background: var(--white);
        margin-bottom: 20px;
    }
    
    .stack-card:nth-child(1) { top: 90px; z-index: 1; } 
    .stack-card:nth-child(2) { top: 105px; z-index: 2; } 
    .stack-card:nth-child(3) { top: 120px; z-index: 3; } 
    .stack-card:nth-child(4) { top: 135px; z-index: 4; }
    .stack-card:nth-child(5) { top: 150px; z-index: 5; }
    .stack-img { display: none; }
    
    /* 4. GRID OVERRIDE & KÉPEK JAVÍTÁSA */
    .container > div[style*="grid-template-columns"],
    .comparison-grid,
    .blog-grid,
    .contact-grid,
    .features-grid,
    .details-grid { 
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    /* KÉPEK MEGJELENÍTÉSE MOBILON */
    /* Ez javítja a "hibás" képeket a folyamat szekcióban */
    .process-img {
        width: 100%;
        height: 250px; /* Fix magasság mobilon, hogy látszódjon */
        min-height: auto;
    }
    .process-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* EGYÉB IGAZÍTÁSOK */
    .blog-card-item { flex: 0 0 85vw; }
    .process-row, .process-row:nth-child(even) { flex-direction: column; text-align: left; gap: 30px; }
    .modal-content { padding: 25px; width: 95%; }
    
    /* 5. BREADCRUMB ÉS FEJLÉC JAVÍTÁS */
    .breadcrumb-nav { 
        top: 90px; 
        width: 100%; 
        padding: 0 20px; 
        box-sizing: border-box; 
    }
    
    .breadcrumb {
        flex-wrap: wrap; 
    }
    
    .breadcrumb li {
        word-break: break-word;
        line-height: 1.4;
    }
    
    header { 
        padding-top: 150px; 
        padding-left: 20px;
        padding-right: 20px;
        overflow: hidden; 
    }
    
    body.home-page header { padding-top: 0; } 
    
    .calendar-wrapper { height: 800px; }
    
    .btn { width: 100%; box-sizing: border-box; } 
}

/* --- Karrier Oldal Stílusok --- */

.career-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Szekció */
.career-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

.career-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #111;
}

.career-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Értékek (Kártyák) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card h3 {
    margin-top: 0;
    color: #222;
    margin-bottom: 10px;
}

/* Álláslista Konténer */
.jobs-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.jobs-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

/* Empty State (Üres állapot) */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px dashed #ccc;
}

.empty-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #888;
    display: block;
}

.empty-state h3 {
    margin: 10px 0;
    color: #444;
}

.empty-state p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.linkedin-btn {
    display: inline-block;
    background-color: #0077b5;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.linkedin-btn:hover {
    background-color: #005582;
}

/* Állás Kártyák (Ha van találat) */
.job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    transition: all 0.2s ease;
}

.job-card:hover {
    border-color: #ccc;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.job-details {
    flex-grow: 1;
}

.job-title {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: #222;
}

.job-meta-row {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.salary-badge {
    background-color: #eef7ee;
    color: #2e7d32;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* "Érdekel" Gomb */
.job-action {
    margin-left: 30px;
    flex-shrink: 0;
}

.btn-interested {
    display: inline-block;
    background-color: #222;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-interested:hover {
    background-color: #444;
}

/* Mobil nézet (Reszponzivitás) */
@media (max-width: 600px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-action {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
    
    .btn-interested {
        display: block;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .job-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}