@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
:root {
    --primary-color: #4a2e1f;
    --secondary-color: #d4a25a;
    --third-color: #1F2223;
    --hover-color: #003f88;
    --bg-color: #ffffff;
    --text-color: #333333;
    --menu-dropdown-bg: #ffffff;
    --font-size-p: 1.1rem;
    --font-size-h2:2rem;
    --border-radius: 0px;
}


.szechenyi-logo {
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 1000; /* biztosítja, hogy a logó a többi tartalom fölött jelenjen meg */
}

.szechenyi-logo img {
    width: 150px; /* beállíthatod a méretét igény szerint */
    height: auto;
    transition: transform 0.3s ease;
}

.szechenyi-logo img:hover {
    transform: scale(1.05); /* enyhe nagyítás az egérrel való rámutatáskor */
}

@font-face {
    font-family: 'noelScript';
    src: url('/static/fonts/noeliascriptpro-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'CodecPro';
    src: url('/static/fonts/CodecPro-Light.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
body {
    font-family: 'DM Sans', sans-serif;
}

.site-header {
    background: #f5f1e8 !important;
    padding-left: 60px;
    padding-right: 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.custom-navbar .navbar-toggler {
    border-color: var(--primary-color);

}

.logo {
    height: 40px;
    margin-right: 50px;
}

.custom-navbar .nav-link {
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: 400; /* Vékonyabb font-weight */
    background-color: transparent;
    outline: none;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
    color: #B69F50;
    background-color: transparent;
    outline: none;
}

.nav-item1 .dropdown-menu {
    position: absolute;
    left: -264px;
    top: 47px;
    width: 300px;
    padding: 30px;
    list-style: none;
    border-radius: var(--border-radius);
    background-color: var(--menu-dropdown-bg);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.nav-item .dropdown-menu {
    position: absolute;
    left: -50px;
    top: 53px;
    width: 380px;
    padding: 20px;
    border: none;
    border-radius: var(--border-radius);
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    font-size: 18px;
    color: var(--primary-color);
    transition: background-color 0.1s, color 0.2s;
}
.nav-item {
    font-size: 19px;

}
.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--primary-color);
    color: #ffffff;
}

.dropdown-toggle::after {
    display: none;
}

.navbar {
    border-bottom: 1px solid var(--border-color);
}

@media (min-width: 992px) and (max-width: 1200px) {
    .site-header {
        padding-left: 20px;
        padding-right: 20px;
        background-color: var(--menu-dropdown-bg);
    }

    /* Az ms-auto deaktiválása */
    .custom-navbar .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important; /* Menüpontok balra igazítása */
        margin-left: 0 !important; /* Eltávolítjuk az automatikus jobbra igazítást */
    }

    .custom-navbar .navbar-toggler {
        display: block;
        position: absolute;
        right: 20px;
        top: 10px;
        z-index: 1051;
        border: none;
        background: none;
        outline: none;
    }

    .custom-navbar .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0; /* A panel továbbra is jobb oldalról jön be */
        width: 400px;
        height: 100%;
        background-color: var(--menu-dropdown-bg);
        overflow-y: auto;
        padding: 15px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .custom-navbar .nav-link,
    .custom-navbar .navbar-nav .nav-link {
        color: #000000;
        display: block;
        padding: 8px 15px;
    }

    .custom-navbar .nav-link:hover,
    .custom-navbar .navbar-nav .nav-link:hover {
        color: var(--hover-color);
    }

    .nav-item {
        font-size: 18px;
    }

    .nav-item .dropdown-menu {
        position: static;
        width: 370px;
        left: 0;
        padding: 15px;
        font-size: 17px;
    }

    .nav-item1 .dropdown-menu {
        position: static;
        width: 400px;
        left: 0;
        margin-top: 5px;
        padding: 15px;
        font-size: 17px;
    }

    .dropdown-item {
        padding: 8px 15px;
    }

    .navbar {
        border-bottom: none;
    }

    .custom-navbar .navbar-toggler {
        z-index: 1051;
        position: absolute;
        right: 0; /* Marad jobb oldalon a gomb */
        background: none;
        border: none;
        outline: none;
    }

    .custom-navbar .navbar-toggler:focus,
    .custom-navbar .navbar-toggler:hover {
        border: none;
        background: none;
        outline: none;
        box-shadow: none;
    }
    .logo {
        height: 30px;
    }
}




@media (min-width: 769px) and (max-width: 991px) {
    .site-header {
        padding-left: 20px;
        padding-right: 20px;
        background-color: var(--menu-dropdown-bg);
    }
    .logo {
        height: 30px;
    }
    .custom-navbar .navbar-toggler {
        display: block;
        position: absolute;
        right: 20px;
        top: 10px;
        z-index: 1051;
        border: none;
        background: none;
        outline: none;
    }
    .custom-navbar .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 400px;
        height: 100%;
        background-color: var(--menu-dropdown-bg);
        overflow-y: auto;
        padding: 15px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .navbar-collapse.show {
        transform: translateX(0);
    }
    .nav-item {
        font-size: 18px;
    }
    .custom-navbar .nav-link,
    .custom-navbar .navbar-nav .nav-link {
        color: #000000;
        display: block;
        padding: 8px 15px;
    }
    .custom-navbar .nav-link:hover,
    .custom-navbar .navbar-nav .nav-link:hover {
        color: var(--hover-color);
    }
    .custom-navbar .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    .nav-item .dropdown-menu {
        position: static;
        width: 370px;
        left: 0;
        padding: 15px;
        font-size: 17px;
    }
    .nav-item1 .dropdown-menu {
        position: static;
        width: 400px;
        left: 0;
        margin-top: 13px;
        padding: 15px;
        font-size: 17px;
    }
    .dropdown-item {
        padding: 8px 15px;
    }
    .navbar {
        border-bottom: none;
    }

    .custom-navbar .navbar-nav {
        margin-top: 50px;
    }

    .custom-navbar .navbar-toggler {
        z-index: 1051;
        position: absolute;
        right: 0;
        background: none;
        border: none;
        outline: none;
    }

    .custom-navbar .navbar-toggler:focus,
    .custom-navbar .navbar-toggler:hover {
        border: none;
        background: none;
        outline: none;
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding-left: 20px;
        padding-right: 20px;
        background-color: var(--menu-dropdown-bg);
    }
    .custom-navbar .navbar-toggler {
        border-color: var(--primary-color);
    }
    .custom-navbar .navbar-nav {
        margin-top: 50px;
    }
    .custom-navbar .nav-link {
        margin-right: 0;
    }

    .custom-navbar .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--menu-dropdown-bg);
        overflow-y: auto;
        padding: 15px 40px;
        transition: transform 0.15s ease;
        transform: translateX(-100%);
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }
    .logo {
        height: 30px;
    }

    .nav-item, .nav-item1 {
        font-size: 26px;
    }
    .nav-item .dropdown-menu {
        position: static;
        width: 100%;
        left: 0;
        top: 100%;
        padding: 10px;
        font-size: 20px;
    }
    .dropdown-item {
        padding: 8px 15px;
    }
    .navbar {
        border-bottom: none;
    }
    .custom-navbar .navbar-toggler {
        border: none;
        background: none;
    }
    .custom-navbar .navbar-toggler {
        z-index: 1051;
        position: absolute;
        right: 0;
        background: none;
        border: none;
        outline: none;
    }
    .nav-item1 .dropdown-menu {
        position: static;
        width: auto;
        left: 0;
        margin-top: 10px;
        padding: 15px;
        font-size: 17px;
    }

    .custom-navbar .navbar-toggler:focus,
    .custom-navbar .navbar-toggler:hover {
        border: none;
        background: none;
        outline: none;
        box-shadow: none;
    }
}



