/* --- ALAP BEÁLLÍTÁSOK & VÁLTOZÓK --- */
:root {
    --bg-main: #0a0a0a; /* Nagyon sötét szürke, majdnem fekete */
    --bg-alt: #111111; /* Kicsit világosabb sötétszürke kártyáknak */
    --text-main: #ffffff; /* Tiszta fehér a kontrasztért */
    --text-muted: #a0a0a0; /* Világosszürke a bekezdéseknek */
    --accent: #e5e5e5; /* Acélos/Ezüstös akcentus szín */
    --border-color: #333333;
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

/* --- TIPOGRÁFIA --- */
h1, h2, h3, h4, .logo {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

h1 span {
    color: transparent;
    -webkit-text-stroke: 2px var(--text-main); /* Modern körvonalas szöveg effekt */
}

h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
p { color: var(--text-muted); margin-bottom: 1rem; }

.text-center { text-align: center; }

/* --- GOMBOK --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0; /* Szögletes, férfias formák */
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--text-main);
    color: var(--bg-main);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--text-main);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-main);
    color: var(--text-main);
}

.btn-outline:hover {
    background-color: var(--text-main);
    color: var(--bg-main);
}

.w-100 { width: 100%; }

/* --- KONTÉNEREK --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: 8rem 0; }
.bg-darker { background-color: var(--bg-alt); }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.align-top { align-items: start; }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* --- NAVIGÁCIÓ --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    transition: var(--transition);
    z-index: 1000;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 2rem; color: var(--text-main); }

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; transition: var(--transition); }
.nav-links a:hover { color: var(--text-muted); }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span { width: 30px; height: 3px; background-color: var(--text-main); transition: var(--transition); }

/* --- HERO SZEKCIÓ --- */
.hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding-left: 2rem;
}

.hero-btns { display: flex; gap: 1rem; margin-top: 2rem; }

/* --- SZOLGÁLTATÁSOK --- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--text-main);
    transform: translateX(10px);
}

.highlight-card {
    background-color: #1a1a1a;
    border-left: 4px solid var(--text-main);
}

.service-info h3 { margin-bottom: 0.2rem; }
.service-info p { margin-bottom: 0; font-size: 0.9rem; }
.service-price {
    font-size: 1.5rem;
    font-weight: 900;
    white-space: nowrap;
    margin-left: 1rem;
}

/* --- RÓLUNK --- */
.about-img img {
    width: 100%;
    filter: grayscale(100%); /* Fekete-fehér hatás az eleganciáért */
    transition: var(--transition);
}
.about-img img:hover { filter: grayscale(0%); }

.stats { display: flex; gap: 3rem; margin-top: 3rem; border-top: 1px solid var(--border-color); padding-top: 2rem; }
.stat h4 { font-size: 2.5rem; margin-bottom: 0; }
.stat span { color: var(--text-muted); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* --- KAPCSOLAT / FORM --- */
.info-item { margin-bottom: 2rem; }
.info-item p { font-size: 1.1rem; color: var(--text-main); }

.booking-form-container {
    background-color: var(--bg-alt);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.booking-form-container h3 { margin-bottom: 2rem; text-align: center; }

input, select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1rem;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--text-main);
}

/* --- FOOTER --- */
.footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-main);
}

.footer .logo { font-size: 1.5rem; margin-bottom: 1rem; display: block; }
.footer p { margin-bottom: 0.5rem; font-size: 0.9rem; }
.dev-credit { margin-top: 2rem !important; font-size: 0.8rem; color: #555 !important; }
.dev-credit a { color: var(--text-main); font-weight: 700; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
    .about-img { order: -1; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background-color: rgba(10, 10, 10, 0.98);
        flex-direction: column; align-items: center;
        padding: 2rem 0; border-bottom: 1px solid var(--border-color);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }
    .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .nav-btn { display: none; }
    .hero-content { padding-left: 0; text-align: center; margin: 0 auto; }
    .hero-overlay { background: rgba(10,10,10,0.7); }
    .hero-btns { justify-content: center; flex-direction: column; }
    .service-card { flex-direction: column; text-align: center; gap: 1rem; }
    .service-price { margin-left: 0; }
}