/* Alap beállítások */

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

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* --- HERO SZEKCIÓ --- */
.hero {
    height: 100vh;
    width: 100%;
    /* A background sort innen KIVETTÜK, mert lejjebb rakjuk! */
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    position: relative; /* Ez nagyon fontos, hogy itt maradjon! */
    overflow: hidden;   /* Ez vágja le a kilógó homályos széleket */
    z-index: 1;         /* Biztosítja, hogy a tartalom felül legyen */
}

/* Itt hozzuk létre a homályos hátteret: */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../pictures/hatter5.webp") no-repeat left center/cover;
    
    /* Ez csinálja a homályosítást (állítsd a számot kedvedre) */
    filter: blur(5px); 
        z-index: -1; 
        transform: scale(1.1); 
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #5a4a42;
}

.top-title {
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 200px;
    color: #111413;
}

.main-title {
    font-family: 'Great Vibes', serif;
    font-weight: 200;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    margin-bottom: 20px;
}

.main-title .saray {
    font-size: 7rem;
    letter-spacing: 5px;
    color: #111413;
}

.main-title .compliance {
    font-size: 6rem;
    letter-spacing: 3px;
    color: #111413;
}

.quote {
    font-style: italic;
    color: #7a6e66;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.btn-scroll {
    /* 1. HÁTTÉRSZÍN: Egy félig átlátszó fehér (vagy bármilyen szín) */
    /* Az utolsó szám (0.3) az átlátszóság: 0 = láthatatlan, 1 = tömör */
    background-color: rgba(255, 255, 255, 0.3);

    /* 2. ELMOSÁS: Ez csinálja a "homályos" hatást a gomb mögött */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Ez a Safari böngészőhöz kell */

    /* A többi marad a régi (keret javítva) */
    border: 2px solid #111413;
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #111413;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-scroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 2;
}

.hero-nav a {
    text-decoration: none;
    color: #5a4a42;
    margin-right: 30px;
    font-size: 1.2rem;
    font-family: 'Montserrat', serif;
}

/* --- TEVÉKENYSÉGEK SZEKCIÓ --- */
.activities-section {
    background-color: #111413;
    padding: 80px 40px;
    min-height: 100vh;
    color: #cbbba0; 
}

.section-title {
    text-align: center;
    font-family: serif;
    font-size: 2.5rem;
    color: #a68b5b; 
    margin-bottom: 60px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    text-align: center;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
}

.image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card:hover .image-wrapper img {
    transform: scale(1.05);
}

.card a {
    font-size: 1rem;
    color: #d4bc8b;
    margin-bottom: 15px;
    font-weight: 700;
    text-decoration: none;
}

.card p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 60px;
}

.read-more {
    text-decoration: none;
    color: #a68b5b;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: border 0.3s;
}

.read-more:hover {
    border-bottom: 1px solid #a68b5b;
}

/* --- FOOTER (LÁBLÉC) --- */

.adatvedelem-footer{
    color: #a68b5b;
    opacity: 0.7;
}
.adatvedelem-footer:hover{
    color: #846f4c;
}

.site-footer {
    background-color: #111413;
    color: #888;
    padding: 60px 20px 20px;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-family: 'Montserrat', serif;
    color: #a68b5b;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbbba0;
}

.small-info {
    font-size: 0.75rem !important;
    color: #555 !important;
    margin-top: 5px;
}

.contact-link {
    color: #cbbba0;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: #fff;
    border-bottom: 1px solid #a68b5b;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.8rem;
    color: #444;
}

/* --- RÓLUNK (ABOUT) SZEKCIÓ --- */
.about-section {
    position: relative;
    width: 100%;
    /* min-height marad, de az overflow-t kivettük! */
    min-height: 80vh; 
    background: url('../pictures/hatter2.webp') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Ehelyett fentről induljon */
    
    color: #a68b5b;
}


.about-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(25, 30, 25, 0.92);
    z-index: 1;
}

.about-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    
    /* EZT TÖRÖLTÜK: height: 100%; -> Hogy a szöveg szét tudja nyomni a dobozt */
    /* height: 100%; */
    height: auto; /* Ehelyett automata magasság */
    
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
}

