        :root {
            --primary-dark: #224c63;
            --accent-gold: #b9a59b;
            --text-dark: #5a5a5a;
            --bg-light: #fff;
            --footer: #002c44;
            
            --font-serif: 'Calibri Light', sans-serif;
            --font-sans: 'Myriad Web Pro', sans-serif;
            --font-cursive: 'Cambria Bold', cursive;
            --font-arial: 'Google Sans Flex', cursive;
        }

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

        body {
            font-family: var(--font-serif);
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
            font-size: 14px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
.container {
    margin: 0 auto;
    width: 100%; 
    box-sizing: border-box;
}

/* --- Hero alapbeállítás --- */
.hero {
    position: relative;
    height: 100vh;
    height: 730px;
background-color: rgba(0, 0, 0, 0);
background-position-x: center;
background-position-y: top;
background-repeat: no-repeat;
background-attachment: scroll;
background-image: url("");
background-size: 100% 100%;
background-origin: padding-box;
background-clip: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Navbar finomítása --- */
.navbar {
    display: flex;
    justify-content: space-between;;
    align-items: center;
    padding: 30px 0 50px 0;
    color: white;
    max-width: 1170px;
    width: 100%;
}

/* Telefonos box stílusa a kép alapján */
.phone-contact-box {
    display: flex;
    align-items: center;
    border: 1px solid #929292;
    background-color: transparent;
    text-decoration: none;
    color: white;
    font-family: var(--font-arial);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.phone-contact-box:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.phone-icon-wrapper {
    background-color: #b9a59b;
    border-right: 1px solid #929292;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon-wrapper img {
    height: 30px;
    width: auto;
}

.phone-number-text {
    padding: 0 12px;
}

.logo-area img {
	max-width: 334px;
}

/* --- Hamburger Menü Gomb (Asztalin rejtve) --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1000;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

/* --- Hero Content finomítása --- */
.hero-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1270px;
}

.hero-box {
    width: 100%;
    padding: 0;
    position: relative;
}

.hero-box img {
    max-width: 100%;
    height: auto;
}

        .logo-area {
            display: flex;
            align-items: center;
        }

        .nav-links {
            font-family: var(--font-arial);
            display: flex;
            list-style: none;
            gap: 44px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
        }

        .nav-links .active {
  border-bottom: 2px solid #fff;
}


.accordion {
    display: block; 
    width: 100%;   
    clear: both; 
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;    
    margin: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease;
}

.accordion.open {
    max-height: 1000px;
    opacity: 1;
    padding: 10px 0; 
}

        /* --- Üdvözlő Sáv --- */
        main {
          max-width: 1170px;
}

        .welcome-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 79px 0;
        }

        .welcome-bar h2 {
            font-family: var(--font-cursive);
            color: var(--accent-gold);
            font-size: 33px;
            letter-spacing: 2px;
		    line-height: 40px;
        }

        .btn-consultation {
            display: flex;
            align-items: center;
            background-color: var(--accent-gold);
            color: white;
            padding: 0;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
		    max-height: 62px;
            font-family: var(--font-arial);
transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease;
        }
		.btn-consultation:hover {transform: scale(1.05);opacity:.8}

        .btn-icon {
            background-color: var(--primary-dark);
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-text {
            padding: 15px 25px;
        }

        /* --- Profilok --- */
        .map-section {
            display: block;
            width: 100%;
            padding: 34px 0;
        }

		.map-section img {
			width: 100%;
		}

        .profile-section {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            padding: 34px 0;
        }

        .profile-section.reverse {
            flex-direction: row-reverse;
            padding-bottom: 137px;
        }

        .profile-section.kor, .profile-section.reverse.kor {
            padding: 70px 0;
        }

        .profile-img {
            flex: 0 0 40%;
        }

        .profile-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        .profile-text {
            flex: 1;
        }

        .profile-text h3 {
            font-family: var(--font-cursive);
            color: var(--primary-dark);
            font-size: 28px;
			line-height: 26px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .profile-text p {
            font-family: var(--font-serif);
            margin-bottom: 15px;
            color: var(--text-dark);
            text-align: justify;
            font-size: 20px;
               line-height: 25px;
        }

        /* --- Szolgáltatások Grid --- */
        .services {
            padding: 30px 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            text-align: center;
        }

        .services h4 {
            font-family: var(--font-cursive);
            color: var(--primary-dark);
            font-size: 34px;
            padding: 55px 0;
transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                color 0.4s ease,filter 0.4s ease;
        }

        .services h4:nth-child(3) {
            border-top: 1px solid #c3c9d1;
        }

        .services h4:nth-child(2) {
            border-left: 1px solid #c3c9d1;
        }
    
        .services h4:nth-child(4) {
            border-top: 1px solid #c3c9d1;
            border-left: 1px solid #c3c9d1;
        }

.services h4:hover{color: var(--accent-gold);}

        /* --- Lábléc --- */
        .footer {
            background-color: var(--footer);
            color: white;
            padding: 80px 0 40px;
            line-height: 19px;
            font-size: 16px;
            font-family: var(--font-sans);
            letter-spacing: 1px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 30px;
            max-width: 1170px;
            padding-right:70px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-column h5 { font-family:var(--font-arial);
         font-size: 14px;
          font-weight: 600;
          letter-spacing: 1.5px;
            margin-bottom: 50px;
            text-transform: uppercase;
        margin-top: 30px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 8px;
            border-bottom: 1px solid #b9a59b;
            padding-bottom: 12px;
        }

/* --- Kapcsolat Szekció Alapok --- */
.kapcsolat-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 200px 100px 200px;
    gap: 50px;
}

/* --- Bal oldal - Elérhetőségek --- */
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
	padding-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-item .icon-box {
    width: 50px; 
    display: flex;
    justify-content: center;
}

.contact-item .icon-box img {
    max-width: 100%;
    height: auto;
    display: block;
}

.contact-item p {
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--text-dark);
    line-height: 20px;
    margin: 0;
}

/* --- Jobb oldal - Űrlap --- */
.contact-form-container {
    flex: 1;
    width: 100%;
    max-width: 520px;
}

.contact-form-container h3 {
    font-family: var(--font-cursive);
    color: var(--accent-gold);
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    background-color: #e9e9e9;
    border: none;
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
}

.contact-form textarea {
    resize: none;
    height: 70px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #858585;
}

.contact-form button {
    background-color: var(--accent-gold);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-arial);
    cursor: pointer;
    width: max-content;
    letter-spacing: 1px;
    margin-top: 10px;
transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease;
        }
		.contact-form button:hover {transform: scale(1.05);opacity:.8}

/* --- Letölthető dokumentumok szekció --- */
.downloads-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-bottom: 150px;
}

