/* CSS CUSTOM PROPERTIES (Variables) */
:root {
    --bk-emphasis-color: #fff;  /* White emphasis - matches inline style on "(Mix, Mastering...)" */
}

/* TEMEL STİLLER - COMMON STYLES */
html {
    overflow-y: scroll;
    /* Sayfalar arası geçişte kaymayı önlemek için scrollbar'ı sabitler */
    overflow-x: hidden;
    background-color: #0d0d0d;
    overscroll-behavior-x: none;
    width: 100%;
    max-width: 100%;
}

body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    overscroll-behavior-x: none;
}

/* NAVBAR */
.navbar {
    background-color: #000;
    border-bottom: 1px solid #222;
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 5000;
}

/* Scroll offset for anchor links */
html {
    scroll-padding-top: var(--header-offset, 70px);
}

/* Prevent content from being hidden under fixed header */
body {
    padding-top: var(--header-offset, 70px);
    overflow-x: hidden;
}

@media (max-width: 1199.98px) {
    .navbar {
        z-index: 6000;
    }
}

.brand-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.brand-link:hover {
    color: #f44336;
}

.navbar-brand-fixed {
    font-size: 1.6rem;
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.separator-glow {
    color: #f44336;
    text-shadow: 0 0 8px rgba(244, 67, 54, 0.9), 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 900;
    font-size: 1.4rem;
    margin: 0 12px;
}

.menu-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Navbar menu container - desktop: no wrap, mobile: wrap */
.navbar-collapse .ms-auto {
    flex-wrap: nowrap !important;
    white-space: nowrap;
}

/* Mobile menu: allow wrapping and center alignment */
@media (max-width: 1199.98px) {
    .navbar-collapse .ms-auto {
        flex-wrap: wrap !important;
        justify-content: center;
        gap: 0.5rem;
        white-space: normal;
    }
    
    .menu-link {
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    .menu-separator {
        margin: 0 8px;
    }
}

.menu-link:hover,
.menu-link.active {
    color: #f44336;
}

.menu-separator {
    color: #f44336;
    text-shadow: 0 0 5px rgba(244, 67, 54, 0.8);
    font-weight: 900;
    font-size: 1.1rem;
    margin: 0 16px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.btn-lang {
    color: white;
    border: 1px solid #333;
    background: #111;
    font-size: 0.9rem;
    padding: 5px 10px;
    min-width: 110px;
    text-align: center;
    display: inline-block;
}

/* Mobile Language Button Specifics */
.d-xl-none .btn-lang {
    font-size: 0.75rem;
    /* Increased by ~10% from previous 0.65rem */
    padding: 3px 8px;
    min-width: auto;
    /* Remove min-width constraint */
}

.btn-lang.dropdown-toggle::after {
    margin-left: 0.3em;
    vertical-align: middle;
}

.dropdown-menu-dark {
    background-color: #000;
    border: 1px solid #333;
}

.dropdown-item:hover {
    background-color: #f44336;
    color: white;
}

/* TYPOGRAPHY & COMMON ELEMENTS */
.title-text-sharp {
    color: #f44336;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: -10px;
}

.hero-name {
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

footer {
    border-top: 1px solid #222;
    background: #000;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    /* Slightly wider to fit larger text */
    max-width: 450px;
    /* Reduced max-width (-10%) */
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 12px 15px;
    /* Reduced padding to keep box small */
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    /* Increased font size (+20%) */
    font-weight: 400;
    text-align: center;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    /* Compact gap */
}

.cookie-text {
    line-height: 1.4;
}

.what-is-this-wrapper {
    display: inline-block;
    margin-left: 5px;
    position: relative;
}

.what-is-this-trigger {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 0.85rem;
    /* Increased trigger text */
    text-decoration: underline;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
    /* Ensure z-index works */
    z-index: 10;
}

.what-is-this-trigger:hover {
    color: #fff;
}

.what-is-this-tooltip {
    visibility: hidden;
    width: 240px;
    background-color: #222;
    color: #eee;
    text-align: center;
    border-radius: 6px;
    padding: 12px;
    position: absolute;
    z-index: 20;
    /* Higher z-index */
    bottom: 150%;
    /* Higher up */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    font-size: 0.8rem;
    /* Increased tooltip text */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.what-is-this-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #222 transparent transparent transparent;
}

/* Force Hover Logic for Desktop - Simplified and Robust */
@media (min-width: 769px) {
    .what-is-this-wrapper:hover .what-is-this-tooltip {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateX(-50%) translateY(-5px) !important;
        display: block !important;
        pointer-events: auto !important;
        /* Ensure it can receive events if needed */
    }

    /* Ensure the trigger area is large enough */
    .what-is-this-wrapper {
        padding: 5px 0;
        /* Add vertical padding to bridge gap */
    }
}

/* Mobile/Active Logic (handled by JS class) */
.what-is-this-tooltip.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.cookie-buttons .btn {
    border-radius: 50px;
    padding: 6px 18px;
    /* Adjusted padding */
    font-size: 0.75rem;
    /* Slightly larger button text */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 90px;
}

.cookie-buttons .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
}

.cookie-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

.cookie-buttons .btn-light {
    background-color: #fff;
    color: #000;
    border: none;
}

.cookie-buttons .btn-light:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.accent-mark {
    color: #f44336;
    font-weight: 700;
    margin: 0 3px;
    font-size: 1.1em;
    /* Slightly larger for emphasis */
    vertical-align: middle;
}

@media (max-width: 768px) {
    .cookie-banner {
        width: 95%;
        bottom: 15px;
        padding: 22px 10px;
        /* Reduced vertical padding by ~10% (25px -> 22px) */
        max-width: 90%;
    }

    .cookie-text {
        font-size: 0.8rem;
        /* Increased by ~5% (0.75rem -> 0.8rem) */
        line-height: 1.4;
    }

    .what-is-this-trigger {
        font-size: 0.8rem;
        /* Increased trigger text */
    }

    .cookie-buttons .btn {
        padding: 5px 14px;
        /* Slightly smaller buttons */
        font-size: 0.75rem;
        /* Increased button text (0.7rem -> 0.75rem) */
        min-width: 75px;
    }

    .what-is-this-tooltip {
        width: 215px;
        /* Wider tooltip */
        font-size: 0.75rem;
        /* Larger tooltip text */
        padding: 10px;
    }
}

/* HOME PAGE (INDEX.HTML) */
.muso-stats-section {
    margin-top: 10px;
    margin-bottom: 30px;
}

.hero-section {
    padding-top: 20px;
    padding-bottom: 5px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    text-align: center;
}

.profile-img-container {
    margin-top: 15px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-img {
    max-width: 260px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.8));
}

.short-bio-text {
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #ccc;
    font-weight: 400;
    text-wrap: balance;
    text-align: center;
    margin-bottom: 30px;
}

.stat-card {
    background: #151515;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #f44336;
}

.stat-img {
    max-width: 80%;
    width: auto;
    height: auto;
    border-radius: 8px;
    border: 1px solid #222;
    display: block;
}

iframe {
    border-radius: 12px;
    width: 100%;
}

/* BIO PAGE (BIO.HTML) */
.bio-container {
    padding: 80px 0;
}

.bio-sub-header {
    color: #f44336;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bio-text-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 400;
    text-align: justify;
    padding: 0 20px;
}

.bio-text-content p {
    margin-bottom: 15px;
}

.bio-text-content strong {
    color: #f44336;
    font-weight: 700;
}

.bio-text-content .white-value {
    color: #ffffff;
    font-weight: 700;
}

.bio-text-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 5px;
}

.bio-text-content ul li::before {
    content: "•";
    color: #f44336;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* EQUIPMENT PAGE (EKIPMAN.HTML) */
.equipment-container {
    padding: 80px 0;
    max-width: 1100px;
    margin: 0 auto;
}

.equipment-header {
    color: #f44336;
    font-size: 2.0rem;
    font-weight: 900;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.gear-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 10px;
}

.gear-item {
    flex-basis: calc(25% - 20px);
    max-width: calc(25% - 20px);
    margin: 10px;
    cursor: pointer;
    box-sizing: border-box;
    display: block;
}

.gear-cover-container {
    width: 100%;
    padding-bottom: 100%;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.gear-image {
    position: absolute;
    object-position: center center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    width: 95%;
    height: 95%;
    object-fit: cover;
}

/* Specific gear adjustments for better fit */
.gear-item:nth-child(1) .gear-image,
.gear-item:nth-child(3) .gear-image,
.gear-item:nth-child(4) .gear-image,
.gear-item:nth-child(5) .gear-image,
.gear-item:nth-child(6) .gear-image,
.gear-item:nth-child(7) .gear-image,
.gear-item:nth-child(9) .gear-image,
.gear-item:nth-child(10) .gear-image,
.gear-item:nth-child(12) .gear-image,
.gear-item:nth-child(13) .gear-image,
.gear-item:nth-child(17) .gear-image {
    width: 96%;
    height: 96%;
    transform: translate(-50%, -50%) scale(1.30);
    object-fit: contain;
}

.gear-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 5px;
    transform: translateY(110%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
}

.gear-item:hover .gear-cover-container {
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.5);
    transform: translateY(-8px);
}

.gear-item:hover .gear-cover-container .gear-image {
    transform: translate(-50%, -50%) translateY(-5%);
}

.gear-item:hover .gear-info {
    transform: translateY(0);
}

.gear-info .name {
    font-size: 1rem;
    font-weight: 700;
    color: #f44336;
    margin: 0;
    line-height: 1.2;
}

.gear-info .model {
    font-size: 0.75rem;
    color: #ddd;
    margin: 0;
}

/* RESPONSIVE */
/* RESPONSIVE */




/* DISCOGRAPHY PAGE (DISCOGRAPHY.HTML) */
.album-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 10px;
}

.album-item {
    flex-basis: calc(25% - 20px);
    max-width: calc(25% - 20px);
    margin: 10px;
    cursor: pointer;
    box-sizing: border-box;
    display: block;
}

.album-cover-container {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.album-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.album-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 5px;
    transform: translateY(110%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    z-index: 5;
}

.album-item:hover .album-cover-container {
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.5);
    transform: translateY(-8px);
}

.album-item:hover .album-cover-container .album-cover {
    transform: translate(-50%, -50%) translateY(-5%);
}

.album-item:hover .album-info {
    transform: translateY(0);
}

.album-info .artist {
    font-size: 1rem;
    font-weight: 700;
    color: #f44336;
    margin: 0;
    line-height: 1.2;
}

.album-info .song {
    font-size: 0.75rem;
    color: #ddd;
    margin: 0;
}





/* PLAYLIST PAGE (PLAYLIST.HTML) */
.playlist-section {
    padding: 80px 0;
    background-color: #0d0d0d;
}

.playlist-header {
    color: #f44336;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.playlist-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #222;
    padding-bottom: 10px;
}

.widget-description {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 300;
}

.widget-footnote {
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 15px;
    font-style: italic;
}

.clickable-warning {
    display: block;
    text-decoration: none;
    color: #f44336;
    font-weight: 700;
    font-style: italic;
    padding: 10px 0;
    transition: color 0.3s;
}

.clickable-warning:hover {
    color: #fff;
}

/* YouTube Playlist Hint */
.yt-embed-wrap {
    position: relative;
    max-width: 100%;
}

.yt-playlist-hint {
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-110%);
    z-index: 3;
    pointer-events: none;
    color: #fff;
    font-weight: 300;
    line-height: 1.5;
    text-align: right;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    border: 1px solid #f44336;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    /* Base: mobil için görünür, desktop için media query override edecek */
    opacity: 1;
    visibility: visible;
}

