@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-color: #fbfbfd;
    --text-color: #1d1d1f;
    --accent-color: #0071e3;
    --secondary-bg: #f5f5f7;
    --border-color: #d2d2d7;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Navigáció */
header {
    position: fixed; top: 0; width: 100%; height: 52px;
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    max-width: 1000px; margin: 0 auto; height: 100%;
    display: flex; justify-content: space-between; align-items: center; padding: 0 20px;
}

.logo { font-weight: 600; text-decoration: none; color: var(--text-color); font-size: 1.1rem; }

.nav-links { list-style: none; display: flex; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--text-color); font-size: 0.85rem; opacity: 0.8; transition: 0.3s; }
.nav-links a:hover { opacity: 1; color: var(--accent-color); }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 4px; }
.hamburger div { width: 22px; height: 2px; background: var(--text-color); }

/* Hero szekció */
.hero {
    height: 70vh; display: flex; align-items: center; justify-content: center;
    background: #000 url('hero.jpg') center/cover no-repeat;
    color: white; text-align: center; position: relative;
}
.hero h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 600; letter-spacing: -2px; }

/* Szolgáltatás Kártyák (Főoldal) */
.services-container {
    max-width: 1100px; margin: -60px auto 50px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; padding: 0 20px;
}
.service-card {
    background: white; border-radius: 22px; padding: 40px 20px; text-align: center;
    text-decoration: none; color: var(--text-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.service-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.service-card p { color: #86868b; font-size: 0.95rem; }

/* Tartalom */
.container { max-width: 900px; margin: 80px auto; padding: 40px 20px; }
.section-title { font-size: 2.5rem; font-weight: 600; text-align: center; margin-bottom: 40px; }

video, .main-img { 
    width: 100%; border-radius: 20px; margin-bottom: 30px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Form */
.contact-box { background: white; padding: 40px; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid #f0f0f2; }
.apple-input {
    width: 100%; padding: 16px; margin-bottom: 15px; border-radius: 12px;
    border: 1px solid var(--border-color); background: var(--secondary-bg);
    font-size: 1rem; outline: none; transition: 0.3s;
}
.apple-input:focus { border-color: var(--accent-color); background: white; box-shadow: 0 0 0 4px rgba(0,113,227,0.1); }
.btn { 
    background: var(--accent-color); color: white; padding: 14px 28px; border: none; 
    border-radius: 25px; cursor: pointer; font-weight: 500; font-size: 1rem; width: 100%;
}

/* Admin Panel */
.admin-card { 
    background: white; border-radius: 16px; padding: 25px; margin-bottom: 20px; 
    border-left: 6px solid #ccc; box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.status-select { padding: 10px; border-radius: 10px; border: 1px solid #d2d2d7; margin-top: 15px; font-family: inherit; }

/* Állapot színek */
.status-Megkezdetlen { border-left-color: #ff3b30; }
.status-Tárgyalás { border-left-color: #ff9500; }
.status-Leforgatva { border-left-color: #5856d6; }
.status-Utómunkázva { border-left-color: #34c759; }
.status-Kifizetve { border-left-color: #0071e3; background: #f0f9ff; }

/* Animációk */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Footer */
footer { background: var(--secondary-bg); padding: 50px 20px; text-align: center; border-top: 1px solid var(--border-color); }
.copy { font-size: 0.8rem; color: #86868b; margin-top: 20px; }

@media (max-width: 768px) {
    .services-container { grid-template-columns: 1fr; margin-top: 20px; }
    .nav-links { display: none; }
}