/* Header Styling */
header {
    background-color: #fff; /* White background */
    color: #333;
    padding: 11px 0; /* Only top and bottom padding */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed; /* Change from sticky to fixed */
    top: 0; /* Stick to the top of the viewport */
    left: 0; /* Align to the left */
    right: 0; /* Align to the right to cover full width */
    z-index: 1000; /* Ensure the header is above other content */
    margin-bottom: 2rem; /* Margin at the bottom */
}

body {
    padding-top: 120px; /* Add top padding to body to prevent content from hiding behind the header */
}

.header-inner {
    width: 90%; /* Content width */
    max-width: 800px; /* Maximum content width */
    margin: 0 auto; /* Center the content horizontally */
    display: flex;
    justify-content: space-between; /* Distribute space between items */
    align-items: center; /* Vertically center items */
}

@media (max-width: 768px) {
    .header-inner {
        width: 90%; /* Content width */
        max-width: 800px; /* Maximum content width */
        margin: 0 auto; /* Center the content horizontally */
        display: contents;
        justify-content: space-between; /* Distribute space between items */
        align-items: center; /* Vertically center items */
    }
}

@media (max-width: 480px) {
    .header-inner {
        width: 90%; /* Content width */
        max-width: 800px; /* Maximum content width */
        margin: 0 auto; /* Center the content horizontally */
        display: contents;
        justify-content: space-between; /* Distribute space between items */
        align-items: center; /* Vertically center items */
    }
}

nav {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    nav {
        display: flex;
        margin-top: 5px;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    nav {
        display: flex;
        margin-top: 5px;
        align-items: center;
        justify-content: center;
    }
}

.navigation-a {
    margin-left: 6rem;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 650;
    font-variant-caps: all-petite-caps;
}

.logo {
    width: 20%;
    height: auto;
}


@media (max-width: 768px) {
    .logo {
        width: 13%;
        height: auto;
    }

@media (max-width: 480px) {
    .logo {
        width: 13%;
        height: auto;
    }
}

.header-logo {
    text-decoration: none; /* Link altı çizgisini kaldır */
    color: inherit; /* Üst elementlerden renk miras al */
    cursor: pointer; /* Fare imlecini işaretçi olarak ayarla */
}

.header-logo:hover {
    text-decoration: none; /* Hover durumunda da çizgi ekleme */
}


@media (max-width: 768px) {
    .navigation-a {
        font-size: 20px;
        margin: 19px; /* Adjust spacing for smaller screens */
    }
}

@media (max-width: 480px) {
    .navigation-a {
        font-size: 20px;
        margin: 19px; /* Adjust spacing for mobile screens */
    }
}

.navigation-a:hover {
    color: #fd284c; /* Hover effect for navigation links */
}

header h1 {
    font-size: 3rem;
    color: #fd284c; /* Pink color for the heading */
    margin: 0;
    font-variant-caps: all-petite-caps;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.9rem; /* Adjust font size for tablet */
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.9rem; /* Adjust font size for mobile */
    }
}

.header-logo {
    color: inherit; /* Inherits color from parent */
    text-decoration: none; /* No underline */
}
