* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

body {
    background-color: #ffffff;
    color: #ffffff;
    line-height: 1.6;
}

.top-menu {
    position: sticky;
    top: 0;
    background-color: #000000;
    z-index: 999;
    border-bottom: 2px solid #ffffff;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8em;
}

.logo-first-line {
    font-size: 1.5em;
    font-family: "Bruno Ace", sans-serif;
    line-height: 1;
    text-decoration: none;
    color: #ffffff;
}

.logo-second-line {
    font-size: 1.2em;
    font-family: "Bruno Ace", sans-serif;
    line-height: 1;
    text-decoration: none;
    color: #ffffff;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.logo {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.logo-img {
    position: fixed;
    max-height: 4em;
    margin-bottom: 0.3em;
}

.mini-space {
    width: 3.7em;
}

.nav-links {
    display: flex;
    gap: 1.2em;

}

.nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    padding: 0.7em 0.5em;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
}

.nav-links a:hover {
    color: rgb(255, 0, 0);
}

.seçili {
    color: rgb(255, 0, 0) !important;
}

.blog {
    border: none !important;
}

.insta {
    padding: 0 !important;
    padding-top: 0.83em !important;
    align-items: center;
    color: white;
}

.mail {
    color: white;
    padding: 0 !important;
    padding-top: 0.7em !important;
    align-items: center;
}

.dropdown {
    position: relative;
    display: flex;
    justify-content: center;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    background-color: #000000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    min-width: 180px;
    border-radius: 4px;
    z-index: 10;
    flex-direction: column;
    text-align: center;
}

.dropdown-content a {
    border-top: 1px solid #ffffff;
    padding: 0.7em 1em;
    text-decoration: none;
    color: #ffffff;
    font-weight: 300;
}

.dropdown.hover-open .dropdown-content,
.dropdown.open .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown.open .dropdown-content {
    display: flex;
}




.top-icons {
    display: flex;
    gap: 1.2em;
    align-items: center;
    padding-bottom: 0.9em;
}


.search-box-telefon {
    display: none;
}

.highlight {
    background-color: yellow;
    color: inherit !important;
}



.search-box {
    display: flex;
    box-sizing: border-box;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 15px;
    align-items: center;
}

.search {
    box-sizing: border-box;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 3px 7px;
    color: #ffffff;
}

.search:focus {
    outline: none;
    background: none;
    padding: 3px 7px;
}

.search-icon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 2px solid rgb(255, 255, 255);
    padding-left: 6px;
    padding-right: 4px;
    padding-bottom: 4px;
    padding-top: 4px;
    cursor: pointer;
}


.main-content {
    display: flex;
    max-width: 1220px;
    margin: 2em auto;
    gap: 2em;
    padding: 0 1em;
}


.blog-area {
    flex: 3;
}