.download-btn {
    display: flex;
    width: 100%;
    max-width: 430px;
    text-decoration: none;
transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease;
        }
		.download-btn:hover {transform: scale(1.05);opacity:.8}

.download-icon {
    background-color: var(--accent-gold);
    width: 75px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-icon img {
    width: 25px;
    height: auto;
    display: block;
}

.download-text {
    background-color: var(--primary-dark);
    color: white;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    max-height: 70px;
    font-family: var(--font-arial);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.4;
}
/* --- Fő Területek (Areas) Szekció --- */
.areas-section {
    padding-bottom: 140px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.area-block {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

/* Cikázó elrendezés: minden második blokk megfordítása */
.area-block.reverse {
    flex-direction: row-reverse;
}

.area-text {
    flex: 1;
}

.area-text h2 {
    font-family: var(--font-cursive);
    color: var(--primary-dark);
    font-size: 33px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    line-height: 40px;
}

.area-text p {
    font-family: var(--font-serif);
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: justify;
    font-size: 20px;
    line-height: 25px;
}

.area-list {
    font-family: var(--font-serif);
    color: var(--text-dark);
    font-size: 20px;
    list-style-type: none;
    margin-bottom: 30px;
    width: 48%;
    display: inline-block;
    vertical-align: top;
}

.area-list li {
    line-height: 25px;
    margin-bottom: 0px;
}

.accordion .area-list {
	width: 100%;
}

/* Kék gombok stílusa */
.area-btn {
    display: block;
    background-color: var(--primary-dark);
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-arial);
    cursor: pointer;
    margin-top: 30px;
    width: max-content;
    letter-spacing: 1px;
}

.area-img {
    flex: 0 0 40%; 
    max-width: 470px;
}

.area-img img {
    width: 100%;
    height: auto;
    display: block;
}
.area-text .area-btn {
	float: right;
	margin-top: 0;
    background-color: var(--primary-dark);
    color: white;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    max-height: 50px;
    font-family: var(--font-arial);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.4;
	padding: 0 24px;
}

.mobiltel {
        display: none;}
.asztali {
        display: block;}


.hero-slideshow-active {
    background-image: none !important;
}

/* Slideshow konténer */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
overflow: hidden;
}

/* Egyedi slide-ok */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    animation: slideAnimation 15s infinite;
}


