/* --- GLOBAL DEĞİŞKENLER & FONT TANIMLAMALARI --- */
:root {
    --color-primary: #ff0000;
    --color-primary-dark: #d11111;
    --color-text-white: white;
    --color-border: #1a1a1a;
    --font-display: 'Rubik Dirt', cursive;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Oswald', sans-serif;
    --transition-base: 0.3s ease;
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/bebas-neue-v16-latin-regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: block;
}
@font-face {
    font-family: 'Rubik Dirt';
    src: url('../fonts/rubik-dirt-v2-latin-regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: block;
}
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/oswald-v57-latin-regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: block;
}

/* --- GENEL SIFIRLAMA --- */
body, html {
    margin: 0; padding: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    background-color: #050505;
}

/* --- PARALLAX ANA EKRAN --- */
.parallax-container {
    position: relative;
    height: 100vh; 
    width: 100%;
    overflow: hidden;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- NAVİGASYON --- */
.navbar {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 50px;
    z-index: 30; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.brand-logo { display: flex; align-items: center; gap: 15px; text-decoration: none; z-index: 30; }
.brand-logo img {
    height: 50px; 
    pointer-events: none; user-select: none; -webkit-user-drag: none;
    transition: filter var(--transition-base); 
}
.brand-name {
    color: var(--color-text-white);
    font-family: var(--font-display); 
    font-size: 30px; 
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0px 4px 15px rgba(0,0,0,0.8);
    margin-top: 5px; 
}
.brand-logo:hover .brand-name { color: var(--color-primary); transition: color var(--transition-base); }
.brand-logo:hover img { filter: drop-shadow(0px 0px 12px rgba(255, 0, 0, 0.8)); }

.nav-links { display: flex; gap: 30px; }
.nav-links a {
    color: var(--color-text-white);
    text-decoration: none;
    font-family: var(--font-heading); 
    font-size: 20px; 
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color var(--transition-base);
}
.nav-links a.active {
    color: var(--color-primary);
    letter-spacing: 4px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
    pointer-events: none;
}
.nav-links a:hover {
    color: var(--color-primary);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* --- ALT BAR --- */
.bottom-bar {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 30px 50px 20px 50px;
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; 
    background-image: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}
.social-btn {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: var(--font-body); 
    font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    transition: color var(--transition-base);
}
.social-btn svg {
    width: 32px; height: 32px;
    fill: currentColor;
    transition: transform var(--transition-base);
}
.social-btn:hover { color: var(--color-primary); }
.social-btn:hover svg { transform: scale(1.1); }

/* --- PARALLAX GÖRSELLERİ --- */
.layer {
    position: absolute;
    width: 110%; height: 110%;
    object-fit: cover;
    will-change: transform;
    pointer-events: none; user-select: none; -webkit-user-drag: none; 
}
.bg-layer { z-index: 1; top: -5%; left: -5%; filter: grayscale(0%) contrast(150%) brightness(0.85); }
.fg-layer {
    z-index: 2;
    height: clamp(300px, 85vh, 60vw); 
    width: auto;
    object-fit: contain; object-position: bottom center;
    position: absolute;
    bottom: -5%; left: 0; right: 0;
    margin: 0 auto;
    transform-origin: bottom center;
    filter: saturate(140%) contrast(110%) drop-shadow(0px 0px 20px rgba(0,0,0,0.7));
}
.sin-city-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10; 
    pointer-events: none; 
    background-image: 
        radial-gradient(circle at center, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.6; 
    mix-blend-mode: overlay; 
}

/* --- TEKLİ ÇİZGİ ROMAN KARTI --- */
/* --- ÇİZGİ ROMAN KARTI GİRİŞ ANİMASYONU --- */
@keyframes comic-card-wobble {
    /* Başlangıçta görünmez ve ekranın biraz altında */
    0% {
        opacity: 0;
        transform: translateY(20px) rotate(0deg);
    }
    
    /* Önce sola doğru sert bir eğim (görünür hale gelir) */
    30% {
        opacity: 1;
        transform: translateY(0) rotate(-10deg);
    }
    
    /* Sonra ters yöne, sağa doğru daha yumuşak bir eğim */
    60% {
        transform: rotate(7deg);
    }
    
    /* Düz konuma gelmeden son bir küçük düzeltme */
    80% {
        transform: rotate(-3deg);
    }
    
    /* Tamamen düz ve yerleşmiş hali */
    100% {
        opacity: 1;
        transform: rotate(0deg);
    }
}

.comic-wrapper {
    z-index: 20; 
    position: absolute;
    width: 260px; 
    height: auto;
    bottom: 120px; 
    right: 50px;   
    pointer-events: auto !important;
    opacity: 0;
    transform: rotate(0deg); 
    transition: transform 0.3s ease;
    animation-name: comic-card-wobble;
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}

.comic-wrapper:hover {
    transform: translateY(-8px) scale(1.05); 
}

.comic-card {
    width: 100%; height: auto;
    border-radius: 8px; 
    box-shadow: 15px 15px 30px rgba(0,0,0,0.9); 
    display: block; 
    user-select: none; -webkit-user-drag: none; pointer-events: none; 
}
.comic-links-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.85); 
    border-radius: 8px; 
    display: flex; justify-content: center; align-items: center;
    gap: 20px;
    opacity: 0; 
    transition: opacity var(--transition-base);
}
.comic-wrapper:hover .comic-links-overlay { opacity: 1; }
.comic-links-overlay a {
    color: var(--color-text-white);
    transition: color 0.2s ease, transform 0.2s ease;
    pointer-events: auto; 
}
.comic-links-overlay a svg { width: 35px; height: 35px; fill: currentColor; }
.comic-links-overlay a:hover { color: var(--color-primary); transform: scale(1.15) translateY(-5px); }

/* --- İÇERİK SAYFALARI (KAYDIRILABİLİR ALAN) --- */
.page-content {
    position: absolute;
    top: 80px; bottom: 72px; left: 0;
    width: 100%;
    z-index: 25; 
    overflow-y: auto;
    padding: 10px 50px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
.page-content::-webkit-scrollbar { width: 8px; }
.page-content::-webkit-scrollbar-track { background: rgba(0,0,0,0.5); }
.page-content::-webkit-scrollbar-thumb { background: var(--color-primary-dark); border-radius: 4px; }
.page-title {
    font-family: var(--font-display);
    color: var(--color-text-white);
    text-align: center;
    font-size: 45px; letter-spacing: 5px;
    margin-top: 0; margin-bottom: 50px;
    text-shadow: 0px 4px 15px rgba(209, 17, 17, 0.6);
}

/* --- GRUP EKİP KARTLARI --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.team-card {
    background: rgba(5, 5, 5, 0.85);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 10px rgba(0,0,0,0.9);
    transition: transform var(--transition-base), border-color var(--transition-base);
}
.team-card:hover { transform: translateY(-10px); border-color: var(--color-primary-dark); }
.team-img { position: relative; overflow: hidden; aspect-ratio: 1 / 1; }
.team-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    filter: grayscale(0%);
    transition: transform 0.4s ease, filter 0.4s ease;
}
.team-card:hover .team-img img { filter: grayscale(0%); transform: scale(1.05); }

/* --- MÜZİK SAYFASI --- */
.music-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px; row-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.album-card {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-base), border-color var(--transition-base);
    display: flex;
    flex-direction: column;
}
.album-card:hover { border-color: var(--color-primary); transform: translateY(-5px); }
.album-img { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; }
.album-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0%);
    transition: filter var(--transition-base);
}
.album-card:hover .album-img img { filter: grayscale(0%); }
.album-detail { padding: 12px; text-align: center; }
.album-detail h5 {
    font-family: var(--font-heading);
    font-size: 17px; color: var(--color-text-white);
    margin: 0 0 10px 0; letter-spacing: 1px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.album-stores { display: flex; justify-content: center; gap: 12px; }
.album-stores a {
    color: #666;
    transition: color 0.2s, transform 0.2s;
    line-height: 0;
}
.album-stores a:hover { color: var(--color-primary); transform: scale(1.2); }
.album-stores svg { width: 18px; height: 18px; fill: currentColor; }

/* --- EKİP SOSYAL MEDYA ÇUBUĞU --- */
.team-social {
    position: absolute;
    bottom: -60px; width: 100%;
    background: rgba(209, 17, 17, 0.9);
    display: flex; justify-content: center;
    gap: 25px; padding: 15px 0;
    transition: bottom var(--transition-base);
}
.team-card:hover .team-social { bottom: 0; }
.team-social a { color: var(--color-text-white); transition: transform 0.2s; }
.team-social a svg { width: 22px; height: 22px; fill: currentColor; }
.team-social a:hover { transform: scale(1.2) translateY(-3px); }
.team-info { padding: 25px 20px; text-align: center; }
.team-info h4 {
    font-family: var(--font-heading);
    font-size: 28px; color: var(--color-text-white);
    margin: 0 0 5px 0; letter-spacing: 1px;
}
.team-info span {
    font-family: var(--font-body);
    font-size: 14px; color: var(--color-primary-dark);
    letter-spacing: 2px; text-transform: uppercase;
}

/* --- HABERLER SAYFASI --- */
.news-slider-container { width: 100%; display: flex; justify-content: center; align-items: center; padding: 0; }
.news-slider {
    display: flex; gap: 35px;
    padding: 20px 50px;
    overflow-x: auto; scroll-behavior: smooth;
}
.news-slider::-webkit-scrollbar { display: none; }
.news-slider { -ms-overflow-style: none; scrollbar-width: none; }
.news-card {
    flex: 0 0 auto;
    width: 300px;
    position: relative;
    transition: transform var(--transition-base); 
}
.news-card img {
    width: 100%; height: auto; display: block;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.9);
    filter: saturate(1.2) contrast(1.1);
    transition: border-color var(--transition-base);
}
.news-card:hover { transform: translateY(-10px); z-index: 5; }
.news-card:hover img { border-color: var(--color-primary-dark); }
.post-date {
    position: absolute;
    top: -12px; left: -18px;
    background: var(--color-primary); color: var(--color-text-white);
    padding: 6px 12px; z-index: 10;
    transform: rotate(-6deg);
    font-family: var(--font-heading);
    box-shadow: 4px 4px 0px #000;
    display: flex; flex-direction: column; align-items: center;
    line-height: 1.1; pointer-events: none;
}
.post-date .date { font-size: 22px; font-weight: bold; }
.post-date .month { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.post-date .year { font-size: 11px; opacity: 0.9; }

/* --- KLİPLER SAYFASI --- */
.video-card {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-base), border-color var(--transition-base);
    display: flex; flex-direction: column;
    cursor: pointer;
}
.video-card:hover { border-color: var(--color-primary); transform: translateY(-5px); }
.video-img { width: 100%; position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.video-img img {
    width: 100%; height: 100%;
    object-fit: cover; filter: grayscale(20%);
    transition: transform 0.3s ease, filter 0.3s ease;
}
.play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    transition: transform var(--transition-base), opacity var(--transition-base);
}
.play-overlay svg { width: 60px; height: 60px; fill: var(--color-primary); filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.8)); }
.video-card:hover .video-img img { filter: grayscale(0%) brightness(0.6); transform: scale(1.05); }
.video-card:hover .play-overlay { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.video-detail { padding: 15px 12px; text-align: center; }
.video-detail h5 {
    font-family: var(--font-heading);
    font-size: 18px; color: var(--color-text-white);
    margin: 0; letter-spacing: 1px; line-height: 1.2;
}

/* --- VİDEO OYNATICI MODAL PENCERE --- */
.video-modal {
    display: none; position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center; justify-content: center;
    backdrop-filter: blur(5px);
}
.modal-content {
    position: relative;
    width: 80%; max-width: 900px;
    background: #000;
    border-radius: 8px;
    border: 1px solid var(--color-primary-dark);
    box-shadow: 0 0 30px rgba(209, 17, 17, 0.4);
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; height: 0;
    overflow: hidden; border-radius: 8px;
}
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.close-modal {
    position: absolute;
    top: -40px; right: 0;
    color: var(--color-text-white);
    font-size: 35px; font-family: sans-serif;
    cursor: pointer;
    transition: color var(--transition-base);
    line-height: 1;
}
.close-modal:hover { color: var(--color-primary-dark); }

/* --- İLETİŞİM SAYFASI --- */
.contact-container {
    display: flex;
    justify-content: center; align-items: center;
    min-height: calc(100vh - 150px);
    padding: 20px; box-sizing: border-box;
}
.contact-card {
    display: flex; flex-direction: row; 
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    max-width: 1000px; width: 100%;
    min-height: 400px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.9);
    transition: transform var(--transition-base), border-color var(--transition-base);
}
.contact-card:hover { transform: translateY(-10px); border-color: var(--color-primary-dark); }
.contact-img { flex: 1; overflow: hidden; }
.contact-img img {
    width: 100%; height: 100%;
    object-fit: cover; filter: grayscale(40%); 
    transition: transform 0.4s ease, filter 0.4s ease;
}
.contact-card:hover .contact-img img { filter: grayscale(0%); transform: scale(1.05); }
.contact-info {
    flex: 1; 
    padding: 60px 50px;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
}
.contact-info h3 {
    font-family: var(--font-heading);
    color: var(--color-text-white);
    font-size: 38px; letter-spacing: 2px;
    margin: 0 0 15px 0;
}
.contact-info p {
    color: #999; font-size: 17px;
    margin: 0 0 35px 0; line-height: 1.5;
}
.contact-btn {
    display: flex; align-items: center; gap: 12px;
    color: var(--color-text-white); text-decoration: none;
    font-family: var(--font-body);
    font-size: 20px; letter-spacing: 1px;
    background: rgba(209, 17, 17, 0.9); 
    padding: 15px 30px; border-radius: 4px;
    transition: background 0.3s, transform 0.3s;
}
.contact-btn svg { width: 24px; height: 24px; fill: white; }
.contact-btn:hover { background: var(--color-primary); transform: scale(1.05); }

