/* =========================================
   VARIABLES & SETUP
========================================= */
:root {
    /* Colors - Dark Premium Theme */
    --bg-dark: #0a0a0c;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --accent: #ffffff; /* White accent for BJK feel */
    --accent-hover: #e2e8f0;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Layout */
    --max-width: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    cursor: pointer; /* Tüm sayfanın tıklanabilir olduğunu belli etmek için eklendi */
}

/* =========================================
   BACKGROUND EFFECTS
========================================= */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0) 70%);
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(150,150,150,0.08) 0%, rgba(0,0,0,0) 70%);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

/* =========================================
   MAIN LAYOUT
========================================= */
.container {
    width: 100%;
    max-width: var(--max-width);
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

/* =========================================
   TEXT SECTION
========================================= */
.text-section {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge .dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444; /* Kırmızı nokta, dikkat çekici (live/recording gibi) */
    border-radius: 50%;
    box-shadow: 0 0 10px #ef4444;
    animation: pulse 2s infinite;
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 .highlight {
    background: linear-gradient(135deg, #ffffff 0%, #71717a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 90%;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 3rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 85%;
    background: var(--accent);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    animation: fillProgress 1.5s ease-out forwards;
    transform-origin: left;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* =========================================
   IMAGE SECTION
========================================= */
.image-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-card {
    position: relative;
    width: 100%;
    max-width: 450px; /* Dikey resim için ideal */
    /* aspect-ratio: 3/4; kaldırıldı ki orjinal resim boyutlarına uyum sağlasın */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.image-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.glass-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 1.25rem;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.glass-overlay span {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fillProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Fade In Up & Left */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-left {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================
   RESPONSIVE DESIGN (MOBIL & TABLET)
========================================= */
@media (max-width: 1024px) {
    .content-wrapper {
        gap: 2rem;
    }
    
    h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    body {
        align-items: flex-start;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .text-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    p {
        max-width: 100%;
    }

    .image-section {
        justify-content: center;
        width: 100%;
    }

    .image-card {
        max-width: 350px;
        transform: none; /* Mobilde 3D rotasyonu kaldır */
    }
    
    .image-card:hover {
        transform: none;
    }
    
    .fade-in-left {
        transform: translateY(30px);
        animation-name: fadeInUp;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .image-card {
        max-width: 100%;
        border-radius: 16px;
    }
    
    .glass-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 1rem;
    }
}