.site-footer {
    background: #f5f1e8 !important;
    color: var(--primary-color);
    padding: 40px 60px;
}

.site-footer h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.site-footer p, .site-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer .fa {
    margin-right: 10px;
    color: var(--primary-color);
}

.site-footer .fa:hover {
    color: var(--hover-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--primary-color);
    position: relative;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: none;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    left: 0;
    bottom: -2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    margin: 0 10px;
    color: var(--primary-color);
    font-size: 20px;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.site-footer .logo {
    width: 200px;
    height: auto;
}
.site-footer .footer-image {
    height: 30px;
    width: 150px;
}
@media (min-width: 992px) and (max-width: 1200px)  {
    .site-footer {
        padding: 40px 20px;
    }

}
@media (min-width: 769px) and (max-width: 991px) {
    .site-footer {
        padding: 40px 20px;
    }
    .footer-toggle .fa-chevron-down {
        display: none;
    }

}
@media (max-width: 768px) {
    .site-footer {
        padding: 20px 20px;
    }

    .site-footer .col-lg-4 {
        margin-bottom: 20px;
    }

    .site-footer p, .site-footer a {
        text-align: left;
    }

    .social-icons {
        text-align: left;
        margin-bottom: 10px;
    }

    .site-footer .row.mt-4 .col-12 {
        flex-direction: column;
    }

    .site-footer .row.mt-4 .col-12 p {
        margin-top: 10px;
    }

    .footer-links {
        display: none;
    }

    .footer-links.show {
        display: block;
        margin-left: 20px;
    }

    .footer-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-toggle .fa-chevron-down {
        transition: transform 0.3s;
        transform: rotate(-90deg);
    }


}

.hero-section {
    padding: 100px 120px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.highlighted-word {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.word-border {
    width: 3px;
    height: 30px;
    background-color: var(--primary-color);
    margin-right: 10px;
}

.word-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.section-description {
    font-size: 1.05rem;
    margin-bottom: 30px;
    margin-right: 40px;
    color: #333;
}

/* Secondary Button */
.btn-secondary {
    background-color: var(--secondary-color);
    border: 2px solid #fff;
    padding: 10px 30px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    margin: 5px 10px;
    border-radius: 0px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
    background-color: #9B8745 !important;
    color: #ffffff !important;
    border: 2px solid #fff;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

/* Outline Secondary Button */
.btn-outline-secondary {
    background-color: #fff;
    border: 2px solid var(--secondary-color);
    padding: 10px 30px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
    margin: 5px 10px;
    border-radius: 0;
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:active,
.btn-outline-secondary:focus {
    background-color: #fff !important;
    border-color: #fff !important;
    color: var(--secondary-color) !important;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}


/* Outline Secondary Button */
.btn-outline-info {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 10px 30px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    margin: 5px 10px;
    border-radius: 0;
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

.btn-outline-info:hover,
.btn-outline-info:active,
.btn-outline-info:focus {
    background-color: #fff !important;
    border-color: #fff !important;
    color: var(--primary-color) !important;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}



.btn-info {
    background-color: #fff;
    border: 2px solid #fff;
    padding: 10px 50px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    margin: 5px 0px;
    border-radius: 0px;
    transition: background-color 0.5s ease, color 0.5s ease !important;
}


.btn-info:hover,
.btn-info:active,
.btn-info:focus {
    background-color: transparent !important;
    color: #fff !important;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

.btn-link-primary {
    background-color: transparent;
    border: 2px solid transparent;
    padding: 0px 10px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    margin: 5px 15px;
    border-radius: 0px;
    position: relative; /* Szükséges a ::after pseudo-elem elhelyezéséhez */
    transition: background-color 0.5s ease, color 0.5s ease;
    overflow: hidden; /* Megakadályozza, hogy a vonal kívülre kerüljön */
}
.btn-link-primary::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0; /* Kezdéskor a vonal hossza 0 */
    height: 2px; /* A vonal vastagsága */
    background-color: var(--primary-color); /* A vonal színe */
    transition: width 0.5s ease; /* Animálás az aláhúzás során */
}
.btn-link-primary:hover::after {
    width: 100%; /* Teljes szélességre animáljuk a vonalat */
}
.btn-link-primary:hover {
    color: var(--primary-color); /* Szöveg színe változhat hover során */
}

.btn-link-white {
    background-color: transparent;
    border: 2px solid transparent;
    padding: 0px 10px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    margin: 5px 15px;
    border-radius: 0px;
    position: relative; /* Szükséges a ::after pseudo-elem elhelyezéséhez */
    transition: background-color 0.5s ease, color 0.5s ease;
    overflow: hidden; /* Megakadályozza, hogy a vonal kívülre kerüljön */
}
.btn-link-white::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0; /* Kezdéskor a vonal hossza 0 */
    height: 2px; /* A vonal vastagsága */
    background-color: #fff; /* A vonal színe */
    transition: width 0.5s ease; /* Animálás az aláhúzás során */
}
.btn-link-white:hover::after {
    width: 100%; /* Teljes szélességre animáljuk a vonalat */
}
.btn-link-white:hover {
    color: #fff; /* Szöveg színe változhat hover során */
}


/* Primary Button */
.btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 50px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    margin: 5px 0px;
    border-radius: 0px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

/* Outline Primary Button */
.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    padding: 10px 40px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    margin: 5px 0px;
    border-radius: 0px;
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

section {
    padding: 60px 60px;
}

@media (min-width: 992px) and (max-width: 1200px)  {
    section {
        padding: 40px 20px;
    }
}
@media (min-width: 769px) and (max-width: 991px) {
    section {
        padding: 40px 20px;
    }
}
@media (max-width: 768px) {
    section {
        padding: 20px 20px;
    }
}

.restaurant-showcase {
    background-color: #f8f9fa;
}
.restaurant-showcase .highlight-paulus {
    text-transform: uppercase;
}
.restaurant-showcase .highlight-cafe {
    letter-spacing: 4px;
    font-family: noelScript;
}
.showcase-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0;
}
.showcase-text {
    background-color: #f5f1e8;
    padding: 40px;
    border-radius: 0;
    color: #4a2e1f;
}
.showcase-text .nexttomaps {
    color: #a63a2a;
    text-decoration: none;
}
.showcase-text .nexttomaps:hover {
    text-decoration: underline;
}
.showcase-text .nexttomaps img {
    width: 18px;
    position: relative;
    top: -6px;


    
}
.showcase-text h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.showcase-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.extra-text-up {
    padding: 10px 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}
.extra-text-bottom {
    display: none;
    padding: 20px 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .extra-text-up {
        display: none;
    }
    .extra-text-bottom {
        display: block;
    }
}
@media (max-width: 768px) {
    .extra-text-up {
        padding: 5px 0px;
    }
    .restaurant-showcase .row {
        flex-direction: column;
    }
    .showcase-text {
        margin-top: 20px;
        padding: 30px;
    }
    .restaurant-showcase .btn-secondary{
        width: 100%;
        margin: 0;
    }
    .restaurant-showcase .btn-outline-secondary{
        width: 100%;

        margin: 10px 0 0 0;
    }
}

@media (max-width: 1600px) {
    .showcase-image {
        aspect-ratio: 1 / 1;
    }
}









.carousel-section {
    background: #f1f2f1;
}
.carousel-section .btn-secondary {
    margin: 0px;
}
.carousel-section .carousel-text {
  text-align: left;
  margin-bottom: 20px;
}

.carousel-section .carousel-text h2 {
  font-size: var(--font-size-h2);
  font-weight: bold;
    color: var(--primary-color);
  margin-bottom: 10px;
    margin-right: 20px;
}

.carousel-section .carousel-text p {
  font-size: var(--font-size-p);
  margin-right: 20px;
color: var(--primary-color);
}

.carousel-section .carousel-nav {
  margin-top: 20px;
}

.carousel-section .carousel-nav .prev-btn, .carousel-nav .next-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
 color: var(--primary-color);
  padding: 10px 20px;
}

.carousel-section .carousel-cards {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.carousel-section .card {
  scroll-snap-align: start;
  min-width: 430px;
  max-width: 430px;
    background: rgba(255,255,255,0.85);
  padding: 0px 0;
  border-radius: 0;
  border: 1px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
    min-height: 520px;
  height: 100%;
}

.carousel-section .card img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.carousel-section .card-content {
  padding: 20px;
  border-radius: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.carousel-section .card-content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.carousel-section .card-content .popular {
    background: var(--secondary-color);
    color: #fff;
    padding: 4px 10px;
    margin-left: 15px;
    border-radius: 0px;
    font-size: 0.9rem;
}

.carousel-section .card-content .price {
  color: var(--primary-color);
  font-size: var(--font-size-p);
  font-weight: 500;
  margin-bottom: auto;
}

.carousel-section .card-content p {
  color: var(--primary-color);
  font-size: 1rem;

}
.carousel-section .card-content a {
  margin-top: 20px;
  color: var(--hover-color);
  text-decoration: none;
  font-weight: bold;
}


@media (min-width: 991px) and (max-width: 1200px) {

    .carousel-section .card {
        min-width: 380px;
    }
}
@media (min-width: 769px) and (max-width: 991px) {
      .carousel-section .carousel-text {
        text-align: left;
      }
      .carousel-section .carousel-text h2 {
        font-size: 2rem;
      }
      .carousel-section .carousel-text p {
        font-size: var(--font-size-p);
      }
      .carousel-section .carousel-cards {
        overflow-x: auto;
        flex-direction: row;
        gap: 20px;
      }
      .carousel-section .card {
        min-width: 400px;
        padding: 10px 0;
      }
}

@media (max-width: 768px) {
  .carousel-section .carousel-text {
    text-align: left;
      margin-top: 30px !important;
  }
  .carousel-section .carousel-text h2 {
    font-size: 2rem;
  }
  .carousel-section .carousel-text p {
    font-size: var(--font-size-p);
  }
  .carousel-section .carousel-cards {
    overflow-x: auto;
    flex-direction: row;
    gap: 20px;
  }
  .carousel-section .card {
    min-width: 100%;
    padding: 10px 0;
  }
}




.gallery-section {
    background-color: #fff;
}

.section-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Hat kép egy sorban */
    gap: 20px; /* Térköz a képek között */
}
.gallery_etlap {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Hat kép egy sorban */
    gap: 20px; /* Térköz a képek között */
}
.gallery-section .gallery_etlap .gallery-image {
    width: 100%;
    aspect-ratio: 1414 / 2000; 
    object-fit: cover; /* A kép kitölti a rendelkezésre álló helyet */
    border-radius: 0px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.gallery-section .gallery-image {
    width: 100%;
    aspect-ratio: 1 / 1; /* Négyzet alakú képek */
    object-fit: cover; /* A kép kitölti a rendelkezésre álló helyet */
    border-radius: 0px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.gallery-section button {
    margin: 0 40px 0 0;
}
.gallery-section .gallery-image:hover {
    transform: scale(1.05);
}
.gallery-section .text-box-container {
    display: flex;
    gap: 20px; /* Térköz a két doboz között */
    flex-wrap: wrap; /* A kisebb képernyőkön igazodás egymás alá */
    justify-content: space-between;
    margin-bottom: 30px;
}
.gallery-section .text-box1 {
    background: #f5f1e8;
    padding: 40px;
    flex: 1 1 calc(50% - 10px); /* A dobozok mindegyike fele szélességet foglal, kis térközzel */
    color: #fff;
}
.gallery-section .text-box-long {

    padding-right: 40px;


    align-items: center; /* Függőleges középre igazítás */
    margin-bottom: 0 !important;

}

.gallery-section .text-box-long .cafe {
    font-family: noelScript;
}

.gallery-section .text-box-long h2 {
    color: var(--primary-color);
    margin: 0; /* Alapértelmezett margó eltávolítása */
}

.gallery-section .text-box{
    background: #1F2223;
    padding: 40px;
    flex: 1 1 calc(50% - 10px); /* A dobozok mindegyike fele szélességet foglal, kis térközzel */
    color: #fff;
}
.gallery-section .gallery-description {
    font-size: 1.1rem;
    color: #fff;
    text-align: left; /* Középre igazított szöveg */
    margin-top: 20px;
    line-height: 1.6; /* Kellemes olvashatóság */
}
@media (min-width: 1201px) and (max-width: 1500px) {
    .gallery {
        grid-template-columns: repeat(6, 1fr); /* Öt kép egy sorban */
    }
    .gallery_etlap {
        grid-template-columns: repeat(3, 1fr); /* Öt kép egy sorban */
    }
    .gallery-section .text-box {
        max-width: 65%;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .gallery {
        grid-template-columns: repeat(6, 1fr); /* Négy kép egy sorban */
    }
    .gallery_etlap {
        grid-template-columns: repeat(2, 1fr); /* Öt kép egy sorban */
    }
    .gallery-section .text-box {
        max-width: 100%;
    }
}
@media (min-width: 769px) and (max-width: 991px) {
    .gallery {
        grid-template-columns: repeat(4, 1fr); /* Három kép egy sorban */
    }
    .gallery_etlap {
        grid-template-columns: repeat(2, 1fr); /* Öt kép egy sorban */
    }
    .gallery-section .text-box {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .gallery-section {
        padding: 40px 10px;
    }
    .gallery {
        grid-template-columns: repeat(2, 1fr); /* Két kép egy sorban */
    }
    .gallery_etlap {
        grid-template-columns: repeat(1, 1fr); /* Öt kép egy sorban */
    }

    .gallery-section button {
        width: 100%;
        margin: 10px 0 0 0;
    }
    .gallery-section .text-box,
    .gallery-section .text-box1 {
        flex: 1 1 100%; /* Mobil nézetben a dobozok teljes szélességet foglalnak el egymás alatt */
        margin-bottom: 20px;
        padding: 30px;
    }

}


#imageModal {
    display: none; /* Alapértelmezés szerint a modál rejtett */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center; /* Vertikális középre igazítás */
    justify-content: center; /* Horizontális középre igazítás */
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden; /* A modál tartalmán belüli túlcsordulás megakadályozása */
}

#imageModal .modal-content {
    position: relative;
    max-width: 100%; /* A kép maximális szélessége a képernyő 90%-a */
    max-height: 100%; /* A kép maximális magassága a képernyő 90%-a */
    border-radius: 0px;
    width: auto;
    height: auto;
    object-fit: contain; /* A kép megtartja az arányait és belefér a rendelkezésre álló helybe */
}

#imageModal .close {
    position: absolute;
    top: 5px;
    right: 25px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

#imageModal .close:hover,
#imageModal .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#imageModal .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 10px;
    margin-top: -22px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    user-select: none;
    text-decoration: none;
    background: rgba(255,255,255,0.8);
}

#imageModal .prev {
    left: 10px;
}

#imageModal .next {
    right: 10px;
}

#imageModal .prev:hover, .next:hover {
    background: rgba(255,255,255,0.8);
}


.subscription-section {
    background-color: #fff;
    text-align: left;
    border-top: 2px solid var(--primary-color);
}

.subscription-section .container {
    max-width: 1000px;
    background: linear-gradient(135deg, #c8e0e6, #cff2fb);
    padding: 40px;
}

.subscription-section .section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.subscription-description {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.6;
}

.subscription-form {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.subscription-input {
    padding: 10px 15px;
    font-size: 1rem;
    width: 300px;
    max-width: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    outline: none;
}

.subscription-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.success-message {
    margin-top: 20px;
    padding: 15px;
    color: #fff;
    background-color: var(--primary-color);
    text-align: center;
    font-size: 1.1rem;
    display: none; /* Initially hidden */
}

@media (max-width: 768px) {
    .subscription-section .container {
        padding: 30px;
    }
    .subscription-section button {
        width: 100%;
        margin: 0;
    }
}


.daily-menu-section {
    background-color: var(--third-color);
}
.daily-menu-section .date-time {
    background: var(--secondary-color);
    display: flex; /* Flexbox használata az elemek sorba rendezéséhez */
    justify-content: space-between; /* Elemek közötti térköz: a cím balra, a dátum jobbra kerül */
    align-items: center; /* Függőleges középre igazítás */
    padding: 10px 25px; /* Térköz hozzáadása a jobb vizuális megjelenés érdekében */
    margin-bottom: 4px;
}

.daily-menu-section .date-time h1 {
    font-size: 2rem;
    color: white;
    margin: 0; /* Eltávolítjuk a margót, hogy ne legyen eltérés az igazításban */
}

.daily-menu-section .date-time h3 {
    color: white;
    margin: 0; /* Eltávolítjuk a margót a h3 elem körül */
    font-size: 1.5rem; /* Kisebb betűméret a h1-hez képest */
}



.daily-menu-row {
    display: grid; /* Grid elrendezés használata */
    grid-template-columns: repeat(2, 1fr); /* Két oszlop, így egy sorban csak két elem van */
    gap: 20px; /* Térköz a sorok és oszlopok között */
    justify-content: center; /* Középre igazítás */
    align-items: start; /* Felső igazítás a különböző magasságú elemekhez */
}



.daily-menu-row {
    display: grid; /* Grid elrendezés használata */
    grid-template-columns: repeat(3, 1fr); /* Két oszlop, így egy sorban csak két elem van */
    gap: 4px; /* Térköz a sorok és oszlopok között */
    justify-content: center; /* Középre igazítás */
    align-items: start; /* Felső igazítás a különböző magasságú elemekhez */
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2; /* Fentebb helyezkedjen el */
}


.daily-menu-box-container {
    width: 100%;
}
.daily-menu-box-container.primary-box .menu-box {
    background: var(--primary-color);
    color: #fff; /* Fehér színű szöveg a sötétebb háttérhez */
}
.daily-menu-box-container.primary-box .menu-box h2,
.daily-menu-box-container.primary-box .menu-box h3,
.daily-menu-box-container.primary-box .menu-box p {
    color: #fff; /* Minden h2, h3 és p elem színe fehér legyen */
}

.daily-menu-box-container.secondary-box .menu-box {
    background: var(--secondary-color);
    color: #fff; /* Sötétebb színű szöveg a világosabb háttérhez */
}
.daily-menu-box-container.secondary-box .menu-box h2,
.daily-menu-box-container.secondary-box .menu-box h3,
.daily-menu-box-container.secondary-box .menu-box p {
    color: #fff; /* Minden h2, h3 és p elem színe sötétebb legyen */
}

/* Third Box */
.daily-menu-box-container.third-box .menu-box {
    background: var(--third-color);
    color: #fff; /* Fehér színű szöveg a harmadik színű háttérhez */
}

.daily-menu-box-container.third-box .menu-box h2,
.daily-menu-box-container.third-box .menu-box h3,
.daily-menu-box-container.third-box .menu-box p {
    color: #fff; /* Minden h2, h3 és p elem színe fehér legyen */
}
.menu-box {
    background: #fff;
    padding: 25px;
    border-radius: 0px;

}

.menu-box h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.menu-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.menu-item .price {
    background: var(--secondary-color);
    padding: 4px 8px;
    color: #fff;
    /* Alapértelmezett méret */
}



.menu-item p {
    margin: 10px 0;
    font-size: 1rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .daily-menu-section {
        padding: 0px 10px;
    }
    .daily-menu-row {
        grid-template-columns: 1fr; /* Mobilon egy oszlopos elrendezés */
        gap: 4px; /* Nagyobb térköz a menü boxok között */
    }
    .menu-box {
        margin-top: 0px; /* Mobilon a menü box külön jelenjen meg a kép alatt */
        padding: 20px; /* Csökkentett padding a jobb megjelenéshez */
    }
    .daily-menu-section .date-time {
        padding: 10px 15px;
    }
}



.menu-section {
    background-color: #ffffff;
    margin: 0 auto;
}
.menu-section h3 {
    margin: 50px 0 50px 0;
}
.menu-section .section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.menu-section .menu-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Három egyenlő szélességű oszlop */
    gap: 20px; /* Térköz az oszlopok és sorok között */
}

.menu-section .menu-item {
    padding: 0px;
    border-bottom: 1px solid var(--primary-color);
    transition: background-color 0.2s;
}

.menu-section .menu-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
}

.menu-section .menu-name {
    font-size: 1.2rem;
    font-weight: 600;
    max-width: 70%;
    text-transform: uppercase;
    color: var(--primary-color);
}

.menu-section .menu-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.menu-section .menu-description {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.4;
    margin-top: 5px;
}
@media (min-width: 769px) and (max-width: 1200px) {
     .menu-section .menu-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Három egyenlő szélességű oszlop */
        gap: 20px; /* Térköz az oszlopok és sorok között */
    }
}
@media (max-width: 768px) {
    .menu-section {
        padding: 40px 10px;
    }
    .menu-section .menu-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr); /* Három egyenlő szélességű oszlop */
        gap: 20px; /* Térköz az oszlopok és sorok között */
    }
}



