﻿/* Custom CSS for Acadia theme */
/* Sol üstteki dil kurdelesi */


.position-relative {
    position: relative;
}

.language-badge {
    position: absolute;
    top: 15px;
    left: -45px;
    transform: rotate(-45deg);
    background-color: #e91e63; /* Pembe ton */
    color: white;
    padding: 5px 40px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
    /* Kurdelenin sol ucu için gölge */
    .language-badge:before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        border-style: solid;
        border-width: 0 5px 5px 0;
        border-color: transparent #d44146 transparent transparent;
    }

    /* Kurdelenin sağ ucu için gölge */
    .language-badge:after {
        content: '';
        position: absolute;
        top: 100%;
        right: 0;
        border-style: solid;
        border-width: 5px 5px 0 0;
        border-color: #d44146 transparent transparent transparent;
    }



/* Cookie Banner */

#cookieBanner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Transparent black */
    color: rgba(255, 255, 255, 0.8); /* Matching text color */
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

    #cookieBanner p {
        margin: 0;
        font-size: 14px;
        color: white;
    }

    #cookieBanner a {
        color: #F04D23; /* Orange-red color for links */
        text-decoration: none;
        margin-left: 5px;
    }

        #cookieBanner a:hover {
            text-decoration: underline;
        }

#acceptCookie {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    width: 21%;
}

    #acceptCookie:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }