/* --- 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);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* A nav magasságához igazítva */
}

/* --- NAVIGÁCIÓ --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: var(--nav-bg);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
}

nav ul 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 ul li a:hover {
    color: var(--gold-hover);
}

/* --- ÚJ NAVIGÁCIÓS GOMB STÍLUS (GLOBLÁLIS) --- */
.nav-book-btn {
    border: 1px solid var(--gold-hover); /* Arany keret mindig */
    padding: 6px 18px;
    border-radius: 4px;
    color: var(--gold-hover) !important; /* Arany szöveg */
    transition: all 0.3s ease;
    /* Extra kiemelés, hogy gombnak hasson */
    margin-right: 15px; 
}

.nav-book-btn:hover {
    background-color: var(--gold-hover);
    color: #050505 !important; /* Fekete szöveg hoverkor */
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* --- MOBIL NÉZET IGAZÍTÁS --- */
@media (max-width: 768px) {
    .nav-book-btn {
        margin-right: 0;   
        margin-top: 8px;      
        padding: 8px 25px;   
    }
}

/* --- 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.4); 
    border-radius: 30px; 
    padding: 3px;
}

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

.lang-btn:hover:not(.active) {
    color: rgba(255, 255, 255, 0.8);
}

.lang-btn.active {
    background-color: #fff; 
    color: #111; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); 
}

/* --- 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;
    text-align: center;
    border-bottom: 1px solid #333;
    display: inline-block;
    padding-bottom: 10px;
}

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

.hero-logo {
    width: 250px;
    margin-bottom: 1.5rem;
    /* Blend mode trükk a fekete háttér eltüntetésére */
    filter: grayscale(100%) contrast(1.5);
    mix-blend-mode: screen; 
    opacity: 0.9;
}

img{
    pointer-events: none;      
    user-select: none;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: 0.5rem;
    margin-top: 0;
}

p.subtitle {
    font-size: 0.9rem;
    color: var(--accent-color);
    letter-spacing: 0.4rem;
    margin-top: 1rem;
    text-transform: uppercase;
}

.cta-button {
    margin-top: 2rem;
    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 ÁLTALÁNOS --- */
section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* --- ÁRLISTA --- */
.services-list {
    width: 100%;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    border-bottom: 1px dotted #333;
    padding-bottom: 0.5rem;
}

.service-name {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.service-price {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold-hover);
}

.service-desc {
    font-size: 0.8rem;
    color: #666;
    margin-top: -1rem;
    margin-bottom: 2rem;
    display: block;
}

/* --- GALÉRIA --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid #222;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.7) grayscale(30%);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1) grayscale(0%);
}

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

.contact-info p {
    color: #888;
    line-height: 1.8;
    letter-spacing: 1px;
}

.contact-info strong {
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #333;
    border-radius: 50%;
}

.social-icons a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(201, 90, 73, 0.3);
}

/* --- RESPONSIVE / MOBIL NÉZET --- */
@media (max-width: 790px) {
    /* Menü mobil optimalizálás */
    nav {
        padding: 10px 0;
    }
    
    nav ul {
        flex-wrap: wrap; 
        padding: 0 10px;
        gap: 10px; /* Kisebb hézag */
        justify-content: center;
    }

    nav ul li a {
        font-size: 0.65rem; 
        padding: 5px;
    }

    .lang-switch-container {
        width: 100%; 
        display: flex;
        justify-content: center; 
        margin-left: 0;
        margin-top: 5px; 
    }

 .hero {
        padding-top: 110px; 
        justify-content: flex-start; 
    }

    .hero-logo {
        width: 150px; 
        margin-top: 50px;
    }

    /* Egyéb elemek */
    h1 { font-size: 2rem; }
    .hero-logo { width: 180px; }
    
    .contact-grid { 
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    
    .service-item { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
    }
    
    .service-desc { 
        text-align: center; 
        margin-top: 0.5rem; 
    }
}