.yt-list-icon {
    color: #f44336;
    font-size: 1.55em;
    line-height: 0;
    display: inline-block;
    transform: translateY(0.05em);
}

.yt-hint-desktop-text {
    display: block;
}

.yt-hint-touch-text {
    display: none;
}

/* MOBİL trigger + popup sistemi (991px ve altı) */
.yt-hint-trigger,
.yt-hint-popup {
    display: none;
}

.yt-description-wrap {
    position: relative;
}

/* Tablet: 768px - 991px - trigger buton yazı ile video arasında */
@media (min-width: 768px) and (max-width: 991px) {
    .yt-playlist-hint {
        display: none !important;
    }
    
    .yt-description-wrap {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        margin-bottom: 10px;
    }
    
    .yt-description-wrap .widget-description {
        width: 100%;
        text-align: left;
    }
    
    .yt-hint-trigger {
        display: block;
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 10px;
        z-index: 10;
        background: rgba(0, 0, 0, 0.75);
        color: #f44336;
        font-size: 0.7rem;
        font-weight: 600;
        padding: 5px 10px;
        border: 1px solid #f44336;
        border-radius: 8px;
        cursor: pointer;
        backdrop-filter: blur(4px);
        transition: background 200ms ease;
    }
    
    .yt-hint-trigger:hover,
    .yt-hint-trigger:active {
        background: rgba(244, 67, 54, 0.2);
    }
    
    .yt-hint-popup {
        display: none;
        position: absolute;
        bottom: 40px;
        right: 0;
        z-index: 20;
        background: rgba(0, 0, 0, 0.9);
        color: #fff;
        font-size: 0.82rem;
        font-weight: 300;
        line-height: 1.5;
        padding: 12px 14px;
        padding-top: 28px;
        border: 1px solid #f44336;
        border-radius: 12px;
        max-width: min(85vw, 320px);
        text-align: left;
        backdrop-filter: blur(6px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    }
    
    .yt-hint-popup.is-open {
        display: block;
        animation: fadeInUp 200ms ease;
    }
    
    .yt-hint-close {
        position: absolute;
        top: 6px;
        right: 8px;
        background: none;
        border: none;
        color: #f44336;
        font-size: 1rem;
        cursor: pointer;
        padding: 4px 8px;
        line-height: 1;
    }
    
    .yt-hint-close:hover {
        color: #fff;
    }
    
    .yt-hint-desktop-text {
        display: none !important;
    }
    
    .yt-hint-popup .yt-list-icon {
        font-size: 1.8em;
        font-weight: 700;
    }
}

/* Mobil: 767px ve altı */
@media (max-width: 767px) {
    .yt-playlist-hint {
        display: none !important;
    }
    
    .yt-description-wrap {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    
    .yt-description-wrap .widget-description {
        width: 100%;
        text-align: left;
    }
    
    .yt-hint-trigger {
        display: block;
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 8px;
        z-index: 10;
        background: rgba(0, 0, 0, 0.75);
        color: #f44336;
        font-size: 0.68rem;
        font-weight: 600;
        padding: 4px 8px;
        border: 1px solid #f44336;
        border-radius: 8px;
        cursor: pointer;
        backdrop-filter: blur(4px);
        transition: background 200ms ease, transform 200ms ease;
    }
    
    .yt-hint-trigger:hover,
    .yt-hint-trigger:active {
        background: rgba(244, 67, 54, 0.2);
    }
    
    .yt-hint-popup {
        display: none;
        position: absolute;
        bottom: 40px;
        right: 0;
        z-index: 20;
        background: rgba(0, 0, 0, 0.9);
        color: #fff;
        font-size: 0.82rem;
        font-weight: 300;
        line-height: 1.5;
        padding: 12px 14px;
        padding-top: 28px;
        border: 1px solid #f44336;
        border-radius: 12px;
        max-width: min(85vw, 300px);
        text-align: left;
        backdrop-filter: blur(6px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    }
    
    .yt-hint-close {
        position: absolute;
        top: 6px;
        right: 8px;
        background: none;
        border: none;
        color: #f44336;
        font-size: 1rem;
        cursor: pointer;
        padding: 4px 8px;
        line-height: 1;
    }
    
    .yt-hint-close:hover {
        color: #fff;
    }
    
    .yt-hint-popup.is-open {
        display: block;
        animation: fadeInUp 200ms ease;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .yt-hint-desktop-text {
        display: none !important;
    }
    
    .yt-hint-popup .yt-list-icon {
        font-size: 1.8em;
        font-weight: 700;
    }
}

/* DESKTOP: hover ile görünür (992px ve üstü) */
@media (min-width: 992px) {
    .yt-playlist-hint {
        opacity: 0;
        visibility: hidden;
        font-size: 0.9rem;
        padding: 8px 10px;
        max-width: min(360px, 70vw);
        transform: translateY(-110%) scale(0.98);
        transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
    }
    
    .yt-embed-wrap:hover .yt-playlist-hint,
    .yt-embed-wrap:focus-within .yt-playlist-hint {
        opacity: 1;
        visibility: visible;
        transform: translateY(-110%) scale(1);
    }
    
    .yt-hint-desktop-text {
        display: block;
    }
    
    .yt-hint-touch-text {
        display: none !important;
    }
    
    .yt-playlist-hint .yt-list-icon {
        font-size: 1.8em;
        font-weight: 700;
    }
}

@media (max-width: 767px) {
    .playlist-section {
        padding: 40px 0;
    }

    .responsive-iframe {
        width: 100% !important;
        height: 380px !important;
    }
}

/* FAQ PAGE (SSS.HTML) */
.sss-container {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.sss-header {
    color: #f44336;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.icon-label {
    color: white !important;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
}

.icon-box a {
    text-decoration: none;
    color: white !important;
}

.accordion-button {
    color: #fff !important;
    background-color: #1a1a1a !important;
    border-bottom: 1px solid #333 !important;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.accordion-button:not(.collapsed) {
    color: #f44336 !important;
    background-color: #111 !important;
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.1);
}

.accordion-body {
    background-color: #111;
    color: #ccc;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: justify;
}

.accordion-item {
    background-color: #1a1a1a;
    border: 1px solid #222 !important;
    margin-bottom: 10px;
    border-radius: 6px !important;
}

.accordion-button:focus {
    border-color: #f44336 !important;
    box-shadow: 0 0 0 0.1rem rgba(244, 67, 54, 0.5);
}

.accordion-body strong {
    color: #f44336;
    font-weight: 700;
}

/* CONTACT PAGE (ILETISIM.HTML) */
.contact-container {
    padding: 40px 12px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-header {
    color: #f44336;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.contact-text-content {
    line-height: 1.8;
    font-size: 0.95rem;
    color: #ccc;
    text-align: justify;
    padding: 0 20px;
}

.contact-text-content strong {
    color: #f44336;
}

/* BK Emphasis - Reusable accent highlight (matches existing "(Mix, Mastering...)" inline style) */
.bk-emphasis {
    color: var(--bk-emphasis-color);
    font-weight: 700;
}

.contact-text-content ul {
    list-style: none;
    padding-left: 0;
}

.contact-text-content ul li::before {
    content: "•";
    color: #f44336;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Mobile Responsive Fixes */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1rem !important;
        white-space: normal;
        line-height: 1.2;
    }

    .brand-link {
        font-size: 1rem !important;
    }
}

.icon-box {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    transition: background-color 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
}

.icon-box:hover {
    background-color: #222;
    transform: translateY(-5px);
    text-decoration: none;
}

.contact-icon-large {
    font-size: 4rem;
    color: #f44336;
    margin-bottom: 15px;
}

/* Page Header Small Style */
.page-header-small {
    font-size: 1.4rem;
    color: #f44336;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RESPONSIVE MOBILE FIXES (MOVED TO END TO OVERRIDE) */
@media (max-width: 992px) {

    .gear-item,
    .album-item {
        width: 25%;
        max-width: 25%;
        margin: 0;
        padding: 2px;
    }

    /* Mobile Text Below Image Fix */
    .gear-cover-container,
    .album-cover-container {
        padding-bottom: 100%;
        /* Keep square aspect ratio for image container */
        margin-bottom: 55px;
        /* Increased space for text below to prevent truncation */
        overflow: visible;
        /* Allow text to show outside */
        box-shadow: none;
        /* Optional: remove shadow on mobile if desired, or keep */
    }

    .gear-info,
    .album-info {
        position: absolute;
        top: 100%;
        /* Move below image */
        bottom: auto;
        left: 0;
        width: 100%;
        height: auto;
        /* Auto height */
        background: transparent;
        /* Remove background or keep minimal */
        color: white;
        /* Ensure text is visible */
        padding: 5px 0;
        transform: none !important;
        /* Disable hover transform */
        opacity: 1 !important;
        /* Always visible */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }

    /* Disable hover effects on mobile */
    .gear-item:hover .gear-cover-container,
    .album-item:hover .album-cover-container {
        transform: none;
        box-shadow: none;
    }

    .gear-item:hover .gear-cover-container .gear-image,
    .album-item:hover .album-cover-container .album-cover {
        transform: translate(-50%, -50%);
        /* Keep centered, no zoom/move */
    }

    /* Reset specific scaling and force fit inside container */
    .gear-item .gear-image,
    .album-item .album-cover,
    .gear-item:nth-child(n) .gear-image,
    /* Override specific nth-child rules */
    .album-item:nth-child(n) .album-cover {
        transform: translate(-50%, -50%) scale(1) !important;
        width: 100% !important;
        /* Full width */
        height: 100% !important;
        object-fit: contain !important;
        top: 50%;
        left: 50%;
    }

    /* Resize text for mobile */
    .gear-info .name,
    .album-info .artist {
        font-size: 0.65rem;
        /* Adjusted font size */
        line-height: 1.2;
        margin-bottom: 2px;
        white-space: normal;
        /* Allow wrapping */
        overflow: visible;
        /* Show full text */
        text-overflow: clip;
        height: auto;
        max-height: none;
    }

    .gear-info .model,
    .album-info .song {
        font-size: 0.55rem;
        color: #ccc;
        white-space: normal;
        overflow: visible;
    }
}

@media (max-width: 576px) {

    /* Navbar Compact Fix */
    .navbar-brand-fixed {
        font-size: 1.1rem;
        /* Smaller font for mobile */
        letter-spacing: 0.5px;
    }

    .separator-glow {
        margin: 0 5px;
        /* Tighter spacing */
        font-size: 1.1rem;
    }

    /* Mobile Grid: Force 4 items per row (25%) */
    .gear-item,
    .album-item {
        width: 25% !important;
        max-width: 25% !important;
        flex: 0 0 25% !important;
        padding: 2px;
    }

    /* Contact Page Mobile Fixes */
    .contact-container .row {
        display: flex;
        flex-wrap: nowrap;
        /* Force single row */
        justify-content: center;
        gap: 10px;
        padding-left: 15px !important;
        /* Add "1cm" spacing on left */
        padding-right: 15px !important;
        /* Add "1cm" spacing on right */
        margin-left: 0 !important;
        /* Fix Bootstrap negative margin causing overflow */
        margin-right: 0 !important;
    }

    .contact-container .col-md-6 {
        width: 40% !important;
        /* Force width */
        flex: 0 0 40% !important;
        max-width: 40% !important;
        padding: 0;
    }

    /* Restore Desktop Look for Icons but Smaller */
    .icon-box {
        /* Very compact padding */
        padding: 10px 2px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
    }

    .contact-icon-large {
        font-size: 1.3rem;
        /* Smaller icon */
        margin-bottom: 5px;
        color: white !important;
    }

    .icon-label {
        font-size: 0.6rem;
        /* Smaller text */
        color: white !important;
        white-space: nowrap;
    }

    /* Fix Mobile Margins for Text */
    .contact-text-content {
        margin-bottom: 30px;
    }
}

/* These rules were misplaced outside the media query, moving them to a logical place or removing if redundant */
/* Assuming these were intended for the .icon-label outside the media query or were a typo */
.icon-label {
    font-size: 0.7rem;
    /* Smaller text */
    color: white !important;
    /* Force white color */
    white-space: nowrap;
    /* Prevent wrapping if possible */
}

/* ============================================
   Mobile/Tablet Overlay Menu (<=1199.98px)
   Revise: No language block, bigger links, slower animation
   ============================================ */

:root {
    --bk-bg: #0d0d0d;
    --bk-black: #000;
    --bk-accent: #f44336;
    --bk-text: #fff;
    --bk-sub: #ccc;
}

.bk-menu-trigger {
    display: none;
    outline: none;
    box-shadow: none;
}

.bk-menu-trigger:focus,
.bk-menu-trigger:focus-visible {
    outline: none;
    box-shadow: none;
}

/* Desktop default: overlay system kapalı */
.bk-hamburger-menu,
.bk-overlay {
    display: none;
}

@media (max-width: 1199.98px) {
    /* Mobil/Tablet: bootstrap navbar toggler gizle (dil dropdown kalır) */
    .navbar .navbar-toggler {
        display: none !important;
    }

    /* Language button height variable for responsive sizing */
    :root {
        --lang-h: 34px;
    }

    @media (min-width: 768px) {
        :root {
            --lang-h: 38px;
        }
    }

    /* Navbar actions wrapper: TR dropdown + hamburger yan yana */
    .bk-nav-controls {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    /* TR button height matching */
    .bk-nav-controls .btn-lang {
        height: var(--lang-h);
    }

    /* Hamburger menu: same height as TR, transparent, 3 lines only */
    .bk-hamburger-menu {
        display: flex;
        width: var(--lang-h);
        height: var(--lang-h);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: calc(var(--lang-h) * 0.18);
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        background: transparent;
        border: none;
        box-shadow: none;
        outline: none;
        padding: 0;
        margin: 0;
        appearance: none;
        -webkit-appearance: none;
        line-height: 0;
        position: relative;
        z-index: 6000;
    }

    .bk-hamburger-menu:focus,
    .bk-hamburger-menu:focus-visible,
    .bk-hamburger-menu:active {
        outline: none;
        box-shadow: none;
    }

    /* Hamburger visible and clickable when overlay is open */
    body:has(.bk-menu-trigger:checked) .bk-hamburger-menu {
        z-index: 6000 !important;
        pointer-events: auto !important;
        position: relative;
    }

    .bk-hamburger-menu span {
        height: 2px;
        width: calc(var(--lang-h) * 0.6);
        background: #fff;
        border-radius: 1px;
        display: block;
        transition: transform 0.35s ease, opacity 0.3s ease, background-color 0.2s ease;
        transform-origin: center;
        will-change: transform;
    }

    .bk-hamburger-menu:hover span {
        background: #f44336;
    }

    .bk-overlay {
        display: block;
        position: fixed;
        inset: 0;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100vw;
        height: 100dvh;
        height: 100vh; /* Fallback for browsers without dvh support */
        z-index: 5100;
        pointer-events: none;
        opacity: 0;
        background-color: rgba(0, 0, 0, 0.85);
        background: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        clip-path: circle(0px at calc(100% - 60px) 28px);
        transition: opacity 0.45s ease, clip-path 0.6s ease-out;
        overflow-x: hidden;
        overflow-y: hidden;
        touch-action: none;
        max-width: 100vw;
    }

    /* Ensure hamburger button is always above overlay */
    .bk-nav-controls {
        position: relative;
        z-index: 6000;
    }

    .bk-overlay-close {
        position: absolute;
        inset: 0;
        cursor: pointer;
        z-index: 1;
        background: transparent;
        pointer-events: auto;
    }

    .bk-overlay-panel {
        position: relative;
        pointer-events: auto !important;
        max-width: 85%;
        width: 100%;
        margin: 0 auto;
        height: 100vh;
        max-height: 100vh;
        overflow-y: hidden;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: clamp(12px, 3vh, 20px) clamp(20px, 5vw, 32px);
        text-align: center;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
        z-index: 100 !important;
        max-width: 100%;
    }

    /* Overlay close should not block panel content - panel has higher z-index */
    .bk-overlay .bk-overlay-panel,
    .bk-overlay .bk-overlay-panel *,
    .bk-overlay .bk-overlay-panel a,
    .bk-overlay .bk-overlay-panel li {
        position: relative;
        z-index: 100 !important;
        pointer-events: auto !important;
    }

    /* Ensure menu links are clickable and hoverable */
    .bk-menu-links a {
        pointer-events: auto !important;
        z-index: 101 !important;
    }

    .bk-overlay-inner {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .bk-overlay-brand {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        letter-spacing: 0.5px;
        color: var(--bk-text);
        margin-bottom: 0;
        text-transform: uppercase;
        font-size: clamp(0.95rem, 3vw, 1.2rem);
        white-space: nowrap;
        line-height: 1.3;
        padding: clamp(6px, 1.5vh, 12px) clamp(8px, 2vw, 16px);
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        flex-shrink: 0;
    }

    .bk-menu-links {
        margin-top: clamp(12px, 3vh, 20px);
        width: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 1;
        min-height: 0;
    }

    .bk-overlay-brand .bk-sep {
        color: var(--bk-accent);
        margin: 0 8px;
    }

    .bk-menu-links {
        list-style: none;
        padding: 0;
        padding-inline: 16px;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: clamp(6px, 1.5vh, 10px);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    /* Staggered reveal animation - initial state (menu closed) */
    .bk-menu-links li {
        opacity: 0;
        transform: translateY(-16px);
        transition: opacity 380ms ease-out, transform 420ms cubic-bezier(0.18, 0.89, 0.32, 1.15);
    }

    /* Staggered reveal animation - open state */
    .bk-menu-trigger:checked ~ .bk-overlay .bk-menu-links li,
    body:has(.bk-menu-trigger:checked) .bk-menu-links li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger delays - each item appears 60ms after the previous */
    .bk-menu-trigger:checked ~ .bk-overlay .bk-menu-links li:nth-child(1),
    body:has(.bk-menu-trigger:checked) .bk-menu-links li:nth-child(1) {
        transition-delay: 80ms;
    }

    .bk-menu-trigger:checked ~ .bk-overlay .bk-menu-links li:nth-child(2),
    body:has(.bk-menu-trigger:checked) .bk-menu-links li:nth-child(2) {
        transition-delay: 140ms;
    }

    .bk-menu-trigger:checked ~ .bk-overlay .bk-menu-links li:nth-child(3),
    body:has(.bk-menu-trigger:checked) .bk-menu-links li:nth-child(3) {
        transition-delay: 200ms;
    }

    .bk-menu-trigger:checked ~ .bk-overlay .bk-menu-links li:nth-child(4),
    body:has(.bk-menu-trigger:checked) .bk-menu-links li:nth-child(4) {
        transition-delay: 260ms;
    }

    .bk-menu-trigger:checked ~ .bk-overlay .bk-menu-links li:nth-child(5),
    body:has(.bk-menu-trigger:checked) .bk-menu-links li:nth-child(5) {
        transition-delay: 320ms;
    }

    .bk-menu-trigger:checked ~ .bk-overlay .bk-menu-links li:nth-child(6),
    body:has(.bk-menu-trigger:checked) .bk-menu-links li:nth-child(6) {
        transition-delay: 380ms;
    }

    .bk-menu-trigger:checked ~ .bk-overlay .bk-menu-links li:nth-child(7),
    body:has(.bk-menu-trigger:checked) .bk-menu-links li:nth-child(7) {
        transition-delay: 440ms;
    }

    /* Accessibility: respect reduced motion preference */
    @media (prefers-reduced-motion: reduce) {
        .bk-menu-links li {
            opacity: 1;
            transform: none;
            transition: none;
        }

        .bk-menu-trigger:checked ~ .bk-overlay .bk-menu-links li,
        body:has(.bk-menu-trigger:checked) .bk-menu-links li {
            opacity: 1;
            transform: none;
            transition: none;
        }
    }

    .bk-menu-links a {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-decoration: none;
        color: var(--bk-text);
        font-size: clamp(0.7rem, 2.2vw, 0.85rem);
        padding: clamp(8px, 2vh, 12px) clamp(6px, 1.5vw, 10px);
        border-radius: 8px;
        border: 1px solid rgba(244, 67, 54, 0.55);
        background: rgba(255, 255, 255, 0.04);
        transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
        display: block;
        width: min(88vw, 560px);
        max-width: 100%;
        margin-inline: auto;
        box-sizing: border-box;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .bk-menu-links a:hover,
    .bk-menu-links a:active,
    .bk-menu-links a:focus-visible {
        transform: none;
        border-color: rgba(244, 67, 54, 0.9);
        color: var(--bk-accent);
        background-color: rgba(255, 255, 255, 0.06);
    }

    /* Ensure language dropdown stays above overlay */
    .navbar .dropdown {
        position: relative;
        z-index: 5000;
    }

    .navbar .dropdown-menu {
        z-index: 5001;
    }

    /* OPEN state */
    .bk-menu-trigger:checked ~ .bk-overlay {
        pointer-events: auto;
        opacity: 1;
        clip-path: circle(180% at calc(100% - 60px) 28px);
    }

    /* Hamburger X animation when menu is open - use :has() for reliable targeting */
    .bk-menu-trigger:checked ~ * .bk-hamburger-menu span:nth-child(1),
    body:has(.bk-menu-trigger:checked) .bk-hamburger-menu span:nth-child(1) {
        transform: translateY(calc(var(--lang-h) * 0.31)) rotate(45deg);
    }

    .bk-menu-trigger:checked ~ * .bk-hamburger-menu span:nth-child(2),
    body:has(.bk-menu-trigger:checked) .bk-hamburger-menu span:nth-child(2) {
        opacity: 0;
    }

    .bk-menu-trigger:checked ~ * .bk-hamburger-menu span:nth-child(3),
    body:has(.bk-menu-trigger:checked) .bk-hamburger-menu span:nth-child(3) {
        transform: translateY(calc(var(--lang-h) * -0.31)) rotate(-45deg);
    }

    /* Prevent body scroll when overlay is open */
    body:has(.bk-menu-trigger:checked) {
        overflow: hidden;
        overflow-x: hidden;
        position: fixed;
        width: 100%;
        max-width: 100%;
        overscroll-behavior-x: none;
        touch-action: none;
    }

    html:has(.bk-menu-trigger:checked) {
        overflow-x: hidden;
        overscroll-behavior-x: none;
    }
}
/* YouTube Playlist Embed - Responsive wrapper */
.yt-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
}

.yt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Link mode styling (fallback) */
.yt-link-mode {
  padding: 2rem 0;
}

/* YouTube Playlist CTA Styling */
.yt-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  background: #f44336;
  color: #fff !important;
  transition: filter 0.2s ease, transform 0.1s ease;
}

.yt-cta:hover {
  filter: brightness(0.95);
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-1px);
}

.yt-cta:active {
  transform: translateY(0);
}

.yt-cta i {
  margin-right: 6px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .yt-cta {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* Mobile/Tablet: Hide playlist popup and bottom CTA */
@media (max-width: 1199.98px) {
  .yt-hint-popup {
    display: none !important;
  }
  
  .yt-playlist-cta {
    display: none !important;
  }
}
