/* Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #7f8c8d;

    padding-top: 80px; 
}

/******************************************NAVBAR START****************************************/ 
.navbar {
    width: 100%;
    height: 80px;
    background-color: #7f8c8d;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 1000; 
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

/* Logo */
.logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Menü Linkleri */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 15px;
    transition: 0.3s;
    display: block;
}

.nav-links a:hover {
    color: #2C3E50;
}

/* Dropdown (Alt Menü) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    top: 100%;
    left: 0;
    border-top: 3px solid #2C3E50;
}

.dropdown-content li a {
    padding: 12px 16px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.dropdown:hover .dropdown-content {
    display: block;
}


.lang-dropdown .dropbtn i {
    margin-right: 5px;
}


#nav-check {
    display: none;
}

.nav-btn {
    display: none;
}

@media (max-width: 1024px) {
    .nav-btn {
        display: inline-block;
    }
    
    .nav-btn label {
        display: inline-block;
        width: 30px;
        height: 30px;
        padding: 5px;
        cursor: pointer;
    }

    .nav-btn label span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #333;
        margin-bottom: 5px;
    }

    .nav-links {
        position: absolute;
        display: block;
        width: 100%;
        background-color: #fff;
        height: 0;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 80px;
        left: 0;
        z-index: 999;
    }

    .nav-links li {
        width: 100%;
        border-top: 1px solid #eee;
    }

    #nav-check:checked ~ .nav-links {
        height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: #f9f9f9;
        padding-left: 20px;
    }
}

/******************************************NAVBAR END****************************************/ 


/******************************************NEWS START****************************************/ 
.news-ticker-container {
    width: 100%;
    height: 45px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: fixed;
    top: 80px; /* Navbar yüksekliği kadar (80px) aşağı indirildi */
    z-index: 999; /* Navbar'ın (1000) bir tık altında olması daha iyidir */
}

.ticker-title {
    background: #2C3E50;
    color: white;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 5;
    white-space: nowrap;
    position: relative;
}

.ticker-title::after {
    content: "";
    position: absolute;
    right: -15px;
    border-left: 15px solid #2C3E50;
    border-top: 22.5px solid transparent;
    border-bottom: 22.5px solid transparent;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-move {
    display: flex;
    white-space: nowrap;
    animation: ticker-animation 30s linear infinite;
}

.ticker-item {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-right: 50px;
    transition: color 0.3s;
}

.ticker-item:hover {
    color: #2C3E50;
    text-decoration: underline;
}

@keyframes ticker-animation {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.ticker-move:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    body { padding-top: 80px; } 
    .ticker-title {
        font-size: 12px;
        padding: 0 10px;
    }
    .ticker-item {
        font-size: 12px;
    }
}
/******************************************NEWS END****************************************/

/* Logo Metni Modern Tasarım */
.logo-text {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.logo-text:hover {
    opacity: 0.8;
}

.logo-text .name {
    color: #2c3e50; /* Daha ağır ve profesyonel bir lacivert-gri */
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px; /* Modern bir dokunuş için harfleri hafif yakınlaştırdık */
    line-height: 1;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif; /* Eğer sistemde varsa daha modern durur */
}

.logo-text .subtext {
    color: #2C3E50; /* Alt birim kısmını kurumsal kırmızıyla vurguladık */
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase; /* Daha otoriter bir görünüm */
    letter-spacing: 1.2px; /* Alt metinde geniş harf aralığı şıklığı artırır */
    display: block;
}

/* Mobil Cihazlar İçin Optimizasyon */
@media (max-width: 1024px) {
    .logo-text .name {
        font-size: 17px;
    }
    .logo-text .subtext {
        font-size: 9px;
        letter-spacing: 0.8px;
    }
}