/* TEMEL STİLLER - COMMON STYLES */
html {
    overflow-y: scroll;
    /* Sayfalar arası geçişte kaymayı önlemek için scrollbar'ı sabitler */
    overflow-x: hidden;
}

body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* NAVBAR */
.navbar {
    background-color: #000;
    border-bottom: 1px solid #222;
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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;
}

.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: 20%;
    max-width: 20%;
    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: 20%;
    max-width: 20%;
    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;
}

@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;
}

.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 */
}