.navbar, .hero-content {
    position: relative;
}

        /* --- Reszponzivitás --- */
        @media (max-width: 900px) {
.phone-contact-box:not(.mobiltel .phone-contact-box) {
        display: none; 
    }
.mobiltel {
        display: block;}
.asztali {
        display: none;}
  .area-block, .area-block.reverse {
        flex-direction: column; /* Egymás alá csúszik */
        padding: 0 20px;
        gap: 30px;
    }

.area-block div:first-child {
order: 2;
}
.area-block div:last-child {
order: 1;
}
    
    .area-img {
        flex: 0 0 100%;
	    max-width: 100vw;
    overflow: hidden;
    }
    
    .area-text h2 {
        font-size: 28px;
    }
    
    .area-text p {
        font-size: 18px;
        text-align: left; /* Mobilon jobb a balra igazítás */
    }
    
    .area-list {
        width: 100%;
        display: block;
        margin-left: 0;
    }
    .area-list.second-list {
        margin-left: 0;
    }
    
    .area-btn {
        width: 100%; /* Mobilon gomb teljes szélességű */
        text-align: center;
    }

.kapcsolat-section {
        flex-direction: column;
        padding: 40px 20px 0px 20px;
        gap: 50px;
    }

    .download-text {
        font-size: 14px;
        padding: 15px;
    }
    .download-icon {
        width: 60px;
    }
    .download-icon img {
        width: 28px;
    }
    
    .contact-form-container {
        max-width: 100%;
    }
.hero {
    position: relative;
    height: 255px;
	background-size: cover;
}
            .navbar {
                justify-content: space-between;
                padding: 30px 20px 0 20px;
            }

.logo-area img {
	max-width: 200px;
}
.btn-consultation {display:none;}
            .menu-toggle {
                display: flex; /* Megjelenítjük a hamburgert */
            }
            .nav-links {
                display: none; /* JS fogja bekapcsolni */
                position: absolute;
                top: 100px;
                left: 0;
                width: 100%;
                background-color: rgba(34, 76, 99, 0.95); /* var(--primary-dark) áttetszően */
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                gap: 20px;
                z-index: 999;
            }
            .nav-links.active-menu {
                display: flex; /* Ezt kapcsolja a script */
            }
            .hero-box {
                padding: 30px 20px;
            }
            .hero-box h1 {
                font-size: 24px;
                letter-spacing: 6px;
            }
            .profile-section, .profile-section.reverse, .map-section {
                flex-direction: column;
                padding: 40px 20px !important;
            }
			.welcome-bar {
				padding: 40px 20px 0px 20px;
			}
            .services h4 {
                font-size: 16px;
            }
            .services_ {
                grid-template-columns: 1fr;
            }
            .services_ h4:nth-child(2) {
                border-left: none;
                border-top: 1px solid #c3c9d1;
            }
            .services_ h4:nth-child(4) {
                border-left: none;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                padding: 0 20px;
            }.areas-section {
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.downloads-section {padding-bottom:96px}
.area-text .area-btn {width:100% !important;}
.profile-img img {
  width: 80%;
  margin: 0 auto;
}
        }
        @media (max-width: 600px) {
            .welcome-bar {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
.welcome-bar h2 {
  font-size: 24px;
  line-height: 28px;
}
  .area-text h2 {
    font-size: 22px;
  }
.area-text .area-btn {
 font-size: 13px;
}
  .services h4 {
    font-size: 13px;
  }
.profile-text h3 {
  font-size: 24px;
}
  .logo-area img {
    max-width: 160px;
  }
.ll {width: 150% !important;margin-left: -20%;}

        }