.about-container h1 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-container h2{
    font-size: 18px;
    font-weight: 800;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-container p {
        margin-bottom: 15px;
        text-align: justify !important;
}

ul, ol {
        margin-bottom: 20px;
        padding-left: 30px;
}

li {
    margin-bottom: 8px;
}

.sub-heading {
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    margin-top: 20px;
}

.about-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-name {
    font-family: 'Montserrat',serif !important;
    font-size: 2.5em !important;
    font-weight: 400 !important;
    color: #a68b5b !important;
}

.about-vegzettsegek {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #cbbba0;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.menu-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #a68b5b;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.about-line {
    border: 0;
    height: 1px;
    background: #a68b5b;
    opacity: 0.5;
    margin-bottom: 40px;
    width: 100%;
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    color: #8c7b70;
    font-size: 1.1rem;
    max-width: 90%;
    line-height: 1.6;
}

.about-contact-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #a68b5b;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
    font-weight: 600;
}

.about-contact-btn:hover {
    opacity: 0.7;
}


/* --- RAGADÓS FEJLÉC --- */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 40px 60px;
    transition: all 0.4s ease;
    background: transparent;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    font-family: 'Great Vibes', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #a68b5b; 
    text-decoration: none;
    letter-spacing: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
}


/* --- ASZTALI MENÜ LINKEK (Középről induló aláhúzással) --- */
.nav-links-desktop a {
    position: relative; 
    text-decoration: none;
    color: #a68b5b;
    margin-left: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s;
    padding-bottom: 5px; 
}

.nav-links-desktop a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;       
    bottom: 0;         
    left: 0;
    background-color: #a68b5b; 
    
    /* A VARÁZSLAT ITT TÖRTÉNIK: */
    transform: scaleX(0);      
    transform-origin: center;  
    transition: transform 0.3s ease-out; 
}

.nav-links-desktop a:hover::after {
    transform: scaleX(1); 
}

.nav-links-desktop a:hover {
    color: #a68b5b; 
}


/* Hamburger ikon alapból rejtve van */
.hamburger-icon {
    display: none; 
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger-icon span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #a68b5b;
    transition: 0.3s;
}

/* --- GÖRGÉTETT ÁLLAPOT (JS adja hozzá ezt az osztályt) --- */
.fixed-nav.scrolled {
    padding: 15px 40px;
    background-color: #111413;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.fixed-nav.scrolled .nav-logo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    color: #a68b5b;
}

.fixed-nav.scrolled .nav-links-desktop {
    display: none;
}

.fixed-nav.scrolled .hamburger-icon {
    display: flex;
}

/* --- OLDALSÁV MENÜ (SIDEBAR) --- */
.fullscreen-menu-overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 0;
    background-color: #111413;
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    border-left: 1px solid #333;
    overflow-x: hidden;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fullscreen-menu-overlay.open {
    width: 400px;
}

.overlay-content {
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s;
    transition-delay: 0.2s;
}

.fullscreen-menu-overlay.open .overlay-content {
    opacity: 1;
}

.overlay-content a {
    padding: 15px;
    text-decoration: none;
    font-size: 1.5rem;
    color: #8c7b70;
    display: block;
    font-family: 'Montserrat', serif;
    transition: 0.3s;
    border-bottom: 1px solid rgba(140, 123, 112, 0.1);
    width: 80%;
    margin: 0 auto;
}

.overlay-content a:hover {
    color: #a68b5b;
    border-bottom: 1px solid #a68b5b;
}

.closebtn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #a68b5b;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.closebtn:hover {
    transform: rotate(90deg);
}

/* --- BELÉPŐ ANIMÁCIÓK --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .top-title,
.hero-content .main-title,
.hero-content .quote,
.hero-content .btn-scroll {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-content .top-title {
    animation-delay: 0.2s;
}

.hero-content .main-title {
    animation-delay: 0.6s;
}

.hero-content .quote {
    animation-delay: 1.2s;
}

.hero-content .btn-scroll {
    animation-delay: 1.5s;
}

/* --- ALMENÜK STÍLUSA --- */
/* --- ALMENÜK STÍLUSA (Sidebarban) --- */

/* A csoport tárolója (Most már csak egy sima doboz, nem formázzuk) */
.menu-group {
    width: 100%;
    margin: 0;
    padding: 0;
    border: none; /* Kivettük a vonalat a csoport aljáról */
}


