html {
    font-size: 14px;
}

/*:root {
    --primary-color: #f9c5d1;
    --background-color: #fff0f6;
    --text-color: #6e2142;
    --accent-color: #f686bd;
    --menu-border-color: #e09cb4;
}*/

/*:root {
    --primary-color: #3D5439;
    --background-color: #5A7553;
    --text-color: #ffffff;
    --accent-color: #EADCA6;
    --menu-border-color: #DADAD5;
}*/

/*:root {
    --primary-color: #F4A261;
    --background-color: #FFF8F0;
    --text-color: #2A2A2A;
    --accent-color: #E76F51;
    --menu-border-color: #e09cb4;
}*/

:root {
    --font-family-primary: 'DM Sans', sans-serif;
    --font-family-secondary: 'Quicksand', sans-serif;
}


@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Regular.ttf') format('opentype');
}

@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Regular.ttf') format('opentype');
}

.back-to-top {
    bottom: 1.25rem;
    position: fixed;
    right: 1.25rem;
    z-index: 1032;
    border-radius: 10px;
    background-color: var(--primary-color); !important;
    border-color: black !important;
}

    .back-to-top:focus {
        box-shadow: none;
    }


#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.8);
}

.loader {
    width: 40px; /* İkonun boyutunu ayarlayın */
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border: 4px solid #26388A;
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(100deg);
        transform: rotate(100deg);
        border: 4px solid #26388A;
        border-left-color: transparent;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border: 4px solid #26388A;
        border-left-color: transparent;
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        border: 4px solid #26388A;
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(180deg);
        border: 4px solid #26388A;
        border-left-color: transparent;
    }

    100% {
        -webkit-transform: rotate(360deg);
        border: 4px solid #26388A;
        border-left-color: transparent;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

.home-body {
    margin-bottom: 60px;
    background-color: var(--background-color);
}

.admin-body {
    margin-bottom: 60px;
    background-color: whitesmoke !important;
}

.container {
    width: 100%;
    padding: 0;
}


.menuBase {
    background-color: var(--background-color);
}

.menuContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 3%;
}

.card {
    position: relative;
    width: 45%;
    background-color: black;
    border-radius: 10px;
    overflow: hidden;
    border: 0px;
    margin: 10px 5px;
}

    .card img {
        width: 100%;
        height: 30vw;
        object-fit: cover;
        opacity: 0.8;
    }

    .card h2 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        margin: 0;
        color: white; /* Yaz? rengini beyaz olarak ayarlayabilirsiniz */
        text-shadow: 1px 2px 2px #000;
        font-weight: 900;
        font-family: var(--font-family-primary);
        text-transform: lowercase;
        font-size: 1.2rem !important;
    }


/*ÜRÜN*/

#product-container {
    padding: 5%;
}


.product-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}

.product-card-horizontal {
    display: flex;
    height: auto;
    min-height: 160px;
    border-radius: 12px;
    overflow: hidden;
    background-color: transparent;
    padding: 12px 0px;
}

.product-img-horizontal {
    width: 35%;
    height: auto;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
}

.product-info-horizontal {
    display: flex;
    flex-direction: column;
    padding-left: 16px;
    flex-grow: 1;
}

    .product-info-horizontal h3 {
        margin: 0 0 6px;
        font-size: 1.2rem;
        color: var(--text-color);
        font-weight: 600;
        font-family: var(--font-family-primary);
    }

.product-desc {
    margin: 0 0 6px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.portion-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.portion-item {
    background-color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-color);
}

.main-price {
    font-family: var(--font-family-secondary);
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: bold;
}



/*ÜRÜN TOP*/

.sidepage-hero {
    padding: 5% 5% 0 5%;
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-family-primary);
    color: var(--text-color);
}


.dmu_dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.sidepage-hero__link {
    margin-bottom: 20px;
    font-family: var(--font-family-primary);
    color: black;
    text-decoration: none;
}

.sidepage-hero__logo--s {
    max-width: 100%;
    height: auto;
    max-height: 100px; /* Adjust the maximum height as needed */
    border-radius: 10px;
}