.events-section {
    background-color: #ffffff;
    margin: 0 auto;
}
.events-section .text-box-container {
    display: flex;
    gap: 4px; /* Térköz a két doboz között */
    flex-wrap: wrap; /* A kisebb képernyőkön igazodás egymás alá */
    justify-content: space-between;
    margin-bottom: 30px;
}
.events-section h2 {
    font-size: 2rem;
}
.events-section .text-box{
    padding: 40px;
    flex: 1 1 calc(50% - 10px); /* A dobozok mindegyike fele szélességet foglal, kis térközzel */
}
.events-section button {
    margin: 0;
}
.events-section .wedding {
    background: url('/static/img/rendezvenyek/wedding.webp') no-repeat center center/cover; /* Háttérkép hozzáadása */
    text-align: left;
    color: #ffffff;
    position: relative;
    z-index: 1;
}
.events-section .wedding::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(182, 159, 80, 0.75); /* Átlátszó kék réteg a háttérképen */
    z-index: -1;
}





.events-section .text-box.bg-third {
    background: var(--third-color);
    color: var(--secondary-color);
}
.events-section .text-box.bg-third .section-title {
    color: #fff;
}
.events-section .text-box.img-box {
    padding: 0;
    aspect-ratio: 16/9;
    overflow: hidden; /* Elrejti a túllógó képrészeket */
    position: relative; /* A belső tartalom pozicionálásához szükséges */
}