.blog-container {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.blog-post {
    background-color: #ffffff;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.blog-post img {
    width: 100%;
    border-radius: 6px;
}

.post-category {
    font-weight: bold;
    color: darkred;
    margin: 0.5em 0;
    font-style: italic;
    font-weight: 100;
}

.post-title {
    font-size: 1.5em;
    margin-bottom: 0.3em;
    color: #000000;
    font-family: "Tenor Sans", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.post-date {
    font-size: 0.9em;
    color: #707070;
    margin-bottom: 0.5em;
}

.post-text {
    margin-bottom: 1em;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #000000;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 0.5em 1em;
    border-radius: 4px;
    cursor: pointer;
}

.read-more-btn:hover {
    background-color: #5c5c5c;
}

.share-btn {
    display: flex;
    background-color: #1748f7;
    color: #ffffff;
    border: none;
    padding: 0.5em 1em;
    border-radius: 4px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}

.share-btn:hover {
    background-color: #4a7dff;
}


.sidebar {
    flex: 0 0 20em;
    display: flex;
    flex-direction: column;
    gap: 2em;
    padding: 0.5em;
}

.sidebar-widget {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 1em;
    border-radius: 8px;
    box-shadow: 2px #000000;
    height: fit-content;
}

.sidebar-widget h3 {
    margin-bottom: 0.8em;
    color: #000000;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    margin-bottom: 0.5em;
}

.sidebar-widget ul li a {
    text-decoration: none;
    color: #000000;
}

.sidebar-widget ul li a:hover {
    color: #ff0000;
}

.profile-card-telefon {
    display: none;
    width: 250px;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    padding: 1em;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    align-items: center;
    gap: 0.8em;
    height: fit-content;
    max-width: 224px;
}


.profile-card-bilgisayar {
    width: 250px;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    padding: 1em;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8em;
    height: fit-content;
}

.profile-img {
    width: 12em;
    height: 12em;
    border-radius: 12px;
    object-fit: cover;
}

.profile-name {
    font-size: 1.3em;
    font-weight: bold;
}


.profile-title {
    font-size: 1em;
    color: darkred;
    font-style: italic;
}

.profile-description {
    font-size: 0.9em;
    color: #555;
}



.footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 2em 1em;
    margin-top: 3em;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 0.5em;
}

.footer a:hover {
    color: #ff0000;
}


.post-img {
    max-height: 50vh;
    max-width: 100vh;
    width: auto;
    object-fit: cover;
}

@media (min-width:530px) and (max-width: 950px) {
    .blog-post {
        width: 500px;
    }

    .post-content {
        justify-content: space-between;
    }

    .blog-container {
        flex-wrap: wrap;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width:950px) and (max-width: 1100px) {
    .blog-post {
        flex-direction: row;
    }
}

@media (min-width: 900px) and (max-width: 1200px) {
    .search-box {
        display: none;
    }


    .search-box-telefon {
        display: flex !important;
        box-sizing: border-box;
        border: 2px solid rgb(0, 0, 0);
        border-radius: 15px;
        align-items: center;
        margin: 0.5em;
    }

    .icon-telefon {
        height: 20px !important;
        width: 20px !important;
    }

    .search-box {
        display: none !important;
    }

    .search {
        color: #000000 !important;
        width: 93%;
    }



    .search-icon-btn {
        color: #000000 !important;
        border-right: 2px solid rgb(0, 0, 0) !important;

    }
}

@media (max-width: 1100px) {
    .main-content {
        flex-direction: column;
    }

    .sidebar {
        flex-direction: row;
        overflow-y: scroll;
        gap: 1em;

    }

    .sidebar-widget {
        min-height: 22.5em;
        font-size: 0.85em;
    }

    .profile-card-bilgisayar {
        display: none;
    }

    .profile-card-telefon {
        display: flex;
    }
}

@media (max-width: 950px) {
    .blog-post {
        padding: 0.8em;
    }

    .menu-container {
        align-items: center;
        gap: 10px;
        justify-content: center;
        flex-direction: column !important;
    }

    .nav-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 0;
    }

    .nav-links a,
    .nav-links .dropdown {
        width: 30%;
    }

    .logo a {
        font-size: 1.2em !important;
    }

    .logo-img {
        position: fixed;
        max-height: 3.2em !important;
        margin-bottom: 0.3em;
    }

    .mini-space {
        width: 3em;
    }

    .dropdown-content a {
        border-top: 1px solid white !important;
    }

    .search-box-telefon {
        display: flex !important;
        box-sizing: border-box;
        border: 2px solid rgb(0, 0, 0);
        border-radius: 15px;
        align-items: center;
        margin: 0.5em;
    }

    .icon-telefon {
        height: 20px !important;
        width: 20px !important;
    }

    .search-box {
        display: none !important;
    }

    .search {
        color: #000000 !important;
        width: 93%;
    }


    .search-icon-btn {
        color: #000000 !important;
        border-right: 2px solid rgb(0, 0, 0) !important;
    }

    .top-icons {
        display: flex !important;
        width: 30%;
        justify-content: center;
        gap: 0.5em;
    }

    .menu-container {
        flex-direction: row;
        gap: 0.5em;
        justify-content: space-between;
    }

    .blog {
        border: none !important;
    }

    .dropdown {
        display: flex;
        position: relative;
        align-items: center;
    }

    .dropdown a {
        width: 100%;
    }
}
/* Eski CSS yapısının birebir aktarımı ve düzeltmeler */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial', sans-serif; transition: all 0.3s ease; }
body { background-color: #ffffff; color: #ffffff; line-height: 1.6; }

/* Navbar Düzeltmeleri */
.top-menu { position: sticky; top: 0; background-color: #000000; z-index: 999; border-bottom: 2px solid #ffffff; }
.menu-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0.8em; }

.logo-first-line { font-size: 1.5em; font-family: "Bruno Ace", sans-serif; line-height: 1; text-decoration: none; color: #ffffff; }
.logo-second-line { font-size: 1.2em; font-family: "Bruno Ace", sans-serif; line-height: 1; text-decoration: none; color: #ffffff; }
.logo-container { display: flex; align-items: center; gap: 0.5em; }
.logo { display: flex; align-items: center; flex-direction: column; }
.logo-img { position: fixed; max-height: 4em; margin-bottom: 0.3em; }
.mini-space { width: 3.7em; }

/* Menü hizalama ve taşmayı önleme */
.nav-links { display: flex; gap: 1em; align-items: center; }
.nav-links a { display: flex; align-items: center; justify-content: center; text-decoration: none; color: #ffffff; font-weight: 300; padding: 0.7em 0.5em; font-family: "Oswald", sans-serif; white-space: nowrap; font-size: 1em; }
.nav-links a:hover, .seçili { color: rgb(255, 0, 0) !important; }

/* Dropdown */
.dropdown { position: relative; display: flex; justify-content: center; }
.dropdown-content { position: absolute; top: 100%; opacity: 0; visibility: hidden; transition: 0.3s ease; background-color: #000000; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); min-width: 180px; border-radius: 4px; z-index: 10; flex-direction: column; text-align: center; }
.dropdown-content a { border-top: 1px solid #ffffff; padding: 0.7em 1em; text-decoration: none; color: #ffffff; font-weight: 300; }
.dropdown:hover .dropdown-content { opacity: 1; visibility: visible; display: flex; }

/* Icons */
.top-icons { display: flex; gap: 1em; align-items: center; }
.mail, .insta { color: white; display: flex; align-items: center; }

/* Search Box */
.search-box { display: flex; box-sizing: border-box; border: 2px solid rgb(255, 255, 255); border-radius: 15px; align-items: center; }
.search { box-sizing: border-box; background-color: transparent; border: none; outline: none; padding: 3px 7px; color: #ffffff; }
.search:focus { outline: none; background: none; }
.search-icon-btn { display: flex; justify-content: center; align-items: center; border-right: 2px solid rgb(255, 255, 255); padding: 4px 6px; cursor: pointer; }

/* Main Content & Blog */
.main-content { display: flex; max-width: 1220px; margin: 2em auto; gap: 2em; padding: 0 1em; }
.blog-container { display: flex; flex-direction: column; gap: 2em; flex: 3; }
.blog-post { background-color: #ffffff; padding: 1em; border-radius: 8px; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); display: flex; flex-direction: column; gap: 1em; }
.blog-post img.post-img { width: 100%; border-radius: 6px; max-height: 50vh; object-fit: cover; }
.post-category { font-weight: 100; color: darkred; margin: 0.5em 0; font-style: italic; }
.post-title { font-size: 1.5em; margin-bottom: 0.3em; color: #000000; font-family: "Tenor Sans", sans-serif; font-weight: 500; }
.post-title a { text-decoration: none; color: #000000; }
.post-date { font-size: 0.9em; color: #707070; margin-bottom: 0.5em; }
.post-text { margin-bottom: 1em; font-family: Georgia, 'Times New Roman', Times, serif; color: #000000; }
.post-footer { display: flex; justify-content: space-between; align-items: center; }
.read-more-btn { background-color: #000000; color: #ffffff; border: none; padding: 0.5em 1em; border-radius: 4px; cursor: pointer; }
.share-btn { display: flex; background-color: #1748f7; color: #ffffff; border: none; padding: 0.5em 1em; border-radius: 4px; cursor: pointer; align-items: center; gap: 0.5em; }

/* Sidebar & Widgets */
.sidebar { flex: 0 0 20em; display: flex; flex-direction: column; gap: 2em; padding: 0.5em; }
.sidebar-widget { display: flex; flex-direction: column; background-color: #ffffff; padding: 1em; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); height: fit-content; }
.sidebar-widget h3 { margin-bottom: 0.8em; color: #000000; }
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li { margin-bottom: 0.5em; }
.sidebar-widget ul li a { text-decoration: none; color: #000000; }
.sidebar-widget ul li a:hover { color: #ff0000; }

/* Profile Card */
.profile-card-bilgisayar { width: 250px; background-color: #ffffff; color: #000000; text-align: center; padding: 1em; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); display: flex; flex-direction: column; align-items: center; gap: 0.8em; height: fit-content; }
.profile-card-telefon { display: none; width: 100%; background-color: #ffffff; color: #000000; text-align: center; padding: 1em; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); flex-direction: column; align-items: center; gap: 0.8em; }
.profile-img { width: 12em; height: 12em; border-radius: 12px; object-fit: cover; }
.profile-name { font-size: 1.3em; font-weight: bold; }
.profile-title { font-size: 1em; color: darkred; font-style: italic; }
.profile-description { font-size: 0.9em; color: #555; }

/* Galeri Grid */
.foto-box { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1em; margin-bottom: 3em; }
.foto { border: 2px solid #000000; width: 100%; height: auto; border-radius: 8px; object-fit: cover; cursor: pointer; aspect-ratio: 1/1; }

/* Arşiv Listesi */
.pdf-box { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pdf-container { text-align: center; padding: 10px; border-radius: 8px; }
.pdf-frame { width: 100%; height: 150px; border: 2px solid #000000; border-radius: 8px; margin-bottom: 1em; }
.pdf-buttons { display: flex; width: 100%; justify-content: center; }
.btn { padding: 5px 10px; color: white; text-decoration: none; width: 50%; text-align: center; font-family: 'Times New Roman', serif; font-size: 1em; }
.download-btn { background-color: #4CAF50; border-radius: 6px 0 0 6px; border: 1px solid #000; }
.open-btn { background-color: #2196F3; border-radius: 0 6px 6px 0; border: 1px solid #000; }

/* Footer */
.footer { background-color: #000000; color: #ffffff; text-align: center; padding: 2em 1em; margin-top: 3em; }
.footer a { color: #ffffff; text-decoration: none; margin: 0 0.5em; }
.footer a:hover { color: #ff0000; }

/* Responsive */
@media (max-width: 1100px) {
    .main-content { flex-direction: column; }
    .sidebar { flex-direction: row; overflow-x: auto; gap: 1em; }
    .profile-card-bilgisayar { display: none; }
    .profile-card-telefon { display: flex; max-width: 300px; margin: 0 auto; }
}
@media (max-width: 950px) {
    .menu-container { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px; }
    .nav-links { flex-wrap: wrap; justify-content: center; }
    .search-box { display: none; }
    .foto-box, .pdf-box { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .foto-box, .pdf-box { grid-template-columns: 1fr; }
}

/* ... Önceki kodlar ... */

/* Kayıt Ol butonu için özel stil */
.nav-register-btn {
    border: 1px solid #ffffff;
    border-radius: 4px;
    padding: 0.3em 0.8em !important; /* Yastık (padding) ayarı */
    transition: all 0.3s ease;
}

.nav-register-btn:hover {
    background-color: #ffffff;
    color: #000000 !important; /* Hover olunca yazı siyah olsun */
}

/* ... Sonraki kodlar ... */