@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #002147; /* Koyu lacivert */
    color: #fff; /* Beyaz font */
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 20px;
}

nav ul.tabs {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul.tabs li {
    margin: 0 15px;
    padding: 10px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

nav ul.tabs li.current {
    border-bottom: 2px solid #00aaff; /* Açık mavi */
}

nav ul.tabs li:hover {
    border-bottom: 2px solid #00aaff; /* Açık mavi hover rengi */
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.about-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.photo-section img {
    max-width: 40%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.description-section {
    max-width: 55%;
}

.description-section h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.description-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.tab-content {
    display: none;
}

.tab-content.current {
    display: block;
}

.logo {
    width: 100px; /* Genişlik 200 piksel */
    height: 50px; /* Yükseklik 100 piksel */
}

.social-media a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    color: #00aaff;
    font-weight: bold;
}

.social-media a:hover {
    color: #0056b3;
}

footer {
    text-align: center;
    padding: 10px;
    color: #333;
    background-color: transparent; /* Arka plan dolgusu olmadan */
}

/* Mobil cihazlar için (max-width: 600px) */
@media (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul.tabs {
        flex-direction: column;
        margin: 10px 0;
    }

    nav ul.tabs li {
        margin: 5px 0;
    }

    .container {
        width: 90%;
        margin: 10px auto;
        padding: 10px;
    }

    .about-section {
        flex-direction: column;
        align-items: center;
    }

    .description-section, .photo-section {
        max-width: 100%;
    }

    .photo-section img {
        max-width: 80%;
    }

    .description-section h1 {
        font-size: 1.5em;
    }

    .description-section p {
        font-size: 1em;
    }
}

/* Tabletler için (min-width: 601px ve max-width: 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
    header {
        flex-direction: row;
        flex-wrap: wrap;
    }

    nav ul.tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }

    nav ul.tabs li {
        margin: 10px 10px;
    }

    .container {
        width: 95%;
        margin: 15px auto;
        padding: 15px;
    }

    .about-section {
        flex-direction: column;
        align-items: center;
    }

    .description-section, .photo-section {
        max-width: 100%;
    }

    .photo-section img {
        max-width: 70%;
    }

    .description-section h1 {
        font-size: 1.7em;
    }

    .description-section p {
        font-size: 1.1em;
    }
}