.events-section .text-box.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Biztosítja, hogy a kép kitöltse a konténert, de ne torzuljon */
    position: absolute; /* A képet a konténerhez igazítja */
    top: 0;
    left: 0;
}
.events-section .text-box.bg-secondary {
    background: var(--secondary-color) !important;
    color: #fff;
}
.events-section .text-box.bg-secondary .section-title {
    color: #fff !important;
}
.events-section .mobile {
    display: none;
}
@media (min-width: 992px) and (max-width: 1200px) {
    .events-section .text-box {
        max-width: 100%;
    }
}
@media (min-width: 769px) and (max-width: 991px) {
    .events-section .text-box {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .events-section {
        padding: 40px 10px;
    }
    .events-section h2 {
        font-size: 1.8rem;
    }
    .events-section .text-box {
        flex: 1 1 100%;
        padding: 25px;
    }
    .events-section .text-box-container {
        gap: 4px;
    }
    .events-section .pc {
        display: none;
    }
    .events-section .mobile {
        display: block;
    }

}



/* Esküvők szekció */
.wedding-section {
    padding: 200px 60px;
    background: url('/static/img/wedding.jpg') no-repeat center center/cover; /* Háttérkép hozzáadása */
    text-align: left;
    color: #ffffff;
    position: relative;
    z-index: 1;

}

.wedding-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 143, 173, 0.75); /* Átlátszó kék réteg a háttérképen */
    z-index: -1;
}