.sidepage-text {
    line-height: 0.5;
}

    .sidepage-text h1 {
        font-size: calc(1rem + 0.5vw);
        font-weight: bold;
        text-transform: uppercase;
    }

    .sidepage-text p {
        float: left;
    }


.sidepage-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2% 5%;
}

.sidepage-hero__btn {
    font-size: 14px; /* Düğme metni boyutu */
    padding: 5px 12px; /* Düğme iç boşluk ayarı */
    display: inline-block;
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--primary-color);
    border-radius: 5px;
    transition: background-color 0.3s;
    font-family: var(--font-family-primary);
}

.sidepage-card {
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 2%;
    display: flex;
    text-align: center;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
}

    .sidepage-card i {
        font-size: 1.3rem;
    }

.sidepage-icon {
    width: 100%;
    background-color: var(--primary-color);;
    border-radius: 10px;
    text-align: center;
}

    .sidepage-icon i {
        font-size: 1.6rem;
        color: var(--text-color);
    }

.sidepage-forback {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidepage-icon__btn {
    /* Düğme için stiller */
    padding: 5px 12px; /* Düğme iç boşluk ayarı */
    display: inline-block;
    color: #212529;
    background-color: var(--primary-color);
    border-radius: 5px;
    font-family: var(--font-family-primary);
    border: 1px solid transparent;
}

.btn-language,
.btn-search {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #3498db;
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}


.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
    /*mask-image: linear-gradient(to bottom, transparent 10%, white 90%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 10%, white 90%);*/
}


.sidepage-hero__link {
    top: 30px /* Yükseklik ayarı */
    /* left: 20px;*/ /* Sol kenar ayarı */
}


.sidepage-hero__title {
    /* Başlık için stiller */
    color: black;
    border-bottom: 1px solid black;
    font-size: 25px;
    text-transform: uppercase;
    font-family: var(--font-family-primary);
    margin-bottom: 4vw;
}

.social-logo {
    max-width: 10vw;
}

