@import url('https://fonts.googleapis.com/css?family=Roboto Condensed');

html {
    scroll-behavior: smooth;
}

body,
html {
    height: 100%;
    overflow-x: hidden;
    font-family: 'Roboto Condensed';

}

* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}



body {
    background-color: black;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* A háttérkép fix marad, ahogy görgetsz */

}

#arak {
    background: #000;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
}

.arak-logo {
    max-width: 220px;
    margin-bottom: 20px;
}

#arak h2 {
    font-size: 32px;
    margin: 0 0 30px;
    font-weight: bold;
}

/* ===== ÁRLISTA TÁBLÁZAT ===== */
.price-table {
    width: 80%;
    /* vagy 70–90%, ízlés szerint */
    max-width: 1100px;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 16px;
    border: none;
    /* külső keret NE legyen */
}

.price-note {
    text-align: left;
    /* ✅ balra igazítva */
    margin-top: 15px;
    font-size: 14px;
    color: #d1d1e0;
    max-width: 1100px;
    /* a táblázat max szélességéhez igazodjon */
    margin-left: auto;
    margin-right: auto;
    /* középre helyezve a táblázattal együtt */
}

.price-table-wrapper {

    width: 100%;
}

/* fejléc – kék sáv, középen címek */
.price-table thead th {
    background: #004AAD;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 14px 16px;
    border: none;
    /* fejlécben nincs vízszintes keret */
}

/* fejlécben is legyen a függőleges elválasztó a két oszlop között */

/* sorok közti vízszintes vonal */
.price-table tbody tr {
    border-top: 1px solid rgba(255, 255, 255, .85);
}

.price-table tbody tr:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .85);
}

/* cellák – alap */
.price-table td {
    padding: 12px 16px;
    color: #d1d1e0;
    border: none;
    /* minden cellahatárt nullázzunk, hogy ne legyen külső keret */
}

/* bal (szolgáltatás) oszlop: balra igazítva */
.price-table tbody td:first-child {
    text-align: center;
    width: 68%;
}

/* jobb (ár) oszlop: középre igazítva + FÜGGŐLEGES ELVÁLASZTÓ VONAL */
.price-table tbody td:last-child {
    text-align: center;
    width: 32%;
    border-left: 1px solid rgba(255, 255, 255, .9);
}

/* opcionális: fejléccímek betűmérete kicsit nagyobb */
.price-table thead th {
    font-size: 18px;
}

/* responsív finomítás */
@media (max-width: 600px) {
    .price-table thead th {
        font-size: 16px;
    }

    .price-table td {
        font-size: 14px;
        padding: 10px 12px;
    }
}


.navbar {
    width: 85%;
    margin: auto;
    padding: 25px 0;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* bal - közép - jobb */
    align-items: center;
}

.logo {
    width: 200px;
    cursor: pointer;
    grid-column: 2;
    /* középső oszlop */
    justify-self: center;
}

.navbar ul {
    grid-column: 3;
    /* jobb oldali oszlop */
    justify-self: end;
    margin: 0;
    padding: 0;
}



/* képezős*/
.hero {
    width: 80%;
    margin: 0 auto;

    /* középre igazítja */
}

.hero-image {
    width: 100%;
    border-radius: 15px;
    /* opcionális, hogy illeszkedjen a kártyák stílusához */
    display: block;
}

.services-container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 35vh;
    }
}