.wedding-section .wedding-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 200 !important;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.wedding-section .wedding-highlighted-word {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 30px;
}
.wedding-section .cafe {
    font-family: noelScript;
}

.wedding-section .word-text {
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    font-family: noelScript;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.wedding-section .wedding-description {
    font-size: 1.4rem;
    line-height: 1.8;
    max-width: 50%;
    color: #ffffff;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1201px) and (max-width: 1500px) {
    .wedding-section .wedding-description {
        max-width: 70%;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .wedding-section .wedding-description {
        max-width: 100%;
    }
    .wedding-section {
        padding: 100px 20px;
    }
}
@media (min-width: 769px) and (max-width: 991px) {
    .wedding-section .wedding-description {
        max-width: 100%;
    }
    .wedding-section {
        padding: 100px 20px;
    }
}

@media (max-width: 768px) {
    .wedding-section button {
        width: 100%;
        margin: 10px 0px 0 0;
    }
    .wedding-section {
        padding: 80px 10px;
    }
    .wedding-section .wedding-description {
        max-width: 100%;
    }
}

/* Esküvői szolgáltatások szekció */
.wedding-services-section {
    background-color: #f8f9fa;
    text-align: left;
}

.wedding-services-section .section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-family: 'DM Sans', sans-serif;

}
.wedding-services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

.wedding-services-section .service-box {
    background: #fff;
    padding: 40px;
    border-radius: 0px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.wedding-services-section .service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.wedding-services-section .service-box h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.wedding-services-section .service-box p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

@media (min-width: 769px) and (max-width: 1200px) {
    .wedding-services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}
@media (max-width: 768px) {
    .wedding-services-section {
        padding: 40px 20px;
    }
    .wedding-services-section .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .wedding-services-section .service-box {
        padding: 30px;
    }
}




.faq-section {
    background: url('/static/img/wedding2.jpg') no-repeat center center/cover; /* Háttérkép hozzáadása */
    color: #ffffff;
    position: relative;
    z-index: 1;
}
.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(182, 159, 80, 0.9); /* Átlátszó kék réteg a háttérképen */
    z-index: -1;
}
.col-5 .faq-summary {
    margin-top: 30px;

    background: #fff;
    padding: 40px;
    border: 1px solid #ddd;
}
.col-5 .faq-summary:hover {
    border: 1px solid var(--secondary-color);
}
.faq-section .faq-summary ul {
    list-style-type: none;
    padding: 0;
}

.faq-section .faq-summary ul li {
    margin-bottom: 15px;
}
.faq-section span {
    color: #6a6a6a;
    font-size: var(--font-size-p);
    margin-bottom: 10px;
    display: block;
}
.faq-section .faq-summary ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
}