.sosyal-medya-logolar {
    width: 100%;
    text-align: center;
    padding: 0% 5% 5% 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-card {
    background-color: var(--primary-color);
    width: 100%;
    padding: 2%;
    border-radius: 10px;
    display: flex;
    text-align: center;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

    .social-card i {
        font-size: 1.3rem;
        color: var(--text-color);
    }

    .social-card p {
        margin-bottom: 0;
        padding: 5px 12px;
        font-family: var(--font-family-primary);
        color: var(--text-color);
    }

.sosyal-medya-logolar2 {
    width: 100%;
    text-align: center;
    padding: 0 5% 0 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-card2 {
    width: 100%;
    padding: 0 25% 0 25%;
    border-radius: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

    .social-card2 p {
        margin-bottom: 0;
        padding: 8px 16px;
        font-weight: bold;
        font-family: var(--font-family-primary);
    }

/* Çizgi Stili */
.ust-cizgi {
    border-top: 1px solid #ccc;
    margin-top: 20px;
}

.halledio-logo {
    max-width: 15%;
    height: auto;
}

.alt-div {
    text-align: center;
    background-color: var(--primary-color);
    margin-top: 20px;
}

@media (max-width: 768px) {
    .sidepage-hero {
    }

    .sidepage-hero__logo--s {
        max-height: 100px;
    }
}


/* Menü Giriş*/

.base-page {
    margin: 5%;
    border: 1px solid #212529;
    border-radius: 50px;
    box-shadow: 1px 1px 15px black;
}

.base-menu-title {
    text-align: center;
    color: var(--text-color);
    font-family: var(--font-family-primary);
    margin-top: 1vw;
    font-size: 1.4rem;
    border-top: 0;
    border-bottom: 1px solid;
}

.base-menu-desc {
    text-align: center;
    color: var(--text-color);
    font-family: var(--font-family-primary);
    margin-top: 5vw;
    font-size: 0.9rem;
}

.base-menu-desc2 {
    text-align: center;
    color: var(--text-color);
    font-family: var(--font-family-primary);
    margin-top: 5vw;
    font-size: 0.7rem;
}

#menu-container {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
    flex-wrap: wrap;
    margin-top: 0vw;
    border-radius: 1% 1% 60% 60%;
    padding: 0vw 5vw 12vw 5vw;
    border-bottom: 1px solid #212529;
    gap: 0.5rem;
}

.menu-item {
    width: 31vw;
    height: 31vw;
    border-radius: 50%;
    background-color: var(--text-color);
    margin: 4vw;
    text-align: center;
    box-shadow: 0 0 10px rgb(33 33 33 / 97%);
    border: 3px solid #212529;
    font-size: 1.2rem;
}

    .menu-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .menu-item p {
        margin: 2vw 0;
        color: #212529;
        text-decoration: none;
        font-family: 'Revitalis', sans-serif;
    }

    .menu-item a {
        color: #e9ecef;
        text-decoration: none;
    }


.menu-home-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5% 5% 2% 5%;
    border-radius: 20% 20% 20% 20%;
}

    .menu-home-logo img {
        max-width: 50%;
        height: auto;
    }



.menu-item-wrapper {
    text-align: center;
}

.menu-item-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

    .menu-item-circle img {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #fff;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    }


@keyframes pulse-once {
    0% {
        box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(204, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(204, 0, 0, 0);
    }
}

.menu-item-circle.pulse-hint {
    animation: pulse-once 1.5s ease-out 1;
    border-radius: 100%;
}

.menu-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: var(--font-family-primary);
}


.menu-item-circle.no-image {
    border: 2px dashed #ccc;
    background: #f8f9fa;
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}


.menu-noimage {
    background-color: #f5f5f5;
    border: 2px dashed #ccc;
    color: #aaa;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .menu-noimage i {
        font-size: 1.5rem;
    }

.product-title-line {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 4px;
    margin-bottom: 0.3rem;
}

.product-price-inline {
    font-weight: 600;
    font-size: 1.1rem;
    margin-left: auto;
    color: var(--main-color);
}


.product-card-horizontal.no-image {
    min-height: 20px !important;
}


/* Yavaşça dönen daire */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@keyframes pulse-border {
    0% {
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 16px rgba(255, 215, 0, 0.8);
    }

    100% {
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    }
}



/*DİL SEÇENEĞİ DİL SEÇENEĞİ DİL SEÇENEĞİ DİL SEÇENEĞİ DİL SEÇENEĞİ DİL SEÇENEĞİ*/



.language-selector {
    text-align: center;
    margin-top: 5%;
}

    .language-selector select {
        appearance: none;
        background-color: var(--primary-color);
        border: 0px solid #ccc;
        border-radius: 20px;
        color: #212529 !important;
        padding: 5px 20px;
        font-size: 14px;
        font-family: var(--font-family-primary);
        cursor: pointer;
        background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="none" stroke="black" stroke-width=".5" d="M2 0L0 2h4z"/></svg>');
        background-repeat: no-repeat;
        background-position: right 10px top 50%;
        background-size: 10px 5px;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.8);
}

.loader {
    width: 40px; /* İkonun boyutunu ayarlayın */
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border: 4px solid #26388A;
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(100deg);
        transform: rotate(100deg);
        border: 4px solid #26388A;
        border-left-color: transparent;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border: 4px solid #26388A;
        border-left-color: transparent;
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        border: 4px solid #26388A;
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(180deg);
        border: 4px solid #26388A;
        border-left-color: transparent;
    }

    100% {
        -webkit-transform: rotate(360deg);
        border: 4px solid #26388A;
        border-left-color: transparent;
    }
}


.language-flags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 16px;
}

    .language-flags img {
        width: 16px;
        border-radius: 3px;
    }

.footer {
    position: relative !important;
}



.social-icon-link {
    font-size: 1rem;
    color: var(--text-color);
    text-decoration: none !important;
}

    .social-icon-link i {
        font-size: 1.5rem;
    }

    .social-icon-link:hover {
        color: var(--text-color);
    }