/* --- ALAP BEÁLLÍTÁSOK --- */
:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #888;
    --gold-hover: #D4AF37;
    --nav-bg: rgba(5, 5, 5, 0.95);
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    scroll-behavior: smooth;
    overflow-x: hidden; /* Vízszintes görgetés tiltása */
}

html {
    scroll-padding-top: 100px;
}

/* --- NAVIGÁCIÓ (Desktop & Mobil Logika) --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: var(--nav-bg);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobil Logo (Alapból rejtve Desktopon) */
.mobile-logo {
    display: none;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

/* Menü Lista */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
    width: 100%;
    justify-content: center;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--gold-hover);
}

/* Hamburger Ikon (Alapból rejtve) */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001; /* Hogy mindig felül legyen */
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
}

/* Kiemelt Várólista Gomb */
.nav-book-btn {
    border: 1px solid var(--gold-hover);
    padding: 8px 20px;
    border-radius: 2px;
    color: var(--gold-hover) !important;
    transition: all 0.3s ease;
}

.nav-book-btn:hover {
    background-color: var(--gold-hover);
    color: #050505 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Nyelvválasztó */
.lang-switch-container {
    margin-left: 10px;
}

.lang-switch {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    border-radius: 30px; 
    padding: 3px;
}

.lang-btn {
    padding: 4px 12px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    border-radius: 20px;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.lang-btn.active {
    background-color: #fff; 
    color: #111; 
}

/* --- MOBIL NÉZET ÉS ANIMÁCIÓ --- */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: #050505;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateX(100%); /* Eltoljuk oldalra */
        transition: transform 0.5s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0%); /* Beúsztatjuk */
    }

    .nav-links li {
        opacity: 0; /* Alapból átlátszó, hogy beússzon */
    }

    .nav-links.active li {
        opacity: 1;
        transition: opacity 0.5s ease 0.3s;
    }

    .nav-links li a {
        font-size: 1.2rem; /* Mobilon nagyobb betűk */
    }

    .hamburger {
        display: block; /* Megjelenítjük az ikont */
    }
    
    .mobile-logo {
        display: block; /* Megjelenítjük a logót a sarokban */
    }

    .nav-container {
        justify-content: space-between; /* Széthúzzuk a logót és a hamburgert */
    }

    /* Hamburger Animáció (X alak) */
    .hamburger.open span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: var(--gold-hover);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: var(--gold-hover);
    }
    
    .lang-switch-container {
        margin-left: 0;
        margin-top: 20px;
    }
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
}

h2 {
    font-size: 2rem;
    letter-spacing: 0.3rem;
    margin-bottom: 3rem;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

p {
    line-height: 1.6;
    font-weight: 300;
}

/* --- HERO SZEKCIÓ --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle, rgba(20,20,20,1) 0%, rgba(5,5,5,1) 100%);
    padding-top: 80px;
}

.hero-title {
    font-size: 4rem;
    letter-spacing: 0.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--gold-hover);
    margin: 0 auto 30px auto;
}

.subtitle {
    font-size: 0.8rem;
    color: var(--accent-color);
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.cta-button {
    padding: 15px 40px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* --- SZEKCIÓK --- */
section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Filozófia */
.text-center-section {
    text-align: center;
    max-width: 700px;
}

.philosophy-text {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 2;
}

/* --- ÁRAK / KÁRTYÁS RENDSZER --- */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #222;
    padding: 40px 30px;
    width: 300px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--gold-hover);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
}

.pricing-card.featured {
    border-color: var(--gold-hover);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-hover);
    color: #000;
    padding: 4px 12px;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.pricing-card .price {
    font-size: 1.8rem;
    color: var(--gold-hover);
    font-weight: 600;
    margin-bottom: 5px;
}

.pricing-card .frequency {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-card .features li {
    padding: 12px 0;
    border-bottom: 1px dotted #333;
    color: #999;
    font-size: 0.85rem;
}

.pricing-card .features li:last-child {
    border-bottom: none;
}

/* --- KAPCSOLAT --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    text-align: center;
}

.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.gold-text {
    font-size: 0.8rem; 
    letter-spacing: 2px; 
    color: var(--gold-hover);
}

/* --- HOMÁLYOSÍTOTT TÉRKÉP --- */
.map-container {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    border: 1px solid #222;
}

.blurred-map iframe {
    filter: grayscale(100%) invert(92%) contrast(83%) blur(8px);
    transform: scale(1.1);
    opacity: 0.6;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    background: rgba(5, 5, 5, 0.85);
    padding: 20px 40px;
    border: 1px solid var(--gold-hover);
}

.map-overlay i {
    font-size: 1.5rem;
    color: var(--gold-hover);
    margin-bottom: 15px;
    display: block;
}

.map-overlay span {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid #111;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.social-icons a {
    color: #888;
    font-size: 3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--gold-hover);
}

/* --- TOVÁBBI MOBIL FINOMHANGOLÁS --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card {
        width: 100%;
    }
}