/* Custom nav bar - Spotify SOLDA, butonlar ORTADA */

.custom-nav-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin: 1.2rem 0;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    min-height: 200px;
}

.custom-nav-bar .nav-spotify {
    position: absolute;
    left: -140px; /* Daha fazla sola */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 400px;
    z-index: 2;
}

.custom-nav-bar .nav-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    left: 0;
    right: 0;
    z-index: 1;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .custom-nav-bar {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        min-height: unset;
    }
    .custom-nav-bar .nav-spotify {
        position: static;
        transform: none;
        justify-content: center;
        width: 100%;
        max-width: 500px;
        min-width: unset;
    }
    .custom-nav-bar .nav-buttons {
        position: static;
        margin: 0 auto;
        justify-content: center;
    }
}
/* Röportaj Soru-Cevap Stilleri */
.interview {
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
    padding: 1.1rem 1.2rem 1.2rem 1.2rem;
    background: #2d1a1e;
    border-radius: 12px;
    box-shadow: 0 2px 12px #0005;
}
.qa {
    margin-bottom: 1.3rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid #44222a33;
}
.qa:last-child {
    border-bottom: none;
}
.question {
    display: block;
    color: #ffb347;
    font-weight: bold;
    font-size: 1.08rem;
    margin-bottom: 0.35rem;
    letter-spacing: 0.2px;
}
.answer {
    display: block;
    color: #fffbe6;
    font-size: 1.04rem;
    margin-top: 0.18rem;
    margin-left: 0.5rem;
    line-height: 1.7;
}
.thanks {
    margin-top: 1.2rem;
    color: #ffb347;
    font-style: italic;
    text-align: right;
}
.intro {
    margin-bottom: 1.1rem;
    color: #fff;
    font-size: 1.07rem;
    line-height: 1.6;
}
.bio-content p {
    margin-bottom: 1.1rem;
    line-height: 1.7;
    color: #fffbe6;
    font-size: 1.06rem;
}
/* Modern Çerez Bildirimi Barı */
#cookie-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100vw;
    background: #330d13f2;
    color: #ffb347;
    padding: 1.1rem 2vw 1.1rem 2vw;
    font-size: 1.08rem;
    box-shadow: 0 -4px 24px #000b;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    flex-wrap: wrap;
    overflow-x: auto;
    padding-right: 12px;
    min-height: 56px;
    z-index: 99999;
    border-radius: 0;
    animation: cookiebar-in 0.7s cubic-bezier(.4,2,.6,1) 1;
    margin: 0;
}

#cookie-bar .cookie-buttons {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
}

#cookie-bar .cookie-buttons button {
    padding: 4px 10px;
    font-size: 0.97rem;
    margin-right: 0;
    box-sizing: border-box;
    white-space: nowrap;
    flex-shrink: 0;
    overflow: visible;
    max-width: 120px;
}

@media (max-width: 600px) {
    #cookie-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
        padding-right: 0;
    }
    #cookie-bar .cookie-buttons {
        justify-content: flex-start;
        gap: 0.5rem;
        margin-top: 8px;
        flex-wrap: wrap;
    }
    #cookie-bar .cookie-buttons button {
        width: 100%;
        padding: 6px 0;
        font-size: 1rem;
        white-space: nowrap;
        box-sizing: border-box;
        flex-shrink: 1;
        max-width: 100%;
    }
}
@keyframes cookiebar-in {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
#cookie-bar span {
    flex: 1 1 220px;
    line-height: 1.5;
    min-width: 180px;
}
#cookie-bar a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}
#cookie-bar a:hover {
    color: #ffb347;
}
#cookie-bar button {
    margin: 0 0.2rem 0 0;
    min-width: 90px;
    max-width: 140px;
    white-space: nowrap;
    padding: 0.5rem 1.1rem;
    font-size: 0.98rem;
    background: #ffb347;
    color: #330d13;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px #0002;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
#cookie-bar button:hover {
    background: #fffbe6;
    color: #330d13;
    box-shadow: 0 4px 16px #ffb34755;
}
@media (max-width: 600px) {
    #cookie-bar {
        padding: 0.7rem 0.5rem;
        font-size: 0.98rem;
        max-width: 100vw;
        border-radius: 0;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    #cookie-bar button {
        padding: 0.4rem 1rem;
        font-size: 0.95rem;
        min-width: 90px;
        max-width: 120px;
        margin-bottom: 0.3rem;
    }
}
/* Çerez Bildirimi Çubuğu */
#cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #330d13;
    color: #fff;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    box-shadow: 0 -2px 16px #000a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    z-index: 10000;
}
#cookie-bar button {
    background: #ffb347;
    color: #330d13;
    border: none;
    border-radius: 8px;
    padding: 0.4rem 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