.faq-section .faq-summary ul li a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}
.faq-section .faq-content {
    margin-left: 100px;
    margin-top: 30px;
}
.faq-section .faq-content h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #333;
}

.faq-section .faq-item {
    margin-bottom: 30px;
    margin-right: 10%;
}

.faq-section .faq-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.faq-section .faq-item p {
    font-size: var(--font-size-p);
    color: #fff;
    line-height: 1.6;
    font-weight: 500;
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .faq-section .faq-item {
        margin-bottom: 30px;
        margin-right: 0%;
    }
}
@media (min-width: 991px) and (max-width: 1200px) {

    .faq-section .faq-item {
        margin-bottom: 30px;
        margin-right: 0%;
    }
    .faq-section .faq-content {
        margin-left: 50px;
    }
}
@media (min-width: 769px) and (max-width: 991px) {


    .faq-section .row {
        display: flex;
        flex-direction: column; /* Az oszlopok egymás alá kerülnek */
    }

    .faq-section .col-5, .faq-section .col-7 {
        width: 100%; /* Teljes szélesség mindkét oszlopnak */
        margin-bottom: 20px; /* Alsó margó, hogy legyen hely a következő blokk előtt */
    }

    .faq-section .faq-summary {
        padding: 30px; /* Kisebb padding a bal oldali menüben */
    }

    .faq-section .faq-content {
        margin-left: 0; /* Nincs bal margó, mivel egymás alatt vannak az elemek */
    }

    .faq-section .faq-item h3 {
        font-size: 24px; /* Kisebb címsor méret */
    }

    .faq-section .faq-item p {
        font-size: var(--font-size-p); /* Kisebb betűméret a válaszokhoz */
    }

    .faq-section .faq-item {
        margin-bottom: 25px; /* Csökkentett alsó margó a kérdések között */
    }
}
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 10px;
    }

    .faq-section .row {
        display: flex;
        flex-direction: column; /* Az oszlopok egymás alá kerülnek */
    }

    .faq-section .col-5, .faq-section .col-7 {
        width: 100%; /* Teljes szélesség mindkét oszlopnak */
        margin-bottom: 20px; /* Alsó margó, hogy legyen hely a következő blokk előtt */
    }

    .faq-section .faq-summary {
        padding: 30px; /* Kisebb padding a bal oldali menüben */
    }

    .faq-section .faq-content {
        margin-left: 0; /* Nincs bal margó, mivel egymás alatt vannak az elemek */
    }

    .faq-section .faq-item h3 {
        font-size: 24px; /* Kisebb címsor méret */
    }

    .faq-section .faq-item p {
        font-size: var(--font-size-p); /* Kisebb betűméret a válaszokhoz */
    }

    .faq-section .faq-item {
        margin-bottom: 25px; /* Csökkentett alsó margó a kérdések között */
    }
}