.hero-slider {
    position: relative;
    max-width: 100%;
    height: 60vh;
    overflow: hidden;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Lapozó nyilak */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover,
.next:hover {
    color: #004AAD;
}

/* Finom áttűnés */
.fade {
    animation: fadeEffect 1.2s;
}

@keyframes fadeEffect {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 15px;
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: #d1cfcf;
    text-transform: uppercase;
    font-size: 20px;
}

.navbar ul li::after {
    content: '';
    height: 3px;
    width: 0;
    background: #ffffff;
    transition: 1s all ease;
    position: absolute;
    left: 0;
    bottom: -5px;

}

.navbar ul li:hover::after {
    width: 100%;
    transform: scaleX(1);
    transform-origin: bottom;
}

/*
.content {
    width: 45%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 5;
    padding: 200px 0;
    border-radius: 70px;
    border: 10px solid #333;
    background-color: rgb(91, 91, 148);
    opacity: 0.3;
}

.content h1 {
    font-size: 70px;
    margin-top: 30px;
}

.content p {
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;

}

/*
@media  screen and (max-width: 768px) {
    .navbar {
        position: absolute;
        right: -100%;
        top: 10vh;
        background-color: black;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
    }

    .navbar ul li {

        display: block;

    }
}*/

/*    POPUP     */


/* Section : Rolunk */

section {
    width: 100%;
    padding: 20px 0;
    background-color: transparent;
    min-height: 25vh;
}

/*
.container {
    overflow: hidden;
}*/

section h2 {
    color: #ffffff;
    font-size: 50px;
    margin-top: 26px;
    margin-bottom: 26px;
}

/*
section:nth-child(even) {
    width: 100%;
    padding: 20px 0;
    background-color: #ffffff;
}
*/

/*.title-text {
    text-align: center;
    padding-bottom: 70px;
    margin: auto;
    display: block;
}*/
.title-text {
    max-width: 1200px;
    /* Válassz egy megfelelő szélességet */
    margin: 0 auto;
    /* Új tulajdonság: középre igazítás */
    text-align: center;
    /* Szöveg középre igazítása */
    padding-bottom: 70px;
    display: block;
}

/*.title-text p {
    margin: 10px 20px;
    padding: 0 400px;
    text-align: left;
    font-size: 20px;
    color: rgb(0, 0, 0);
    line-height: 170%;
    word-wrap: break-word;
    letter-spacing: 0.3px;
}*/
.title-text p {
    margin: 10px auto;
    /* Új tulajdonság: szélesség alapján középre igazítás */
    padding: 0 20px;
    /* Csökkentett padding az oldalakon */
    text-align: left;
    /* Balra igazított szöveg */
    font-size: 20px;
    /*color: rgb(0, 0, 0);*/
    color: #d1d1e0;
    line-height: 170%;
    word-wrap: break-word;
    letter-spacing: 0.3px;
}



@keyframes slideIn {
    from {
        transform: translate(-50%, -180%);
        /* eddig 100% volt */
    }

    to {
        transform: translate(-50%, -50%);
    }
}

@keyframes slideOut {
    from {
        transform: translate(-50%, -50%);
    }

    to {
        transform: translate(-50%, 180%);
        /*eddig 100% volt */
    }
}

@keyframes slideOut2 {
    from {
        transform: translate(-50%, -50%);
    }

    to {
        transform: translate(-50%, 1000%);
        /*eddig 100% volt */
    }
}


hr {
    width: 80%;
    border-top: 1px solid;
    color: #222251;
    margin-top: 100px;
    margin: 20px auto;

}

/* lemeno szoveg - accordion */

.accordion {
    max-width: 530px;
    width: 100%;
    background-color: #d1cfcf;
    margin: 0 15px;
    padding: 15px;
    border-radius: 10px;

}

/*<i class="fa-solid fa-square-minus"></i>*/

@media screen and (max-width: 425px) {

    /* Az elemeknek a képernyő szélességénél kisebb méret esetén */
    .title-text {
        padding: 50px 15px;
        /* Csökkentsük a paddingot az oldalsó margók miatt */
    }

    .title-text h2 {
        font-size: 36px;
        /* Csökkentsük a cím betűméretét */
    }

    .title-text p {
        font-size: 15px;
        /* Csökkentsük a szöveg betűméretét */
        margin: 5px 5px;
        /* Csökkentsük a margin-t az oldalsó margók miatt */
    }

    section {
        min-height: 20vh;
    }
}

@media screen and (max-width: 1150px) {
    .popup {
        padding: 20px;
        max-width: 80%;
    }

    .popup h2 {
        font-size: 30px;
    }

    .popup p {
        font-size: 18px;
    }

    .popup a {
        font-size: 18px;
    }


}

@media screen and (max-width: 480px) {
    .popup {
        padding: 5px;
        max-width: 80%;
    }

    .popup h2 {
        font-size: 26px;
    }

    .popup p {
        font-size: 16px;
        padding: 20px;
        margin: 20px 10px;
    }

    .popup a {
        font-size: 14px;
        max-width: 70px;
        text-align: center;
    }

    section {
        min-height: 20vh;
    }
}

.img-gallery {
    width: 80%;
    margin: 50px auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
    transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
}

.img-gallery img {
    width: 100%;
    cursor: pointer;
    border-radius: 20px;
    transition: 0.6s ease-in-out;
}

.img-gallery img:hover {
    transition: 0.6s ease-in-out;
    transform: scale(1.2);
    box-shadow: 0 20px 20px 20px rgba(2, 2, 3, 0.8);
}

.full-img {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.full-img img {
    width: 100%;
    max-width: 700px;
    transition: 0.6s ease-in-out;

}

.full-img span {
    position: absolute;
    top: 10%;
    right: 15%;
    font-size: 60px;
    color: #ffffff;
    cursor: pointer;
}

:root {
    /* finomhangolás */
    --line-inset: 14px;
    /* vízszintes vonalak beljebb húzása */
    --logo-nudge: -4px;
    /* logó függőleges igazítás */
    --line-color: rgba(255, 255, 255, .6);
}

.custom-footer {
    position: relative;
    background: #000;
    color: #fff;
    padding: 38px 20px 24px;
    font-family: "Roboto Condensed", sans-serif;
}

/* felső és alsó vékony szürke vonal */
.custom-footer::before,
.custom-footer::after {
    content: "";
    position: absolute;
    left: var(--line-inset);
    right: var(--line-inset);
    height: 1px;
    background: var(--line-color);
}

.custom-footer::before {
    top: 0;
}

.custom-footer::after {
    bottom: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* minden oszlop teteje egyvonalban */
    gap: 60px;
    flex-wrap: wrap;
}

/* bal oszlop – logó */
.footer-left {
    display: flex;
    align-items: flex-start;
}

.footer-left img {
    display: block;
    max-width: 240px;
    height: auto;
    margin-top: var(--logo-nudge);
    /* pici feljebb tolás */
}

/* középső oszlopok */
.footer-center {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4,
.footer-right h4 {
    margin: 0 0 12px;
    /* nincs felső margó */
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.footer-column p {
    margin: 0 0 8px;
}

.footer-column p,
.footer-column a {
    color: #0a58ca;
    font-size: 15px;
    text-decoration: none;
    line-height: 1.6;
}

.footer-column a:hover {
    text-decoration: underline;
    color: #fff;
}

/* jobb oszlop – közösségi ikonok */
.social-icons {
    display: flex;
    gap: 18px;
    font-size: 28px;
}

.social-icons a {
    color: #fff;
    transition: .25s;
}

.social-icons a:hover {
    color: #d9d9d9;
}

/* alsó sáv */
.footer-bottom {
    margin-top: 28px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 14px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #cfcfcf;
}

/* reszponzív nézet */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
    }

    .footer-center {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .footer-right {
        margin-top: 10px;
    }
}

.container {
    display: grid;
    place-items: center;
    margin: 1em;
    font-family: "Poppins";

}

.card {
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.295);
    border-radius: 1.2em;
    max-width: 500px;
    background-color: #ffffff;
}

.content {
    background: #e2e1e1;
    margin: 1em;
}

#feher {
    color: white
}

.img {
    background: url("iceblackwhite.png") center/cover;
    width: 100%;
    height: 355px;
    border-radius: 1.2em 1.2em 0 0;
}

.description p {
    font-size: .95em;
    color: #0f0e0e;
    padding-left: 15px;
    padding-right: 5px;
}

.name {
    font-size: 1.5em;
    color: #111;
    padding-left: 20px;

}

.description {
    margin: .6em 0;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

.card-button {
    display: flex;
    align-items: center;
    background: #06d6a0;
    padding: .5em;
    border-radius: .5em;
    cursor: pointer;
    text-decoration: none;
}

.card-button p {
    padding: .5em .8em;
    text-decoration: none;
}

.card-button p a {
    text-decoration: none;
}

@media screen and(min-width: 500px) {
    .card {
        width: 350px;
        margin: 0 auto;
    }
}

#section-wrapper {
    width: 100%;
    padding: 10px;
    justify-content: center;
    display: block;
    margin: auto;
}

.box-wrapper {
    position: relative;
    display: table;
    width: 1100px;
    margin: auto;
    margin-top: 35px;
    border-radius: 30px;
}

.info-wrap {
    width: 35%;
    height: 551px;
    padding: 40px;
    float: left;
    display: block;
    border-radius: 30px;
    background: linear-gradient(144deg, rgba(126, 39, 156, 1) 0%, rgba(49, 39, 157, 1) 49%);
    color: #fff;
}


.info-title {
    text-align: left;
    font-size: 28px;
    letter-spacing: 0.5px;
}

.info-sub-title {
    font-size: 18px;
    font-weight: 300;
    margin-top: 17px;
    letter-spacing: 0.5px;
    line-height: 26px;
}

.info-details {
    list-style: none;
    margin: 60px 0px;
}

.info-details li {
    margin-top: 25px;
    font-size: 18px;
    color: #fff;
}

.info-details li i {
    background: #F44770;
    padding: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

/*
.info-details li:last-child {
    margin: 10px auto;
    padding: 2px;
    line-height: 30px;
}*/

.info-details li a {
    color: #fff;
    text-decoration: none;
}

.info-details li a:hover {
    color: #64e8ad;
}

.social-icons {
    list-style: none;
    text-align: center;
    margin: 20px 0px;
}

.social-icons li {
    display: inline-block;
}

.social-icons li i {
    background: #4f4a4b;
    color: #fff;
    padding: 15px;
    font-size: 20px;
    border-radius: 22%;
    margin: 0px 5px;
    cursor: pointer;
    transition: all .5s;
}

.social-icons li i:hover {
    background: #fff;
    color: #000000;
}

.form-wrap {
    width: 65%;
    float: right;
    padding: 40px 25px 35px 25px;
    border-radius: 0px 30px 30px 0px;
    background: #ecf0f3;
}

.form-title {
    text-align: left;
    margin-left: 23px;
    font-size: 28px;
    letter-spacing: 0.5px;
}

.form-fields {
    display: table;
    width: 100%;
    padding: 15px 5px 5px 5px;
}

.form-fields input,
.form-fields textarea {
    border: none;
    outline: none;
    background: none;
    font-size: 18px;
    color: #555;
    padding: 20px 10px 20px 5px;
    width: 100%
}

.form-fields textarea {
    height: 150px;
    resize: none;
}

.form-group {
    width: 46%;
    float: left;
    padding: 0px 30px;
    margin: 14px 12px;
    border-radius: 25px;
    box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #ffffff;
}

.form-fields .form-group:last-child {
    width: 96%;
}

.submit-button {
    width: 96%;
    height: 60px;
    margin: 0px 12px;
    border-radius: 30px;
    font-size: 20px;
    ;
    font-weight: 700;
    outline: none;
    border: none;
    cursor: pointer;
    color: #fff;
    text-align: center;
    background: #F44770;
    box-shadow: 3px 3px 8px #b1b1b1, -3px -3px 8px #ffffff;
    transition: .5s;
}

.submit-button:hover {
    background: #31279d;
}

/* Responsive css */
@media only screen and (max-width: 767px) {
    .box-wrapper {
        width: 100%;
    }

    .info-wrap,
    .form-wrap {
        width: 100%;
        height: inherit;
        float: none;
    }

    .info-wrap {
        border-radius: 30px 30px 0px 0px;
    }

    .form-wrap {
        border-radius: 0px 0px 30px 30px;
    }

    .form-group {
        width: 100%;
        float: none;
        margin: 25px 0px;
    }

    .form-fields .form-group:last-child,
    .submit-button {
        width: 100%;
    }

    .submit-button {
        margin: 10px 0px;
    }

}



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');


.sectionn {
    position: relative;
    z-index: 3;
    padding-top: 500px;
    padding-bottom: 300px;
    display: block;
    margin: auto;
    justify-content: center;
    min-height: calc(100vh - 100px);
    /* Vagy ahogy szükséges */
    box-sizing: border-box;


}

.containerr {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 190px;
    overflow: hidden;
}

.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-header h2 {
    color: #FFF;
    font-weight: bold;
    font-size: 3em;
    margin-bottom: 20px;
}

.section-header p {
    color: #FFF;
}

.roww {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    /* távolság a két blokk között */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/*.contact-infoo {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}*/
.contact-infoo {
    flex: 1;
    min-width: 300px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    /* igény szerint állítható */
    border: none;
}

.contact-infoo-itemm {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(250, 250, 250, 0.0);
    /* Áttetsző fehér, modern üveges hatás */
    border: 1px solid rgba(255, 255, 255, 0.12);
    /* Halvány keret */
    color: #E6EEF8;
    /* Világos szöveg, de nem teljesen fehér */
    padding: 15px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    /* Üveghatás */
    transition: all 0.3s ease;
}

.contact-infoo-itemm:hover {
    background-color: rgba(255, 255, 255, 0.1);
    /* Hoverre kicsit világosabb */
    transform: translateY(-3px);
    /* Enyhe kiemelés */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    /* Modern árnyék */
}

.contact-infoo-iconn {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    border-radius: 50%;
    margin-right: 15px;
}

.contact-infoo-iconn i {
    font-size: 30px;
    line-height: 70px;
}

.contact-infoo-contentt {
    margin-left: 15px;
    color: #fff;
}

.contact-infoo-contentt h4 {
    font-size: 1.2em;
    color: #004AAD;
    margin-bottom: 5px;
}

.contact-infoo-contentt p {
    color: #E0E0E0;
    margin: 0;
}

.contact-infoo-contentt a {
    text-decoration: none;
    color: #d1d1e0;

    word-break: break-word;
    /* Hosszú szavak (pl. email cím) tördelése */
    overflow-wrap: break-word;
    /* Biztos ami biztos */

}

.contact-form {
    background-color: #fff;
    padding: 40px;
    width: 45%;
    padding-bottom: 20px;
    padding-top: 20px;
}

.contact-form h2 {
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.contact-form .input-box {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-map {
        width: 100%;
    }
}

.contact-form .input-box input,
.contact-form .input-box textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}

.contact-form .input-box span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}

.contact-form .input-box input:focus~span,
.contact-form .input-box textarea:focus~span {
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
}

.contact-form .input-box input[type="submit"] {
    width: 100%;
    background: #00bcd4;
    color: #FFF;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #00bcd4;
    transition: 0.5s;
}

.contact-form .input-box input[type="submit"]:hover {
    background: #FFF;
    color: #00bcd4;
}

@media (max-width: 991px) {
    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .row {
        flex-direction: column;
    }

    .contact-infoo {
        margin-bottom: 40px;
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }
}

.telefon {
    text-decoration: none;
    color: white;
}

.email {
    text-decoration: none;
    color: white;
}

.facebook {
    text-decoration: none;
    color: white;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #222;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

h1 {
    color: rgba(28, 46, 112);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th,
td {
    padding: 10px;
    border: 1px solid #fff;
    color: #d1d1e0;
}

th {
    background: rgba(28, 46, 112);
    color: #d1d1e0;
}

.info {
    text-align: left;
    margin-top: 20px;
    padding: 10px;
    background: #333;
    border-radius: 5px;
}

.contact {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #0af;
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    th,
    td {
        font-size: 0.9em;
    }
}

.outer-frame-x72 {
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-block-z51 {
    background: #686767;
    border-radius: 12px;
    padding: 20px;
    width: 95%;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.info-block-z51:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    background: lightgray;
    color: #000
}


.info-block-z51:active {
    background-color: lightgrey;
}

.image-wrap-r32 {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px auto;
    display: block;
}

.title-bar-v85 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 1px;
}

.info-block-z51:hover .title-bar-v85 {
    color: #000;
}

.extra-note {
    margin: 45px auto 0 auto;
    padding: 5px 40px;
    background: #686767;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
}

#rolunk {
    max-width: 900px;
    margin: 50px auto;
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    height: -10%
}

#rolunk h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

#rolunk p {
    margin: 0 auto;
    font-weight: 500;
}

.title-bar-v85:hover {

    color: #000
}

.expand-trigger-y14 {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    background: #004AAD;
    color: #fff;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: normal;
    transition: background 0.3s ease;
}

.expand-trigger-y14:hover {
    background: #003080;
    color: #d1d1e0;
}

.extra-content-x29 {
    max-height: 0;
    margin-top: 5px;
    border-radius: 10px;
    overflow: hidden;
    transition: max-height 0.7s ease, padding 0.7s ease;
    background: #000000;
    color: #ccc;
}

.extra-content-x29 p {
    margin: 0;
    padding: 5px 15px;
    font-size: 14px;
    line-height: 1.6;
}

.info-block-z51.active .extra-content-x29 {
    max-height: 200px;
    padding: 10px 0;
}

@media (max-width: 600px) {
    .outer-frame-x72 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        /* Szűkebb hely mobilon */
        padding: 0 10px;
        /* Mobilon kisebb oldaltávolság */
    }
}

/* Tablet (600px - 1000px) - 2 oszlop, nagyobb gap */
@media (min-width: 600px) and (max-width: 1000px) {
    .outer-frame-x72 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        /* Szellősebb tablet nézeten */
        padding: 0 20px;
        /* Oldalt több hely */
    }
}

