﻿/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.navbar {
    padding: 10px 20px;
    background-color: #2c3639;
}

.logo img {
    width: 141px;
    height: 136px;
}

.navlinkler {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .navlinkler .menu {
        display: flex;
    }

    .navlinkler ul li {
        list-style: none;
    }

    .navlinkler a {
       color: rgb(236, 241, 237);
        text-decoration: none;
        padding: 14px 20px;
        font-size: 20px;
        font-weight: bold;
        margin: 3px;
    }

        .navlinkler a:hover {
            color: #a27b5c;
            transition: 0.2s;
        }

    .navlinkler .active {
        background-color: #a27b5c !important;
        transition: 0.2s !important;
    }

.hamburger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

#checkbox_toggle {
    display: none;
}

.quick:hover {
    color: #a27b5c;
}
#footer-wrapper ul li ul li a:hover {
    color: #a27b5c;
}
.copyright-container a:hover {
    color: #a27b5c;
}
/* Responsive */
@media (max-width: 768px) {
   
    .navlinkler .nav-links {
        position: relative;
    }

    .navlinkler .nav-link .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 1;
    }

    .nav-link .menu li {
        text-align: center;
        padding: 15px 0;
        width: 100%;
    }

    .navlinkler .nav-link .menu li a {
        font-size: 20px;
        padding: 15px;
        display: block;
    }

    #checkbox_toggle:checked ~ .menu {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 5rem; /* Ok boyutunu ayarlamak için genişlik */
    height: 5rem; /* Ok boyutunu ayarlamak için yükseklik */
    background-color: rgba(0, 0, 0, 0.5); /* Arka plan rengi ekleyebilirsin */
    border-radius: 50%; /* Yuvarlak görünüm için */
    padding: 2px;
    ;
}

/* Okların üzerindeki görünüm için */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.8); /* Hover rengi */
}
    