.map-section {
    background-color: var(--bg-color);
}
.map-container {
    width: 100%;
    height: 450px;
    margin-bottom: 20px;
}



.consultation-section {
    background: url('/static/img/kep2.jpg') no-repeat center center/cover; /* Háttérkép hozzáadása */
    text-align: left;
    color: #ffffff;
    position: relative;
    z-index: 1;
}
.consultation-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 143, 173, 0.8); /* Átlátszó kék réteg a háttérképen */
    z-index: -1;
}
.consultation-section a {
    color: var(--hover-color);
    text-decoration: none;
}
.consultation-section .form-check-label {
    color: var(--primary-color);
}
.consultation-section .form-check-input {
    border-radius: 0px;
    outline: none; /* Eltávolítja a fókusz outline-t */
    box-shadow: none; /* Eltávolítja a default fókusz box-shadow-t */
}

.consultation-section .form-check-input:focus,
.consultation-section .form-check-input:active,
.consultation-section .form-check-input:checked {
    outline: none;
    box-shadow: none;
    border: none;
    background-color: var(--primary-color); /* Maradjon primary color fókuszban és kattintott állapotban is */
}


.consultation-section .section-title {
    font-size: 2.2rem;
    font-weight: normal;
    margin-bottom: 20px;
    color: #fff;
}

.highlighted-word {
    margin-bottom: 20px;
}



.consultation-section .section-description {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 30px;
}
.consultation-section .section-description a {
    color: #fff;
}
.consultation-form {
    background-color: rgba(255,255,255, 0.9);
    border-radius: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
}

.form-control {
    border-radius: 0px;
    border: 1px solid #cccccc;
    background: rgba(255,255,255, 0.9);
    padding: 10px;
    font-size: 1rem;
}

.form-control:hover,
.form-control:focus,
.form-control:active {
    border-color: var(--primary-color) !important;
    outline: none !important;
    box-shadow: 0 0 5px rgba(0, 52, 89, 0.2) !important; /* Halvány kék árnyék a primary color színével összhangban */
}
@media (min-width: 992px) and (max-width: 1200px) {
    .consultation-section {
        padding: 40px 40px;
    }
    section {
        overflow-x: hidden;
    }
}
@media (min-width: 769px) and (max-width: 991px) {
    section {
        overflow-x: hidden;
    }
    .consultation-section {
        padding: 40px 30px;
    }

}
@media (max-width: 768px) {
    section {
        overflow-x: hidden;
    }
    .consultation-section {
        padding: 40px 20px;
    }
    .consultation-section .section-title {
        font-size: var(--font-size-h2);
    }
    .consultation-section .section-description {
        font-size: var(--font-size-p);
    }
    .consultation-form {
        padding: 30px 10px !important;
        background: transparent;
        box-shadow: none;
    }

    .consulting-second {
        background: #fff;
    }


}




.corporate-events {
    background: linear-gradient(135deg, #f0f4f8, #ffffff);
}

.corporate-events .event-text-container {
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.corporate-events button {
    margin: 0;
}
.corporate-events .events-text {
    padding: 30px;
    border-radius: 0px;
}

.corporate-events .section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.corporate-events .highlight-word {
    color: var(--secondary-color);
    font-weight: 300;
}

.corporate-events .section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #333333;
}

.corporate-events .event-benefits {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.corporate-events .event-benefits li {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.corporate-events .event-benefits li i {
    color: var(--secondary-color);
    margin-right: 10px;
}
.corporate-events .image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-top: 0px;
    aspect-ratio: 16 / 9;  /* Arány beállítása */
    width: 100%;
    max-height: 500px; /* Maximum magasság a jobb megjelenés érdekében */
}

.corporate-events .event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* A kép kitöltése az arány fenntartásával */
    transition: transform 0.3s ease;
}

.corporate-events .image-frame:hover .event-image {
    transform: scale(1.05);
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .corporate-events .image-frame {
        aspect-ratio: 1 / 1;  /* Arány beállítása */
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .corporate-events .image-frame {
        aspect-ratio: 1 / 1;  /* Arány beállítása */
    }
}
@media (min-width: 769px) and (max-width: 991px) {
    .corporate-events .events-text {
        padding: 20px;
        border-radius: 0px;
    }
}
@media (max-width: 768px) {
    .corporate-events {
        padding: 40px 20px;
    }
    .corporate-events .events-text {
        padding: 5px;
        border-radius: 0px;
    }
    .corporate-events button {
        width: 100%;
    }
}

.career-section {
    background-color: var(--third-color);
}

.career-section .section-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--secondary-color);
    text-align: left;
    margin-bottom: 10px;
}

.career-section .section-description {
    font-size: 1.2rem;
    text-align: left;
    color: #fff;
    margin-bottom: 20px;
}

.career-section .job-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.career-section .job-card {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 0px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.career-section .job-card h3 {
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 10px;
}
.career-section .job-card .tasks li {
    margin-left: 20px;
}
.career-section .job-card .benefits li {
    margin-left: 20px;
}
.career-section .job-card p {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 15px;
}

.career-section .job-card h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.career-section .job-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
    color: #fff;
}

