/* --- ALAP BEÁLLÍTÁSOK --- */
:root {
    --primary: #0071e3;    /* Apple kék */
    --secondary: #1d1d1f;  /* Apple fekete */
    --accent: #f5f5f7;     /* Háttér szürke */
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--accent);
    color: var(--secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 { margin: 0; font-weight: 700; }
a { text-decoration: none; color: inherit; }

/* --- NAVIGÁCIÓ --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary);
}

/* FONTOS: Logó kép méretezése */
.logo img {
    height: 40px; /* Fix magasság, hogy ne tolja szét a menüt */
    width: auto;
    display: block;
}

.menu a { margin-left: 20px; font-weight: 500; transition: color 0.3s; }
.menu a:hover { color: var(--primary); }

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
    transition: 0.3s;
}
.btn-nav:hover { background: #005bb5; }

/* --- HERO SZEKCIÓ --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 50px 100px;
    background: white;
    min-height: 60vh;
}

.hero-content { max-width: 50%; }
.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(#333, #0071e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p { font-size: 18px; color: #666; margin-bottom: 30px; }

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transform: rotate(-5deg);
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,113,227,0.4);
}
.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 15px;
    transition: 0.3s;
}
.btn-outline:hover { background: white; color: var(--secondary); }

/* --- STATUS CHECKER (GLASS CARD) --- */
.status-section { margin-top: -50px; padding: 0 20px; position: relative; z-index: 2; }
.container { max-width: 1100px; margin: 0 auto; padding: 50px 0; }

.status-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.05);
}

.icon-box { font-size: 40px; color: var(--primary); margin-bottom: 15px; }

.search-form { display: flex; gap: 10px; margin-top: 20px; }
.search-form input {
    flex: 1; padding: 15px; border: 2px solid #eee; border-radius: 10px; font-size: 16px; outline: none; transition: 0.3s;
}
.search-form input:focus { border-color: var(--primary); }
.search-form button {
    background: var(--secondary); color: white; border: none; padding: 0 25px; border-radius: 10px; cursor: pointer; font-size: 16px; font-weight: 600; transition: 0.3s;
}
.search-form button:hover { background: #000; }

/* Eredmény doboz */
.result-box { margin-top: 20px; padding: 20px; border-radius: 10px; text-align: center; }
.result-box.success { background: #e3f9e5; color: #1f7a36; border: 1px solid #ccebd1; }
.result-box.warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.result-box.error { background: #ffebee; color: #c62828; }
.result-box.default { background: #f8f9fa; color: #333; }

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    background: white;
    font-weight: bold;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 18px;
    text-transform: uppercase;
}

/* --- SZOLGÁLTATÁSOK GRID --- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.card {
    background: white; padding: 30px; border-radius: 20px; text-align: center; transition: 0.3s; border: 1px solid transparent;
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: #eee; }
.card i { font-size: 40px; color: var(--primary); margin-bottom: 20px; }

/* --- EGYÉB SZEKCIÓK --- */
.info-section { text-align: center; padding: 80px 20px; }
.info-section.dark-bg { background: var(--secondary); color: white; }
.section-title { text-align: center; font-size: 32px; margin-bottom: 20px; }

footer {
    text-align: center; padding: 40px; background: white; color: #888; border-top: 1px solid #eee;
}

/* Mobil nézet */
@media (max-width: 768px) {
    .navbar { padding: 15px 20px; }
    .hero { flex-direction: column; text-align: center; padding-top: 100px; }
    .hero-content { max-width: 100%; }
    .hero-image { margin-top: 40px; }
    .menu { display: none; } /* Egyszerűsített menü mobilon */
}