.menu-category {
    font-family: 'Montserrat', serif;
    font-size: 1.5rem;
    color: #8c7b70;       /* Vagy #a68b5b, ha aranyra állítottad a többit */
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid rgba(140, 123, 112, 0.1);
    width: 80%;
    margin: 0 auto;
    text-transform: none;
    letter-spacing: normal;
    opacity: 1;
    padding-left: 0;
    
    /* FONTOS ÚJ SOROK: */
    text-decoration: none; /* Ne húzza alá, mint egy linket */
    display: block;        /* Dobozként viselkedjen */
    cursor: pointer;       /* Legyen kéz ikon */
}

/* Ha ráviszed az egeret */
.menu-category:hover {
    color: #a68b5b;
    border-bottom: 1px solid #a68b5b;
    /* A cursor: default sort INNEN TÖRÖLTÜK! */
}

a.sub-link {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.1rem !important;
    color: #888 !important;
    border-bottom: none !important;
    padding: 8px 15px !important;
    
    width: 80% !important;
    margin: 0 auto !important;
    text-align: center !important; 
}

a.sub-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.02);
}

/* --- LENYÍLÓ MENÜ (DROPDOWN) DESKTOPRA --- */
.dropdown {
    display: inline-block;
    position: relative;
}

.dropbtn {
    text-decoration: none;
    color: #a68b5b;
    margin-left: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    padding-bottom: 20px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #111413;
    min-width: 260px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
    z-index: 1000;
    top: 35px;
    left: 10px;
    border-top: 2px solid #a68b5b;
    border-radius: 0 0 5px 5px;
}