.career-section .job-card ul li {
    margin-bottom: 5px;
}

.career-section .job-card button {
    margin-top: auto;
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .career-section .job-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .career-section .job-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
@media (min-width: 769px) and (max-width: 991px) {
    .career-section .job-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .career-section .job-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

/* Custom Modal Styles */
.custom-application-modal .modal-content {
    border-radius: 0; /* Remove rounded corners */
    padding: 20px; /* Add padding for spacing */
    background-color: var(--third-color);
}

.custom-application-modal label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.custom-application-modal .form-control {
    border-radius: 0; /* Remove rounded corners from form fields */
    padding: 10px;
    background: var(--third-color);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}
.custom-application-modal .form-control:hover,
.custom-application-modal .form-control:focus,
.custom-application-modal .form-control:active {
    border: 1px solid var(--secondary-color) !important; /* Border szín rögzítése */
    outline: none; /* Eltávolítja a default outline-ot */
}
.custom-application-modal .btn-secondary {
    margin: 0px;
}

.custom-application-modal .btn-primary:hover {
    background-color: var(--hover-color);
}
#modalJobTitle {
    color: var(--secondary-color);
    font-weight: 600;
}
















/* Bal alsó sarokban lévő trigger sáv */
.cookie-trigger {
    position: fixed;
    bottom: -12px;
    left: 50px;
    background-color: var(--primary-color);
    color: #fff;
    width: 150px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
    border: none; /* Nincs lekerekítés */
    font-size: 0.9rem;
    font-weight: bold;
}

.cookie-trigger:hover {
    transform: translateY(-10px);
}
/* Popup overlay */
.cookie-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Alapértelmezésben rejtett */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Popup stílus */
.cookie-popup {
    background: #fff;
    border-radius: 0px;
    width: 700px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1001;
}

/* Bezáró gomb */
.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Popup tartalom */
.cookie-box h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.cookie-box p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #666;
}

.cookie-box a {
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
}

.cookie-types {
    margin-bottom: 15px;
}



/* Gombok stílusa */
.cookie-buttons {
    display: flex;

    margin-top: 20px;
}

.cookie-buttons .btn-primary,
.cookie-buttons .btn-secondary,
.cookie-buttons .btn-outline-primary {
    padding: 7px 15px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 0px;
}

.cookie-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
}

.cookie-buttons .btn-secondary {
    background: #ccc;
    color: #333;
    border: none;
}

.cookie-buttons .btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}






/* Base toggle switch container */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

/* Hide the default checkbox */
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Slider style */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

/* Circle inside the slider */
.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

/* Checked state */
input:checked + .slider {
    background-color: var(--primary-color);
}
input:disabled + .slider {
    background-color: var(--third-color);
}

/* Move the circle when checked */
input:checked + .slider:before {
    transform: translateX(20px);
}



/* Egyéb stílusok */
.cookie-type {
    border-radius: 0px;
    margin-bottom: 10px;
    overflow: hidden;
    padding:0px;
}

.cookie-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    background-color: #f0f4f7;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 15px 20px;
}

.cookie-description {
    display: none;
    font-size: 0.9rem;
    color: #666;
    padding: 20px;
    border-top: 1px solid #ddd;
    background: white;
    width: 100%;
}

.cookie-description.active {
    display: block;
}

.toggle-icon {
    font-size: 1rem;
    color: #333;
    background: #d4dae0;
    border-radius: 50%;
    margin-right: 10px;
    transition: transform 0.3s;
}

.cookie-type-header.open .toggle-icon {
    transform: rotate(180deg);
}



.publikum-top-up {
  width: 100%;
  background: #fff;
  color: #000;
  border-bottom: 1px solid rgba(197, 164, 109, 0.22);
  font-family: 'CodecPro', Arial, sans-serif;
  letter-spacing: 0.2px;
}


.publikum-top {
  width: 100%;
  background: #fff;
  color: #000;
  border-bottom: 1px solid rgba(197, 164, 109, 0.22);
  font-family: 'CodecPro', Arial, sans-serif;
  letter-spacing: 0.2px;
}

.publikum-top__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
}

.publikum-top__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.publikum-top__row--first {
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.publikum-top__row--second {
  padding-top: 7px;
}

.publikum-top__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1.5;
}

.publikum-top__label {
  color: #c5a46d;
  font-weight: 600;
}

.publikum-top__text {
  color: #4a2e1f;
  opacity: 0.92;
}

.publikum-top__link {
  color: #4a2e1f;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.publikum-top__link:hover {
  color: #000;
  opacity: 1;
}

.publikum-top__divider {
  width: 1px;
  height: 14px;
  background: rgba(197, 164, 109, 0.28);
}
@media (max-width: 991px) {
  .publikum-top__inner {
    padding: 20px 40px;
  }

  .publikum-top__row {
    justify-content: flex-start;
    gap: 4px;
  }

  .publikum-top__divider {
    display: none;
  }

  .publikum-top__item {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    font-size: 15px;
  }

  .publikum-top__row--second .publikum-top__item:first-child {
    display: block;
  }

  .publikum-top__row--second .publikum-top__item:first-child .publikum-top__label,
  .publikum-top__row--second .publikum-top__item:first-child .publikum-top__text {
    display: block;
  }

  .publikum-top__row--second .publikum-top__item:first-child .publikum-top__label {
    margin-bottom: 2px;
  }
}
@media (max-width: 576px) {
  .publikum-top__item {
    font-size: 16px; /* még nagyobb mobilon */
  }

  .publikum-top__inner {
    padding: 20px 40px;
  }

  .publikum-top__row {
    gap: 3px; /* még kompaktabb */
  }
}


@media (min-width: 1200px) {
    .publikum-top {
        display: none;
    }
}

@media (min-width: 991px) and (max-width: 1200px) {
    .publikum-top-up {
        display: none;
    }
}
@media (min-width: 769px) and (max-width: 991px) {
    .publikum-top-up {
        display: none;
    }
}
@media (max-width: 768px) {
    .publikum-top-up {
        display: none;
    }
}

