/* Sisteme dışarıdan font dosyasını yüklüyoruz */
@font-face {
    font-family: 'Gill Sans Display';
    src: url('fonts/gill-sans-display.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Yüklediğimiz fontu tüm siteye zorunlu kılıyoruz */
body, h1, h2, h3, p, a, li, button, span {
    font-family: 'Gill Sans Display', 'Gill Sans', sans-serif !important;
}

body {
    background-color: #0a0a0a;
    color: #f4f4f4;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Nav */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(10, 10, 10, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.4s ease;
}

header:hover {
    background-color: rgba(10, 10, 10, 0.7);
}

.logo img {
    height: 40px;
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background: linear-gradient(to right, #FDB913, #006A44, #C1272D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
    cursor: default;
}

.hero-content h1 span {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    transition: all 0.4s ease;
}

.hero-content h1:hover .omer {
    background: linear-gradient(to right, #FDB913, #006A44, #C1272D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h1:hover .oskay {
    background: linear-gradient(to right, #E30A17, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-socials {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.hero-socials a {
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    transition: transform 0.3s ease; 
    display: inline-block;
}

.hero-socials a i {
    transition: color 0.3s ease; 
}

.hero-socials a:hover {
    transform: translateY(-5px);
}

.hero-socials a:hover .fa-instagram { color: #E1306C; }
.hero-socials a:hover .fa-spotify { color: #1DB954; }
.hero-socials a:hover .fa-youtube { color: #FF0000; }
.hero-socials a:hover .fa-apple { color: #FA243C; }


/* =========================================
   MUSIC PLAYER SECTION
   ========================================= */
.music-section {
    padding: 100px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0a0a0a; /* Yumuşak geçiş için arka plan */
}

.player-container {
    background-color: #151515;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    width: 100%;
    max-width: 450px;
    text-align: center;
    border: 1px solid #222;
}

.player-container h2 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
}

.track-info {
    margin-bottom: 25px;
}

.track-info h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.track-info p {
    color: #888;
    font-size: 0.9rem;
}

/* İlerleme Çubuğu (Progress Bar) */
.progress-container {
    background: #333;
    border-radius: 5px;
    cursor: pointer;
    margin: 30px 0;
    height: 5px;
    width: 100%;
}

.progress {
    background: linear-gradient(to right, #FDB913, #006A44);
    border-radius: 5px;
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
}

/* Kontrol Butonları */
.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.control-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.control-btn:hover {
    color: #fff;
}

.play-btn {
    background: #fff;
    color: #000;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: transform 0.2s, background 0.3s;
}

.play-btn:hover {
    transform: scale(1.05);
    background: #006A44;
    color: #fff;
}


/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    display: flex;
    padding: 100px 50px;
    gap: 50px;
    align-items: center;
    background-color: #111;
}

.about-img {
    width: 40%;
    border-radius: 5px;
}

.about-text h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}


/* Footer */
footer {
    padding: 50px;
    text-align: center;
    background-color: #000;
}

footer h2 {
    margin-bottom: 15px;
}

footer p {
    margin-bottom: 20px;
}

.copyright {
    font-size: 12px;
    color: #666;
    margin-top: 30px;
}

/* =========================================
   MOBİL VE TABLET UYUMU (RESPONSIVE)
   ========================================= */
@media screen and (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.95);
        transition: left 0.3s ease;
        padding-bottom: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-top: 20px;
    }

    nav ul li a {
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .about-section {
        flex-direction: column;
        padding: 60px 20px;
        text-align: center;
        gap: 30px;
    }

    .about-img {
        width: 90%;
    }

    .music-section {
        padding: 60px 20px;
    }

    .player-container {
        padding: 30px 20px;
    }

    footer {
        padding: 40px 20px;
    }
}
