/*    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }*/
.header {
    font-family: 'Roboto', sans-serif; /* Yeni font */
    width: 100%;
    height: 70px;
    padding: 10px 20px;
    background-color: rgba(7, 15, 25, 1) !important;
    display: flex;
    align-items: center;
    justify-content: space-between;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);

}

.header img {
    height: 60px;
    object-fit: contain;
    margin-right: auto; /* Logoyu sola yaslamak için */
}

.header .buttons {
    display: flex;
    align-items: center;
    justify-content: space-around; /* Butonları daha yakın yerleştir */
    width: 35%; /* Buton grubunun genişliğini daralttık */
    margin-right: 60px
}

.header .buttons a {
    color: white;
    text-decoration: none;
    padding: 8px 12px; /* Padding'i biraz daralttık */
    border-radius: 5px;
    font-weight: 500; /* Orta kalınlıkta */
    transition: background-color 0.3s;
    text-align: center;
    font-size: 1rem; /* Yazı boyutunu ayarladık */
    flex: 1; /* Tüm butonları eşit genişlikte yapar */
}

/* Buton Renkleri */
#wht {
    color: #0fff0e;
    font-weight: 600;

}

#hrt {
    color: #5299ff;
    font-weight: 600;
    margin-left: 10px;
}

#ara {
    color: orangered;
    font-weight: 600;
    margin-left: 10px;
}

#grs {
    color: #0fff0e;
    font-weight: 600;
    margin-left: 10px;
}

#wht:hover {
    background-color: #0fff0e;
    color: #000000;
}

#hrt:hover {
    background-color: #5299ff;
    color: #000000;
}

#ara:hover {
    background-color: orangered;
    color: #000000;
}

#grs:hover {
    background-color: #0fff0e;
    color: #000000;
}

/* Mobil için sağda sabit ikon çubuğu */
.mobile-contact {
    display: none; /* Varsayılan olarak gizli */
}

.logo-link {
    text-decoration: none !important; /* Alt çizgi tamamen kaldırılır */
    background: none !important; /* Arka plan rengi etkisiz hale getirilir */
    border: none !important; /* Çerçeve varsa kaldırılır */
    display: inline-block !important; /* Blok içi düzen sağlar */
}

.logo-link:hover, .logo-link:focus {
    background: none !important; /* Hover veya focus sırasında arka plan değişmez */
    border: none !important; /* Çerçeve eklenmez */
    outline: none !important; /* Focus olduğunda çerçeve kaldırılır */
}

.logo {
    height: 40px !important; /* Logonun boyutunu sabit tutar */
    object-fit: contain !important; /* Logonun netliğini korur */
    display: block !important; /* Blok düzen sağlar */
    margin: auto;
}

.hamburger-menu, .side-menu {
    display: none;
}

.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-container input {
    width: 100%;
    padding-right: 40px; /* Buton için yer bırak */
}

.password-container .toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 20px;
    margin-top: -25px;
}

.password-container .toggle-password:hover {
    color: #000;
}
.logopanel {
    width: 150px !important; /* Logonun boyutunu sabit tutar */
    object-fit: contain !important; /* Logonun netliğini korur */
    display: block !important; /* Blok düzen sağlar */
    margin: auto;
    margin-bottom: 60px;!important;
}
#error-message {
    display: none; /* Başlangıçta gizli */
    color: white;
    background-color: red;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

@media (max-width: 900px) {
    #error-message {
        display: none; /* Başlangıçta gizli */
        color: white;
        background-color: red;
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 5px;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
    }

    .header {
        height: 70px;

    }

    /* Masaüstünde butonları gizle */
    .buttons {
        display: none !important;
    }

    /* Logoyu mobilde küçült */
    .header img {
        height: 40px; /* Logonun yüksekliğini yarıya düşürdük */
        margin: auto;
    }

    /* Mobilde ikon çubuğunu göster */
    .mobile-contact {
        position: fixed;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 20px;
        z-index: 200;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 20px;
        padding: 1px;
        width: 50px;

        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    .mobile-contact a {
        /*      margin-top: 20px;
              margin-bottom: 20px;*/
        color: #fff;
        padding: 10px;
        border-radius: 5px;
        text-align: center;
        font-size: 30px;
        transition: background-color 0.3s ease;
    }

    /* Mobil İkon Hover Efektleri */
    .mobile-contact a:hover i {
        color: #fff;
    }

    .mobile-contact a[href*="wa.me"]:hover {
        background-color: #25D366;
    }

    .mobile-contact a[href*="tel:"]:hover {
        background-color: #0A74DA;
    }

    .mobile-contact a[href*="maps"]:hover {
        background-color: #D9534F;
    }


    /*hamburger menu css kodları*/
    .hamburger-menu {
        display: block;
        position: fixed;

        top: 10px;
        right: 20px;
        z-index: 1000;
        font-size:30px;
        color: #0598cb;
        /*            background-color: rgba(0, 0, 0, 0.8);*/
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
    }

    /* Kayan Menü */
    .side-menu {
        position: fixed;
        top: 0;
        left: -120%; /* Başlangıçta gizli */
        width: 100%;
        height: 100%;
        background-color: #000e1d;
        color: #fff;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
        transition: left 0.3s ease;
        z-index: 999;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* Menü Başlık */
    .menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 20px;
        font-weight: bold;
        /* border-bottom: 1px solid #444;*/
        padding-bottom: 10px;
    }

    .menu-header .close-menu {
        font-size: 25px;
        cursor: pointer;
        color: #ff4444;
        display: block; /* Varsayılan olarak görünür */
        margin-left: auto;
        padding: 5px 10px;
        border-radius: 5px;
        background-color: rgba(255, 68, 68, 0.1);
        transition: background-color 0.3s;
    }

    .menu-header .close-menu:hover {
        background-color: rgba(255, 68, 68, 0.3);
    }

    /* Giriş Formu */
    .login-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width:90%;
        margin: auto;
    }

    .login-form input {
        height: 50px;
        padding: 20px;
        border: none;
        border-radius: 5px;
        font-size:22px;
        background: #f2f2f2;
        margin-bottom: 30px;
    }

    .login-form input:focus {
        outline: 2px solid #0bbeff;
    }

    .login-form .forgot-password {
        color: #0bbeff;
        text-decoration: none;
        /*           font-size: 20px;*/
        margin-top: 5px;
        text-align: right;
    }

    .login-form .forgot-password:hover {
        text-decoration: underline;
    }

    /* Bilgi Bloğu */
    .info-block {
        margin-top: 20px;
        font-size: 18px;
        line-height: 1.5;
        color: #ccc;
    }

    .info-block p {
        margin: 0;
    }

    /* Kayan Menü Aktif Olduğunda */
    .side-menu.active {
        left: 0; /* Menü görünür */
    }

    #login-button {
        height: 50px;
        padding: 10px;
        font-size: 20px;
        background-color: #0bbeff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        margin-top: 10px;
        width: 100%;
    }

    #login-button:hover {
        background-color: #004165;
    }

    .forgot-password {
        display: inline-block;
        margin-top: 10px;
        color: #0bbeff;
        text-decoration: none;
        font-size: 14px;
    }

    .forgot-password:hover {
        text-decoration: underline;
    }
}