.dropdown-content a {
    color: #cbbba0 !important;
    padding: 15px 20px;
    text-decoration: none;
    display: block;
    margin-left: 0 !important;
    font-size: 1rem !important;
    text-transform: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.dropdown-content a:hover {
    background-color: #1a1f1d;
    color: #fff !important;
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.5s;
}
/* --- A "HÍD" - EZ JAVÍTJA A HIBÁT --- */
.dropdown-content::before {
    content: '';
    position: absolute;
    
    top: -30px; 
    
    left: 0;
    width: 100%;
    
    height: 30px; 
    
    background: transparent; 
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- OLDAL BETÖLTÉS ANIMÁCIÓ (FADE IN) --- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 99999;
    animation: fadeOut 0.8s ease-in-out forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    90% {
        opacity: 0;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* --- RESZPONZIVITÁS ÉS MOBIL NÉZET --- */

@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .fullscreen-menu-overlay.open {
        width: 85%;
    }
}

/* A végleges, javított mobil nézet */
@media (max-width: 950px) {
    .main-title .saray { font-size: 4rem; }
    .main-title .compliance { font-size: 3.5rem; }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 40px;
    }
    
    .about-name {
        font-size: 1.8rem;
    }
    
    .about-container {
        padding: 40px 10px;
    }
    
    .about-contact-btn {
        position: relative;
        margin-top: 40px;
        display: inline-block;
        width: 100%;
        text-align: right;
        bottom: auto;
    }

    /* MOBIL MENÜ JAVÍTÁS */
    
    /* 1. Szövegek eltüntetése */
    
    .hero-nav, 
    .nav-links-desktop {
        display: none !important;
    }

    /* 2. Hamburger ikon középre igazítva */
    .hamburger-icon {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
        z-index: 2000;
    }

    .hamburger-icon span {
        background-color: #5a4a42 !important; 
    }

    .fixed-nav.scrolled .hamburger-icon span {
        background-color: #a68b5b !important;
    }
    
    .nav-logo {
        font-size: 1.2rem;
        margin-left: 10px;
    }
}

/* --- 404 ERROR OLDAL STÍLUSA --- */

.error-page {
    height: 100vh; /* Teljes képernyős */
}

.error-number {
    font-family: 'Montserrat', serif;
    font-size: 10rem; /* Hatalmas méret */
    font-weight: 700;
    color: #a68b5b;   /* Arany szín */
    line-height: 1;
    opacity: 0.8;
    text-shadow: 0px 10px 20px rgba(0,0,0,0.1);
    
    /* Kis animáció: lebegjen */
    animation: float 3s ease-in-out infinite;
}

/* Lebegő animáció */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Mobil nézet igazítás a 404-hez */
@media (max-width: 768px) {
    .error-number {
        font-size: 6rem; /* Mobilon kisebb legyen */
    }
}

/* =========================================
   KAPCSOLAT SZEKCIÓ (Split Layout)
   ========================================= */

/* --- KAPCSOLAT SZEKCIÓ --- */
.contact-split-section {
    background-color: #111413;
    
    padding-top: 160px; 
    padding-bottom: 80px;
    padding-left: 40px;
    padding-right: 40px;
    
    color: #cbbba0;
    min-height: 100vh; /* Hogy kitöltse a képernyőt, ha kevés a tartalom */
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;        /* Egymás mellé rendezés */
    gap: 40px;            /* Távolság a két oldal között */
    align-items: stretch; /* Egyforma magasak legyenek */
}

/* --- BAL OLDAL: ŰRLAP (Keskenyebb) --- */
.contact-left-form {
    flex: 0 0 35%;       /* Szélesség: kb 35% */
    background-color: #1a1f1d;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.saray-mini-form {
    width: 100%;
}

.form-group-mini {
    margin-bottom: 15px;
}

.form-group-mini label {
    font-size: 0.85rem;
    color: #a68b5b; /* Arany szín */
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Input mezők alap stílusa */
.input-field {
    width: 100%;
    padding: 12px;
    background-color: #111413; /* Sötét mező */
    border: 1px solid #444;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.input-field:focus {
    outline: none;
    border-color: #a68b5b;
    box-shadow: 0 0 5px rgba(166, 139, 91, 0.3);
}

/* A nagy üzenet doboz stílusa */
textarea.input-field {
    resize: vertical; /* Csak függőlegesen lehessen húzni */
    min-height: 200px; /* GARANTÁLTAN NAGY LEGYEN */
}

/* A fix mező (Címzett) */
.fixed-field {
    background-color: #222; 
    color: #888;
    cursor: not-allowed;
    border: 1px solid #333;
}

/* Gomb és Checkbox */
.full-width-btn {
    width: 100%;
    margin-top: 15px;
    background-color: #a68b5b;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.full-width-btn:hover {
    background-color: #947e6f;
}

.checkbox-group-mini {
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.checkbox-group-mini a { color: #a68b5b; text-decoration: none; }


/* --- JOBB OLDAL: INFÓ & TÉRKÉP --- */
.contact-right-info {
    flex: 1; /* Kitölti a maradék helyet (65%) */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 1. FELSŐ SÁV (Telefon) */
.info-bar.phone-bar {
    background-color: #a68b5b;
    color: #fff;
    padding: 20px 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.info-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Ez a konténer fogja össze a szöveget és a számot */
.info-bar.phone-bar .icon-text {
    display: flex;         /* Rugalmas elrendezés */
    flex-wrap: wrap;       /* Ha nem férnek el, ugorjon új sorba az egyik */
    justify-content: center; /* Középre igazítás */
    align-items: center;   /* Függőlegesen is középre */
    gap: 10px;             /* Kis távolság a szöveg és a szám között */
    text-align: center;
}

.phone-link {
    font-family: 'Montserrat', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    white-space: nowrap; /* Ez tiltja meg, hogy a szám belsejében sortörés legyen */
    display: inline-block;
}

.phone-link:hover{
    color:#efefef;
}

/* 2. ALSÓ DOBOZ (Térkép) */
.info-box.map-box {
    background-color: #1a1f1d;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 20px;
    
    /* Ezek kellenek a nyújtáshoz: */
    display: flex;
    flex-direction: column; 
    height: 100%; /* Kitölti a rendelkezésre álló magasságot */
}

/* A szöveges rész (Iroda címe) */
.address-text {
    margin-bottom: 15px;
    border-left: 3px solid #a68b5b;
    padding-left: 15px;
    /* Ez nem nyúlik, csak akkora, amekkora a szöveg */
    flex: 0 0 auto; 
}

.address-text h3 {
    color: #a68b5b;
    font-family: 'Montserrat', serif;
    margin-bottom: 5px;
}

/* Térkép keret */
.map-frame-wrapper {
    flex: 1 1 auto;  /* Ez a kulcs: kitölti a maradék helyet a dobozban */
    width: 100%;
    min-height: 300px; /* Mobilon legyen legalább ennyi */
    border-radius: 4px;
    overflow: hidden;
    position: relative; /* Pozícionálás miatt */
}

/* Maga a Google Maps IFRAME */
.map-frame-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Így mindig kitölti a keretet */
    border: 0;
}

/* --- MOBIL NÉZET (Reszponzivitás) --- */
@media (max-width: 1024px) {
    .contact-wrapper {
        flex-direction: column; /* Egymás alá kerüljön */
    }
    
    .contact-left-form {
        flex: none;
        width: 100%;
        margin-bottom: 30px;
    }

    .info-bar.phone-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
/* A térkép kerete - egységes definíció */

/* A szöveges doboz, ami a térkép helyén látszik */
.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(240, 240, 240, 0.9); /* Enyhe áttetsző szürke */
    z-index: 5;
}

/* A helyőrző szövege */
.map-placeholder p {
    color: #1a1f1d;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 15px;
    max-width: 280px;
    line-height: 1.4;
}

/* A mini arany gomb a térképnél */
.btn-cookie-accept-mini {
    background-color: #1a1f1d;
    color: #a68b5b; /* Arany szöveg */
    border: 1px solid #a68b5b;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-cookie-accept-mini:hover {
    background-color: #a68b5b;
    color: #1a1f1d;
    box-shadow: 0 4px 12px rgba(166, 139, 91, 0.3);
}

/* --- COOKIE BANNER STÍLUS --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1f1d; /* Sötét doboz marad */
    border-top: 2px solid #a68b5b; /* Az arany csík */
    color: #cbbba0; /* Bézs szöveg */
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);

    /* --- JAVÍTÁS A REJTÉSHEZ --- */
    visibility: hidden;         /* Teljesen kikapcsolja a megjelenítést, nem marad csík */
    opacity: 0;                 /* Átlátszóvá teszi */
    transform: translateY(100%); /* Teljes magasságával letolja a képernyőről */
    transition: all 0.5s ease-in-out; /* Simább animáció minden tulajdonságra */
}

.cookie-banner.show {
    visibility: visible;        /* Megjelenik */
    opacity: 1;                 /* Látható lesz */
    transform: translateY(0);   /* Felcsúszik a helyére */
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-content a {
    color: #a68b5b;
    text-decoration: underline;
}

.btn-cookie-accept {
    background-color: #a68b5b;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: background 0.3s;
}

.btn-cookie-reject:hover {
    background-color: #8c7b70;
}

.btn-cookie-reject {
    background-color: #a68b5b;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-cookie-reject:hover {
    background-color: #8c7b70;
}

/* Mobil nézet: egymás alá kerüljön a szöveg és a gomb */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}


/* --- ADATVÉDELMI OLDAL STÍLUSAI --- */

.privacy-content-section {
    background-color: #111413;
    color: #cbbba0;
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
}

.privacy-container {
    max-width: 900px; /* Hogy ne legyen túl széles a szöveg, így olvashatóbb */
    margin: 0 auto;
    text-align: justify; /* Sorkizárt igazítás */
}

.privacy-container h2 {
    font-family: 'Montserrat', serif;
    color: #a68b5b;
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(166, 139, 91, 0.2);
    padding-bottom: 10px;
}

.privacy-container h3 {
    font-family: 'Montserrat', serif;
    color: #d4bc8b; /* Kicsit világosabb arany */
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-container h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.privacy-container p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.privacy-container a {
    color: #a68b5b;
    text-decoration: underline;
    transition: color 0.3s;
}

.privacy-container a:hover {
    color: #fff;
}

/* Listák formázása */
.data-list, .bullet-list {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 20px;
}

.data-list li {
    margin-bottom: 10px;
    padding-left: 15px;
    border-left: 2px solid #a68b5b;
}

.bullet-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.bullet-list li::before {
    content: '•';
    color: #a68b5b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Kiemelt dobozok a cookie-knak */
.cookie-box {
    background-color: #1a1f1d;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.privacy-divider {
    border: 0;
    height: 1px;
    background: #333;
    margin: 40px 0;
}

/* Link lista */
.link-list {
    list-style: none;
    margin-bottom: 20px;
}
.link-list li {
    margin-bottom: 10px;
}

/* 
.about-text ul {
    list-style: none; 
    padding-left: 10px;
}

.about-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.about-text ul li::before {
    content: '✔'; 
    position: absolute;
    left: 0;
    color: #a68b5b; 
    font-weight: bold;
}
*/
