.rend-card-left .rend-card-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.rend-card-left .rend-card-img img {
    width: 80%;
}

.menu-variation-container p {
    margin-bottom: 5rem;
}

.menu-variation-container .row .col {
    margin-bottom: 2rem;

}

.rend-card-left {
    width: 90%;
    padding-bottom: 2rem;
    border-right: 1px solid black;
    height: 80%;
}

.rend-card-left .rend-card-border {
    border-bottom: 1px solid black;
    margin-right: 2rem;
    padding-bottom: 2rem;
}




.rend-card-right .rend-card-img img {
    width: 80%;
}

.rend-card-right .rend-card-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.rend-card-right {
    width: 90%;
    padding-bottom: 2rem;
    border-left: 1px solid black;
    height: 80%;
}

.rend-card-right .rend-card-border {
    border-bottom: 1px solid black;
    margin-left: 2rem;
    padding-bottom: 2rem;
}

.menu-variation-container h1 {
    font-size: 28px;
}

.felsorolas {
    margin-top: 4.5rem;
}

.up-half-border {
    border-top: 2px solid black;
    width: 50%;
    margin-bottom: 1rem;
}

.down-half-border {
    float: right;
    width: 50%;
    height: 2px;
    background-color: black;
    margin-top: 1.4rem;
}



.title-container {
    display: inline-block;
    position: relative;
    margin-bottom: 2rem;
}

.title-container .title {
    display: inline;
    font-size: 35px;
}



.img-side .row .col {
    position: relative;
    /* Fontos a relatív pozíció a pszeudoelem elhelyezéséhez */
    width: 70%;
    margin: 0 auto;
}

.img-side .row .col img {
    display: block;
    height: auto;
    width: 100%;
    transition: filter 0.3s ease;
}

.img-side .row .col.zoom-img-container:hover img {
    filter: brightness(70%);
}

.img-side .row .col.zoom-img-container::after {
    content: '🔍';
    /* Használhatsz Unicode karaktert vagy CSS ikon fontot */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    /* Igazítsd a méretet az igényeidhez */
    color: white;
    opacity: 0;
    /* Kezdetben láthatatlan */
    transition: opacity 0.3s ease;
    pointer-events: none;
    /* Az ikon nem fogja megzavarni az egér eseményeket */
}

.img-side .row .col.zoom-img-container:hover::after {
    opacity: 1;
    /* Megjelenik, amikor az egér a képre kerül */
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    /* Black with opacity */
}

/* Close button styling */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Modal content styling */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.sultestalak-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.imgOnimg {
    margin-top: -3rem;
}

.logo-line {
    width: 70%;
}

@media (max-width: 768px) {
    .img-side-container {
        display: flex;
        flex-direction: column;
    }

    .img-side-container .col.d-flex {
        justify-content: center;
    }

    .menu-variation-container .row {
        margin-bottom: 2rem;
    }

    .menu-variation-container .row .right {
        display: flex;
        justify-content: end;
        align-items: center;
    }

    .title-container .title {
        font-size: 24px;
    }

    .d-off {
        display: none !important;
    }

    .logo-line {
        width: 70%;
        margin-top: -4rem;
    }

    .flex-elements {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flex-elements .items-c {
        margin-bottom: 5rem;
        width: 90%;
    }

    .flex-elements .items-c h1 {
        font-size: 22px;
    }

    .menu-variation-container .row .col {
        align-items: center;
    }

    .ejfelkor-talalt .items-c img {
        width: 65%;
    }

    .ejfelkor-talalt .items-c p {
        font-size: 18px;
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .imgOnimg {
        margin-bottom: 1.4rem;
    }
}



.ejfelkor-talalt img {
    width: 100%;
}


/* ajánlatkérés szekció */

.hetimenu-form-container2 {
    border: 1px solid black;
    padding: 3rem;
    font-family: "EB Garamond";
}



.input-cont {
    position: relative;
    /* A szülőelem pozícionálása */
    width: 60%;
    margin-bottom: 3rem;
}

.form-input {
    display: block;
    margin-top: 4px;
    border: 0;
    border-bottom: 1px solid black;
    width: 60%;
    padding: 7px 0;
    transition: border-color 0.4s ease;
    /* Border color transition */
}

.form-input:focus {
    outline: none;
    /* Remove default outline */
    border-color: transparent;
    /* Hide the default border color */
}

.form-input::placeholder {
    transition: opacity 0.4s ease;
    /* Placeholder transition */
}

.form-input:focus::placeholder {
    opacity: 0;
    /* Hide the placeholder */
}

.form-input~.focus-border {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #d4a84f;
    transition: width 0.4s ease;
}

.form-input:focus~.focus-border {
    width: 60%;
    animation: changeColor 0.4s ease forwards;
    /* Apply color change animation */
}

@keyframes changeColor {
    0% {
        background-color: #d4a84f;
    }

    100% {
        background-color: #d4a84f;
        /* Final color */
    }
}

.important {
    background-color: lightgray;
    padding: 0.4rem;
    width: 60%;
    margin-top: 1.7rem;
}

.important p {
    font-size: 14px;
    text-align: center;
}

.checkbox-container {
    display: flex;
    flex-direction: row;
}

.szallitasi {
    border-bottom: 1px solid black;
    border-top: 1px solid black;
    padding: 1.4rem;
    width: 50%;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.checkbox-frame {
    margin-right: 1rem;
}

.checkbox-frame *,
.checkbox-frame *::before,
.checkbox-frame *::after {
    box-sizing: border-box;
}

.checkbox-frame label {
    display: block;
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.checkbox-frame input {
    visibility: hidden;
    display: none;
}

.checkbox-frame input:checked~.checkbox {
    transform: rotate(45deg);
    width: 14px;
    margin-left: 12px;
    border-color: #24c78e;
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 0;
}

.checkbox-frame .checkbox {
    display: block;
    width: inherit;
    height: inherit;
    border: 3px solid #434343;
    transition: all 0.375s;
    margin-right: 3rem;
}

.hetimenu-form-container {
    overflow: hidden;
    transition: all 1s;
    overflow: hidden;
}

@media (max-width: 768px) {
    .order-container .row {
        display: block;
        flex-wrap: wrap;
    }

    .order-container .row .input-cont {
        flex: 1 1 auto;
        width: 100%;
    }

    .order-container .row .input-cont input {
        width: 90%;
    }

    .form-input:focus~.focus-border {
        width: 100%;
    }

    .szallitasi {
        width: 60%;
    }

    .szallitasi h1 {
        font-size: 20px;
    }
}


.egyeb-option {
    display: none;
}

.title.first {
    font-size: 40px;
}

.input-cont textarea {
    width: 100%;
    height: 100px;
}