/* Nagyon kicsi képernyők - 1 oszlop */
@media (max-width: 400px) {
    .outer-frame-x72 {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}

/* Alapértelmezett állapot – desktopon látszik a normál menü, hamburger elrejtve */
.hamburger-menu {
    display: none;
    position: relative;
    /* hogy a navbar-on belül maradjon és a logó mellett legyen */
    z-index: 1100;
}

.navbar ul {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.navbar ul li {
    list-style: none;
}

.navbar ul a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

/* Mobil és tablet nézet */
@media (max-width: 1024px) {

    /* Hamburger ikon megjelenése */
    .hamburger-menu {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
        z-index: 1001;
        cursor: pointer;
        flex-direction: column;
        justify-content: space-between;
    }

    .hamburger-menu div {
        width: 100%;
        height: 3px;
        background-color: white;
        transition: all 0.3s ease;
    }

    /* Hamburger animáció */
    .hamburger-menu.active div:nth-child(1) {
        transform: translateY(19px) rotate(45deg);
    }

    .hamburger-menu.active div:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active div:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Menü oldalsávvá alakul */
    .navbar ul {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.5);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        z-index: 1000;
    }

    .navbar ul.open {
        transform: translateX(0);
    }

    .navbar ul li {
        margin: 15px 0;
    }

    .navbar ul a {
        color: white;
        text-decoration: none;
        font-size: 18px;
        transition: 0.3s;
    }

    .navbar ul a:hover {
        color: #004AAD;
    }

    /* X gomb a menüsávban */
    .navbar ul::before {
        content: '';
        font-size: 24px;
        color: white;
        position: absolute;
        top: 15px;
        right: 35px;
        cursor: pointer;
    }
}

/* Mobil nézet extra finomítás (kisebb szélesség) */
@media (max-width: 768px) {
    .navbar ul {
        width: 250px;
    }

    .navbar ul a {
        font-size: 16px;
    }
}

@media (min-width: 1025px) {
    .hamburger-menu {
        display: none;
    }

    .navbar ul {
        display: flex;
        position: static;
        /* normál menü visszaállítása */
    }
}

@media (max-width: 400px) {
    .contact-infoo-contentt a {
        font-size: 14px;
    }
}