#cookie-bar button:hover {
    background: #fff;
    color: #330d13;
}
/* İletişim Formu Düzenlemeleri */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.7rem;
    background: #330d13;
    border-radius: 14px;
    padding: 1.2rem 1rem;
    box-shadow: 0 2px 16px #000a;
}
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    border: none;
    background: #2d1a1e;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0;
    box-sizing: border-box;
    outline: none;
    transition: box-shadow 0.2s, border 0.2s;
}
#contact-form input[type="email"]:focus,
#contact-form textarea:focus {
    box-shadow: 0 0 0 2px #ffb34799;
    border: 1.5px solid #ffb347;
}
#contact-form button[type="submit"] {
    background: #ffb347;
    color: #330d13;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 0;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-top: 0.2rem;
}
#contact-form button[type="submit"]:hover {
    background: #fff;
    color: #330d13;
}
#mail-success {
    color: #ffb347;
    margin-top: 0.5rem;
    font-size: 1rem;
    text-align: left;
}
/* İletişim Modal Popup Düzeltmesi */
#about-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; right: 0; top: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(51,13,19,0.85);
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0;
}
#about-modal[style*="display: flex"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}
#about-content {
    background: #330d13;
    border-radius: 18px;
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    max-width: 420px;
    width: 95vw;
    margin: 0 auto;
    box-shadow: 0 8px 32px #000a;
    border-bottom: 2.5px solid #ffb347;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-media-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}
.social-media-logos a img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: transparent;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: none;
}
.social-media-logos a img:hover {
    box-shadow: 0 2px 16px #ffb347cc;
    transform: scale(1.14);
}
/* RedSpecter - Temel Stil Dosyası */

body {
    background-color: #330d13;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: rgba(0,0,0,0.7);
    padding: 2rem 0 1rem 0;
    text-align: center;
}

.social-top {
    position: absolute;
    top: 18px;
    right: 24px;
    z-index: 200;
    display: flex;
    gap: 8px;
}
.social-top img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: none;
    background: transparent;
}
.social-top img:hover {
    box-shadow: 0 2px 16px #ffb347cc;
    transform: scale(1.14);
}
@media (max-width: 600px) {
    .social-top {
        top: 8px;
        right: 8px;
    }
    .social-top img {
        width: 34px;
        height: 34px;
    }
}
.logo-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.logo-header img {
    width: 90px;
    height: 90px;
    margin-bottom: -0.5rem;
    image-rendering: crisp-edges;
    border-radius: 0;
    box-shadow: 0 2px 12px #0007;
    object-fit: cover;
    background: #000;
    border: 3px solid #000;
    box-sizing: border-box;
}
@media (max-width: 600px) {
    .logo-header img {
        width: 60px;
        height: 60px;
    }
}
nav {
    margin: 1rem 0;
    text-align: center;
}
nav .nav-btn {
    background: #ffb347;
    color: #330d13;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    margin: 0 1rem;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}
nav .nav-btn:hover {
    background: #fff;
    color: #330d13;
}
.container {
    max-width: 800px;
    margin: 2rem auto;
    background: rgba(0,0,0,0.5);
    border-radius: 12px;
    box-shadow: 0 0 16px #0008;
    padding: 2rem;
}
.post {
    margin-bottom: 2.5rem;
}
.post h2 {
    color: #ffb347;
    margin-bottom: 0.5rem;
}
.post .date {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 1rem;
}
.post-image {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0.7rem auto 1.2rem auto;
    border-radius: 10px;
    box-shadow: 0 2px 12px #0007;
}
.footer {
    text-align: center;
    color: #bbb;
    font-size: 0.95rem;
    margin: 3rem 0 1rem 0;
}
.subscribe {
    text-align: center;
    margin: 2rem 0;
}
.subscribe input[type=email] {
    padding: 0.5rem;
    border-radius: 6px;
    border: none;
    margin-right: 0.5rem;
}
.subscribe button {
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    border: none;
    background: #ffb347;
    color: #330d13;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.subscribe button:hover {
    background: #fff;
}
@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }
    header h1 {
        font-size: 2rem;
    }

    nav .nav-btn {
        margin: 0 0.5rem;
        padding: 0.4rem 1rem;
        font-size: 1rem;
    }
    .post h2 {
        font-size: 1.5rem;
    }
    .post-image {
        max-width: 100%;
    }
    .subscribe input[type=email] {
        width: 100%;
        margin: 0 0 0.5rem 0;
    }
    .subscribe button {
        width: 100%;
        padding: 0.5rem;
    }
}