html {
    font-size: 14px;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../fonts/CenturyGothic.ttf') format('opentype');
}

@font-face {
    font-family: 'Heavitas';
    src: url('../fonts/Heavitas.ttf') format('opentype');
}

@font-face {
    font-family: 'Righteous';
    src: url('../fonts/Righteous.ttf') format('opentype');
}

@font-face {
    font-family: 'Pacifico';
    src: url('../fonts/Pacifico.ttf') format('opentype');
}

@font-face {
    font-family: 'Revitalis';
    src: url('../fonts/Revitalis.ttf') format('opentype');
}

.back-to-top {
    bottom: 1.25rem;
    position: fixed;
    right: 1.25rem;
    z-index: 1032;
    border-radius: 10px;
    background-color: #ffc107 !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: white;
}

.admin-body {
    margin-bottom: 60px;
    background-color: whitesmoke !important;
}

.container {
    width: 100%;
    padding: 0;
}


.menuBase {
    background-color: white;
}

.menuContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.card {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    background-color: black;
    border-radius: 10px;
    overflow: hidden;
    border: 0px;
}

    .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: #fff; /* Yazı rengini beyaz olarak ayarlayabilirsiniz */
        text-shadow: 1px 1px 7px #000;
        font-weight: bold;
        font-family: 'Century Gothic', sans-serif;
        text-transform: uppercase;
    }


/*ÜRÜN*/

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    background-color: #fff;
}

.product-card {
    width: 45%;
    margin-bottom: 20px;
    background-color: #ffc107;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .product-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

.product-info {
    padding: 3% 5% 0 5%;
    font-family: 'Century Gothic', sans-serif;
}

    .product-info h3 {
        margin-top: 0;
        font-size: calc(1rem + .6vw);
    }

.price {
    color: #243b40; /* Veya uygun bir renk seçimi yapabilirsiniz */
    font-size: 1.1rem;
    font-family: 'Righteous', sans-serif;
}




/*Ü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-evenly;
    font-family: 'Century Gothic', sans-serif;
    color: black;
}


.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: 'Century Gothic', sans-serif;
    color: black;
    text-decoration: none;
}

.sidepage-hero__logo--s {
    max-width: 100%;
    height: auto;
    max-height: 100px; /* Adjust the maximum height as needed */
}

.sidepage-text {
    margin-left: 5%;
    line-height: 0.5;
}

    .sidepage-text h1 {
        font-size: calc(1rem + 0.5vw);
        font-weight: bold;
    }

    .sidepage-text p {
        float: left;
    }


.sidepage-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
}

.sidepage-hero__btn {
    /* Düğme için stiller */
    font-weight: bold;
    font-size: 14px; /* Düğme metni boyutu */
    padding: 5px 12px; /* Düğme iç boşluk ayarı */
    display: inline-block;
    text-decoration: none;
    color: black;
    background-color: #ffc107;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-family: 'Century Gothic', sans-serif;
}

.sidepage-card {
    width: 100%;
    background-color: #ffc107;
    border-radius: 10px;
    padding: 2%;
    display: flex;
    text-align: center;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

    .sidepage-card i {
        font-size: 1.3rem;
    }

.sidepage-icon {
    width: 100%;
    background-color: #ffc107;
    border-radius: 10px;
    text-align: center;
}

    .sidepage-icon i {
        font-size: 1.6rem;
        color: #212529;
    }

.sidepage-forback {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
}

.sidepage-icon__btn {
    /* Düğme için stiller */
    padding: 5px 12px; /* Düğme iç boşluk ayarı */
    display: inline-block;
    color: #212529;
    background-color: #ffc107;
    border-radius: 5px;
    font-family: 'Century Gothic', sans-serif;
}

.btn-language,
.btn-search {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #3498db;
    color: #fff;
    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: 'Century Gothic', sans-serif;
    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: #ffc107;
    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;
}

    .social-card p {
        margin-bottom: 0;
        padding: 8px 16px;
        font-weight: bold;
        font-family: 'Century Gothic', sans-serif;
    }

.sosyal-medya-logolar2 {
    width: 100%;
    text-align: center;
    padding: 0 5% 0 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-card2 {
    background-color: #fff;
    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: 'Century Gothic', sans-serif;
    }

/* Çizgi Stili */
.ust-cizgi {
    border-top: 1px solid #ccc;
    margin-top: 20px;
}

.halledio-logo {
    max-width: 30%;
    height: auto;
}

.alt-div {
    text-align: center;
    background-color: #fff;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
    margin-top: 20px;
    border-top: 2px solid #ffc107;
    border-left: 1px solid #ffc107;
    border-right: 1px solid #ffc107;
}

@media (max-width: 768px) {
    .sidepage-hero {
    }

    .sidepage-hero__logo--s {
        max-height: 80px;
    }
}


/* 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: #212529;
    font-family: 'Pacifico', sans-serif;
    margin-top: 1vw;
    font-size: 2.4rem;
    border-top: 0;
    border-bottom: 1px solid;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}

.base-menu-desc {
    text-align: center;
    color: #212529;
    font-family: 'Century Gothic', sans-serif;
    margin-top: 5vw;
    font-size: 0.9rem;
}

.base-menu-desc2 {
    text-align: center;
    color: #212529;
    font-family: 'Century Gothic', sans-serif;
    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;
}

.menu-item {
    width: 31vw;
    height: 31vw;
    border-radius: 50%;
    background-color: white;
    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;
    }



/*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: #ffc107;
        border: 0px solid #ccc;
        border-radius: 20px;
        padding: 5px 20px;
        font-size: 14px;
        font-family: 'Century Gothic', sans-serif;
        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;
    }
}
