/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pridi', Arial, sans-serif;
}

body {
    background: linear-gradient(to bottom, #3a3535, #292323);
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px; /* Space between menu items */
}

.kurdele {
    position: absolute;
    left: 10px; /* Fixed to the left */
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #dcdcdc;
}

.kurdele img {
    width: 50px;
}

.logo img {
    width: 50px;
}

/* Centered Box */
.center-box {
    background-color: rgba(255, 255, 255, 0.9);
    color: #640000;
    padding: 20px;
    border-radius: 10px;
    width: 50%; /* Default width */
    max-width: 600px; /* Maximum width for larger screens */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Main Content Styling */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.flex-container {
    background-image: url("img/tasarım.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}

/* Center the box absolutely */
.center-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-height: 90%; /* Maksimum yüksekliği %90 olarak ayarladık */
    overflow-y: auto; /* Dikey kaydırma çubuğunu ekle */
    background-color: rgba(255, 255, 255, 0.9);
    color: #640000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}


.center-box p {
    margin-top: -23px;
    font-size: 19px;
    font-weight: bold;
    line-height: 1.5;
    white-space: pre-line;
}



.social-media {
    display: flex;                     /* Use Flexbox for social media icons */
}

.social-media a {
    margin-left: 10px;                /* Space between icons */
}

.social-media img {
    width: 24px;                      /* Adjust size as needed */
    height: 24px;
    vertical-align: middle;           /* Aligns icon with text */
}

#music-control {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px 15px; /* Default padding */
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em; /* Default font size */
    z-index: 9999;
    transition: background-color 0.3s, padding 0.3s, font-size 0.3s; /* Added transition for padding and font size */
}

#music-control:hover {
    background-color: #555;
}

/* Responsive Adjustments */

/* Tablet */
@media (max-width: 768px) {
    body {
        overflow-y: auto; /* Mobilde dikey kaydırmayı etkinleştirir */
    }

    nav ul li {
        padding: 0 10px;
    }

    .kurdele img {
        margin-left: -30px; /* Adjust as necessary */
    }

    .center-box {
        width: 80%; /* Wider on smaller screens */
        padding: 15px; /* Adjust padding for smaller screens */
    }

    #music-control {
        font-size: 0.85em; /* Slightly smaller font size */
        padding: 8px 12px; /* Adjust padding for the button */
    }

    footer {
        padding: 10px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    body {
        overflow-y: auto; /* Mobilde dikey kaydırmayı etkinleştirir */
    }

    nav ul {
        flex-direction: column; /* Stacks navigation items */
        align-items: center; /* Center items */
    }

    .kurdele img {
        margin-left: 0;
    }

    .center-box {
        width: 90%; /* Full width for smaller screens */
        padding: 10px; /* Further adjusted padding */
    }

    #music-control {
        font-size: 0.75em; /* Smaller font size */
        padding: 6px 10px; /* Adjusted padding */
        top: 15px; /* Adjust position */
        right: 15px; /* Adjust position */
    }

    footer {
        padding: 10px;
    }
}


/* Responsive Name Links */
#names {
    margin-top: 15px;
}

.name {
    color: #640000;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s;
}

.name:hover {
    color: #dcdcdc;
}

.separator {
    color: #640000;
    margin: 0 5px;
}

/* Footer Styling */
footer {
    background: linear-gradient(to bottom, rgba(13, 12, 12, 0.9), rgba(41, 35, 35, 0.9));
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Slight shadow for depth */
    transition: background-color 0.3s ease; /* Smooth transition */
    background-color:rgba(13, 12, 12, 0.874);    padding: 15px;
    position: relative; /* Fixed konumunu kaldırdık */

}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    color: #fff;
}

.footer-text {
    color: #fff;
    flex: 1;
    text-align: center;
}
a {
    color: white;
    text-decoration: none;
}

a:visited, a:active, a:hover {
    color: white;
    text-decoration: none;
}
.biz {
    margin-top: -25px;
    display: flex; /* İçindeki bağlantıları yan yana yerleştirir */
    gap: 15px; /* Bağlantılar arasında boşluk */
    margin-right: 200px;
}


.linkedin-link a{
color: #fff;

}
header {
    background-color: rgba(13, 12, 12, 0.874);
    background: linear-gradient(to bottom, rgba(13, 12, 12, 0.9), rgba(31, 27, 27, 0.9));
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Slight shadow for depth */
    transition: background-color 0.2s ease; /* Smooth transition */
    padding: 10px 0;
}
