/* =============================================
   Cosmopolitan MUSIC - STYLE.CSS
   Dark, Premium, Cinematic Music Label Website
   ============================================= */

/* CSS Variables */
/* =============================================
   Cosmopolitan MUSIC - STYLE.CSS
   Dark, Premium, Cinematic Music Label Website
   ============================================= */

/* CSS Variables */
:root {
    --black: #0a0a0a;
    --black-deep: #0a0a0acc;
    --gray-dark: #0a0a0ad9;
    --gray-medium: #0a0a0a80;
    --gray-light: #0a0a0a;
    --gray-text: #154213;
    --white: #ffffff;
    --white-off: #ffffff;
    --accent-primary: #0be016bb;
    --accent-glow: #0be016bb;
    --accent-bright: #0be016bb;
    --accent-highlight: #72e986c5;
    --blue-dark: #2a7213;
    --blue-medium: #154213;
    --blue-light: #18da42;
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --text-second: #0be016bb;
    --bg-light: #0a0a0a;
    --text-active-alpha: #0be016bb;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ========= ARKA PLAN KARELERİ ========= */
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative; /* ::before için gerekli */
}

/* İnce kareli çizgiler için */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(30, 255, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 255, 0, 0.02) 1px, transparent 1px);
    background-size: 62px 62px; /* karelerin boyutu */
    pointer-events: none; /* tıklanabilirlik etkilenmesin */
    z-index: -1; /* diğer içeriklerin üstünde olmasın */
}
/* ======================================== */

/* Devam eden CSS kodların ... */


/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}


a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    outline: none;
}

::selection {
    background: var(--accent-primary);
    color: var(--white);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: #0a0a0acc;
    transition: var(--transition-medium);

    /* Eklenen */
    backdrop-filter: blur(24px); /* altındaki kareli arka planı bulanıklaştırır */

          /* mavi kare rengi ile uyumlu */
    border-bottom: 1px solid rgba(30, 255, 0, 0.12);
}


.nav-logo {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 8px;
    color: var(--white);
    cursor: default;
    
        /* Glow efekti için */
    transition: text-shadow 0.5s ease-in-out;
}

.nav-logo:hover {
    text-shadow: 0px 0px 1rem var(--white);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-text);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-glow);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Section Base */
.section {
    position: relative;
    padding: 150px 0;
    z-index: 1;
}

.section-header {
    margin-bottom: 80px;
}

.section-number {
    display: block;
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.5;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 100px);
    letter-spacing: 4px;
    line-height: 1;
    text-transform: uppercase;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll-based section animations */
.section {
    transition: opacity 0.5s ease;
}

.section.in-view .section-title {
    animation: titleGlow 2s ease;
}

@keyframes titleGlow {
    0% { text-shadow: none; }
    50% { text-shadow: 0 0 40px var(--accent-glow); }
    100% { text-shadow: none; }
}

/* Progress bar on scroll */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-bright), var(--accent-highlight));
    z-index: 10001;
    transform-origin: left;
    transform: scaleX(0);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 100;
    padding: 0 20px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid var(--gray-light);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(60px, 15vw, 180px);
    line-height: 0.9;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 30px;
    cursor: default;
}

.title-line {
    display: block;
}

.hero-tagline {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: #ffffff !important;
    margin-bottom: 60px;
    text-shadow: 0 0 3px #ffffffbb;
    opacity: 1 !important;
    transform: none !important;
    cursor: default;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 80px;
    cursor: default;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 2px;
    color: var(--white);
}

.stat-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-text);
}

.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-indicator span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-glow), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.7);
    }
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--blue-medium);
    top: -20%;
    right: -10%;
    opacity: 0.4;
    animation: float1 15s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    bottom: 10%;
    left: -5%;
    opacity: 0.3;
    animation: float2 12s ease-in-out infinite;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-glow);
    top: 40%;
    right: 20%;
    opacity: 0.2;
    animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, 30px) rotate(5deg); }
    66% { transform: translate(20px, -20px) rotate(-5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -40px); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 30px) scale(1.1); }
}

/* About Section */
.about {
    background: linear-gradient(to bottom, var(--black), var(--blue-deep));
    cursor: default;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text {
    padding-right: 40px;
}

.about-lead {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--white-off);
    margin-bottom: 30px;
}

.about-text p {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pillar {
    padding: 40px;
    background: var(--blue-deep);
    border: 1px solid var(--accent-primary);
    transition: var(--transition-medium);
}

.pillar:hover {
    background: var(--blue-medium);
    border-color: var(--accent-bright);
    transform: translateY(-8px);
    box-shadow: 0 0 40px #0be016bb, 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pillar:hover .pillar-icon {
    color: var(--accent-highlight);
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.pillar:hover h3 {
    color: var(--accent-highlight);
}

.pillar:hover p {
    color: var(--white-off);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    color: var(--accent-glow);
    transition: var(--transition-medium);
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
}

.pillar h3 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.pillar p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* Scale Section */
.scale {
    background: linear-gradient(to bottom, var(--blue-deep), var(--gray-dark));
    position: relative;
    overflow: hidden;
    cursor: default;
}

.scale-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.counter-card {
    text-align: center;
    padding: 60px 30px;
    background: var(--blue-deep);
    border: 1px solid var(--accent-primary);
    transition: var(--transition-medium);
}

.counter-card:hover {
    border-color: var(--accent-bright);
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 0 50px #0be016bb, 0 20px 40px rgba(0, 0, 0, 0.4);
    background: var(--blue-medium);
}

.counter-card:hover .counter-value {
    color: var(--accent-highlight);
    text-shadow: 0 0 30px var(--accent-glow);
}

.counter-card:hover .counter-label {
    color: var(--white);
}

.counter-card:hover .counter-desc {
    color: var(--accent-bright);
}

.counter-value {
    font-family: var(--font-display);
    font-size: 72px;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--white);
}

.counter-suffix {
    color: var(--accent-glow);
}

.counter-label {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.counter-desc {
    font-size: 13px;
    color: var(--gray-text);
}

.scale-statement {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.scale-statement p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-text);
}

.scale-bg-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
    filter: blur(80px);
}