/* --- GALERİ SAYFASI --- */
.gallery-container {
    display: flex; gap: 20px;
    max-width: 900px;
    height: calc(100vh - 200px);
    margin: 0 auto; padding: 10px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.9);
}
.gallery-main {
    flex: 1; position: relative;
    background: #000; border-radius: 6px;
    overflow: hidden;
    display: flex; justify-content: center; align-items: center;
}
.gallery-main img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    transition: opacity var(--transition-base);
}
.gallery-caption {
    position: absolute;
    bottom: 25px; left: 25px;
    background: rgba(0, 0, 0, 0.85); color: var(--color-text-white);
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 24px; letter-spacing: 1px;
    border-left: 4px solid var(--color-primary);
    text-shadow: 2px 2px 5px rgba(0,0,0,1);
    pointer-events: none;
}
.gallery-thumbs {
    width: 280px; display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    overflow-y: auto; padding-right: 10px;
    align-content: start;
}
.gallery-thumbs::-webkit-scrollbar { width: 6px; }
.gallery-thumbs::-webkit-scrollbar-track { background: #111; border-radius: 4px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--color-primary-dark); border-radius: 4px; }
.thumb {
    width: 100%; aspect-ratio: 4 / 3;
    object-fit: cover; cursor: pointer;
    border-radius: 4px; opacity: 0.4;
    transition: opacity var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
    border: 2px solid transparent;
}
.thumb:hover { opacity: 0.8; }
.thumb.active { opacity: 1; border-color: var(--color-primary); transform: scale(0.95); }

/* --- RESPONSIVE TASARIM --- */
@media (max-width: 1100px) { .music-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 850px) { .music-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { 

    .navbar { padding: 5px 10px; flex-direction: column; gap: 5px; }
    .nav-links { gap: 10px; justify-content: center; flex-wrap: wrap; }
    .nav-links a { font-size: 17px; letter-spacing: 0.5px; }
    .bottom-bar { padding: 15px 20px 20px 20px; gap: 15px; flex-wrap: wrap; }
    .social-btn span { display: none; }
    .fg-layer { display: none !important; }
	.modal-content { width: 95%; }
    .close-modal { top: -35px; right: 5px; font-size: 30px; }
	.contact-container { align-items: flex-start; min-height: auto; padding: 0; }
    .contact-card { flex-direction: column; max-width: 340px; width: 90%; min-height: auto; margin: 0 auto; }
    .contact-img { height: 220px; }
    .contact-info { padding: 25px 15px; }
    .contact-info h3 { font-size: 26px; margin-bottom: 10px; }
    .contact-info p { font-size: 14px; margin-bottom: 25px; }
    .contact-btn { font-size: 15px; padding: 10px 15px; }
    .comic-wrapper { position: absolute; left: 0; right: 0; margin: 0 auto; top: 17%; bottom: auto !important; width: 75%; max-width: 300px; z-index: 20; transform: rotate(0deg); }
    .comic-card { box-shadow: none; filter: drop-shadow(0px 0px 20px rgba(0,0,0,0.7)); }
    .comic-links-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85); border-radius: 8px; display: flex; justify-content: center; align-items: center; gap: 20px; opacity: 0; transition: opacity 0.3s ease; }
    .comic-wrapper:hover { transform: rotate(0deg) scale(1); }
    .page-content { top: 80px; bottom: 55px; padding: 20px 20px; }
    .team-grid { grid-template-columns: 1fr; gap: 40px; max-width: 360px; margin: 0 auto; }
    .team-img img { filter: grayscale(0%); }
    .team-social { bottom: -60px; background: rgba(209, 17, 17, 0.95); }
    .team-card:active .team-social, .team-card:focus .team-social, .team-card:hover .team-social { bottom: 0; }
    .team-card:active .team-img img, .team-card:hover .team-img img { filter: grayscale(0%); }
    .music-grid { grid-template-columns: 1fr; max-width: 360px; width: 90%; margin: 0 auto; gap: 30px; }
    .album-img img { filter: grayscale(0%); }
    .album-detail h5 { font-size: 22px; }
    .album-stores a { color: #aaa; }
    .news-slider { display: flex; flex-direction: column; align-items: center; gap: 80px; padding: 0px 0; overflow: visible; }
    .news-card { width: 100%; max-width: 320px; margin-top: 0; padding: 0px 0; }
    .news-card img { filter: saturate(1.2); box-shadow: 0 10px 10px rgba(0,0,0,0.9); border: 1px solid var(--color-primary-dark); }
    .gallery-container { flex-direction: column; height: calc(100vh - 200px); padding: 10px; }
    .gallery-main { height: 50vh; width: 100%; }
    .gallery-caption { font-size: 18px; bottom: 10px; left: 10px; padding: 5px 15px; }
    .gallery-thumbs { width: 100%; display: flex; flex-direction: row; overflow-x: auto; overflow-y: hidden; padding-right: 0; padding-bottom: 5px; }
    .thumb { width: 120px; height: 80px; flex-shrink: 0; aspect-ratio: auto; }
}