/*--------------------------------------------------------------
# Content Nawbar
--------------------------------------------------------------*/
/* NAVBAR GENEL */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    background-color: #174582;
    color: white;
    padding: 0;
    position: relative;
}

/* SOL (LOGO TAM YAPIŞIK) */
.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

/* ORTA (TAM ORTALAMA) */
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: bold;
    color:#fbbf25;
}

/* SAĞ */
.nav-right {
    margin-right: 20px;
    color:#fbbf25;
    vertical-align: middle;
}

/* DROPDOWN */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

/* DROPDOWN CONTENT */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 150px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* HOVER İLE AÇILMA */
.dropdown:hover .dropdown-content {
    display: block;
}