/* Rights Section */
.rights {
    background: linear-gradient(to bottom, var(--gray-dark), var(--blue-deep));
    cursor: default;
}

.rights-intro {
    max-width: 800px;
    margin-bottom: 60px;
}

.rights-intro p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-text);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rights-card {
    padding: 50px 40px;
    background: var(--blue-deep);
    border: 1px solid var(--accent-primary);
    transition: var(--transition-medium);
}

.rights-card:hover {
    border-color: var(--accent-bright);
    background: var(--blue-medium);
    box-shadow: 0 0 50px #0be016bb, 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.rights-card:hover .rights-icon {
    color: var(--accent-highlight);
    border-color: var(--accent-highlight);
    box-shadow: 0 0 20px var(--accent-glow);
}

.rights-card:hover h3 {
    color: var(--accent-highlight);
}

.rights-card:hover p {
    color: var(--white-off);
}

.rights-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.rights-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--accent-glow);
    border: 1px solid var(--accent-glow);
    transition: var(--transition-medium);
}

.rights-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
}

.rights-card p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.8;
}

/* Partnerships Section */
.partnerships {
    background: linear-gradient(to bottom, var(--blue-deep), var(--black));
    cursor: default;
}

.partnerships-intro {
    max-width: 600px;
    margin-bottom: 60px;
}

.partnerships-intro p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-text);
}

.partnerships-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.partnership-card {
    perspective: 1000px;
    height: 300px;
}

.partnership-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

.partnership-card:hover .partnership-card-inner {
    transform: rotateY(180deg);
}

.partnership-card-front,
.partnership-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    border: 1px solid var(--accent-primary);
}

.partnership-card-front {
    background: var(--blue-deep);
    text-align: center;
    transition: var(--transition-medium);
}

.partnership-card:hover .partnership-card-front {
    background: var(--blue-medium);
}

.partnership-card-front h3 {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.partnership-explore {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-glow);
}

.partnership-card-back {
    background: linear-gradient(135deg, var(--blue-medium) 0%, var(--blue-deep) 100%);
    transform: rotateY(180deg);
    border-color: var(--accent-bright);
}

.partnership-card-back p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--white-off);
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, var(--black), var(--blue-deep));
    cursor: default;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.8;
}

.contact-channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--blue-deep);
    border: 1px solid var(--accent-primary);
    transition: var(--transition-medium);
}

.contact-item:hover {
    background: var(--blue-medium);
    border-color: var(--accent-bright);
    transform: translateX(15px);
    box-shadow: 0 0 40px #0be016bb, 0 10px 30px rgba(0, 0, 0, 0.4);
}

.contact-item:hover .contact-icon {
    color: var(--accent-highlight);
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.contact-item:hover .contact-type {
    color: var(--accent-bright);
}

.contact-item:hover .contact-value {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    color: var(--accent-glow);
    transition: var(--transition-medium);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-type {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 5px;
}

.contact-value {
    font-size: 15px;
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--black);
    padding: 80px 0 40px;
    border-top: 1px solid var(--accent-primary);
    cursor: default;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 8px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--gray-text);
    letter-spacing: 2px;
}

.footer-company h4,
.footer-address h4 {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.footer-company p,
.footer-address p {
    font-size: 14px;
    color: var(--white-off);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--accent-primary);
}

.copyright {
    font-size: 13px;
    color: var(--gray-text);
}

.legal-note {
    font-size: 12px;
    color: var(--gray-text);
}

/* Footer text visibility enhancement */
.footer-company p,
.footer-address p {
    color: #c7d2e0;
}

.footer-tagline {
    color: #ffffff;
    letter-spacing: 4px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .scale-counters {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav {
        padding: 20px 30px;
    }
    
    .nav-links {
        display: none;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .section {
        padding: 100px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .partnerships-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .scale-counters {
        grid-template-columns: 1fr;
    }
    
    .counter-value {
        font-size: 56px;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-channels {
        grid-template-columns: 1fr;
    }
    
    .about-pillars {
        grid-template-columns: 1fr;
    }
    
    .section-number {
        font-size: 60px;
    }
    
    /* Hide custom cursor on mobile */
    .cursor,
    #cursorCanvas {
        display: none !important;
    }
    
    html, body, a, button {
        cursor: auto;
    }
    
    /* Show intro on mobile but simpler */
    .intro-bg-lines {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 4px;
    }
    
    .hero-tagline {
        letter-spacing: 4px;
        font-size: 14px;
    }
    
    .hero-badge {
        padding: 8px 20px;
        letter-spacing: 2px;
    }
    
    .pillar,
    .rights-card,
    .contact-item {
        padding: 30px 25px;
    }
}

/* width */
::-webkit-scrollbar {
    width: 6px;
}
/* Track */
::-webkit-scrollbar-track {
    background: var(--bg-light);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--text-active-alpha);
    border-radius: 20px;
}