﻿:root {
    --primary-color: #22252a;
    --secondary-color: #2e3238;
    --light-color: #fff;
    --dark-color: #333;
    --font-color: #000;
    --logo-turuncu: #f48420;
    --logo-siyah: #090808;
    --logo-beyaz: #d9d9d9;
}

/* Genel Ayarlar */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--primary-color) !important;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.harita iframe{
    border-radius: 0% !important;
}
.card,
.card-body {
    background-color: #2e3238;
    border: none !important;
    border-radius: 0%;
}

    .card-body{
        height: 100%;
    }


main {
    background-color: #2e3238;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    max-height: 900px;
}

footer {
    flex-shrink: 0;
    color: white;
}

.container {
    max-width: 75%;
}

main h2{
    color: #fff;
    text-align: center;
}

.aydinlatma-link {
    font-weight: bold;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
}

    .aydinlatma-link:hover {
        opacity: 80%;
        color: #fff;
    }

/* BUTONLAR */
.btn-light {
    border: none;
}

    .btn-light:hover {
        color: var(--light-color);
        background-color: var(--primary-color);
        border: none;
    }

/* LOGO FADE */
#logo-fade {
    background-color: #393E46;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

 #logo-fade.visible {
        opacity: 1 !important;
        pointer-events: all;
        background-color: #393E46 !important;
        transition: opacity 0.6s ease;
  }

.nav-link:focus {
    outline: none;
}




/* RESPONSIVE */
@media (min-width: 1400px) {
}

@media (min-width: 991.98px) and (max-width: 1400px) {
}

@media (min-width: 768px) and (max-width: 991.98px) {
    
}

@media (max-width: 767.98px) {

    .harita {
        width: 100%;
    }
        .harita iframe {
            width: 100%;
            height: 250px;
        }

    .navbar-brand img {
        height: 75px;
        width: auto;
    }
}

.thumbnail-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
}
