/* Enhanced Professional Styles for TÖZ */
:root {
    --bg-color: #030303;
    --text-color: #f8f8f8;
    --text-muted: #a0a0a0;
    --accent-red: #e63946;
    --accent-dark-red: #8b0000;
    --accent-gold: #d4af37;
    --card-bg: rgba(20, 20, 20, 0.4);
    --card-border: rgba(255, 255, 255, 0.08);
    
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.bg-effects {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.stage-light {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(3, 3, 3, 0) 65%);
    filter: blur(40px);
}

.ambient-glow {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, rgba(3, 3, 3, 0) 70%);
    filter: blur(50px);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 6%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(3, 3, 3, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 1rem 6%;
    background: rgba(3, 3, 3, 0.85);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* CSS Logo Tasarımı: Ana Konteyner */
.logo { display: flex; position: relative; justify-content: center; align-items: center; font-family: var(--font-sans); }
.box-wrap { display: flex; align-items: center; justify-content: center; }

.logo span { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    width: 50px; 
    height: 70px; 
    border: 3px solid var(--text-color); 
    border-radius: 4px; 
    margin: 0 5px; 
    font-weight: 800;
    font-size: 2rem;
}
.logo span.box-o { border-color: var(--accent-red) !important; color: var(--accent-red) !important; background-color: transparent; }

/* Varyant 2 (Önden Kesmeli - Aktif) */
.logo.logo-v2 .overlap-text { 
    position: absolute; 
    left: 50%;
    bottom: -6px; 
    transform: translateX(-50%);
    background: #030303; /* Navbar arka planına uyumlu (eskiden rgba(5,5,5,1)) */
    padding-top: 0; padding-bottom: 0; 
    padding-left: calc(6px + 0.35rem); padding-right: 6px; 
    font-size: 0.65rem; letter-spacing: 0.35rem; 
    color: #fff; font-weight: 500; z-index: 10; text-align: center; white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-color);
}
.nav-links a:hover::after {
    width: 100%;
}

.cta-btn {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 2rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 4px;
    backdrop-filter: blur(5px);
    text-decoration: none;
    display: inline-block;
}

.cta-btn.primary {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

.cta-btn:hover {
    background: var(--accent-red);
    color: var(--text-color);
    border-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.sub-headline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-decoration: line-through;
    opacity: 0.6;
}

.main-headline {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.highlight {
    color: var(--accent-red);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.03em;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-inline: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* Sections */
.section {
    padding: 10rem 6%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-badge {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.1;
}

.highlight-text {
    color: var(--text-color);
    font-weight: 600;
}

.text-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Abstract Visual CSS Art */
.visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 450px;
}

.abstract-mask {
    position: relative;
    width: 350px;
    height: 350px;
}

.circle {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    top: 50px;
    left: 20px;
    animation: rotate 25s linear infinite;
}

.square {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-red) 0%, transparent 100%);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    opacity: 0.6;
    mix-blend-mode: color-dodge;
    border-radius: 8px;
}

.glass-orb {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    bottom: -20px;
    left: 0;
}

.floating-text {
    position: absolute;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 5rem;
    color: rgba(255,255,255,0.18); /* Daha görünürlük için 0.05'ten 0.18 yapıldı */
    font-weight: 700;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
    text-shadow: 0 0 15px rgba(255,255,255,0.1);
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* CARDS Section */
.dark-section {
    background-color: #020202;
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.section-header {
    margin-bottom: 5rem;
}

.line {
    width: 80px;
    height: 2px;
    background: var(--accent-red);
    margin-top: 1.5rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.play-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.play-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.15);
}

.card-visual {
    height: 240px;
    position: relative;
    overflow: hidden;
    background: #050505; /* Fallback for missing images */
}

/* Cover Image için düzgün ölçekleme */
.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* Yüzlerin daha iyi görünmesi için üst odaklı */
    transition: transform 0.6s ease;
}

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

.visual-2 { background: #0a0a0a; }
.mist-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(80,80,90,0.2), rgba(5,5,5,1));
    filter: blur(5px);
}

.visual-3 { background: #110505; }
.spotlight-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.05), rgba(18,8,8,0.5) 55%, rgba(5,5,5,0.92)),
        radial-gradient(circle at 50% 12%, rgba(230,57,70,0.22), rgba(15,0,0,0) 38%);
    box-shadow: inset 0 0 50px #000;
}

.card-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Alt hizalama için yer tutar */
}

.card-body h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.date {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-gold);
    font-size: 0.95rem;
    display: block;
    margin-top: auto; /* Yazıları kutunun altına hizalar */
}

/* Premium Card Special Styling */
.premium-card {
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(10,5,5,0.9) 100%);
}
.premium-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 30px 60px rgba(139,0,0,0.2);
}
.premium-badge {
    font-size: 0.7rem;
    letter-spacing: 0.2rem;
    color: var(--accent-red);
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.premium-title {
    color: var(--accent-gold) !important;
    font-family: var(--font-serif) !important;
    font-size: 2.2rem !important;
    font-style: italic;
    font-weight: 400 !important;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 3rem;
}
.gallery-item {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    position: relative;
    cursor: zoom-in;
}
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2);
    transition: opacity 0.3s ease;
}
.gallery-item:hover::after {
    opacity: 0;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-item:hover img {
    transform: scale(1.08);
}

.lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1000;
}

.gallery-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.gallery-lightbox-dialog {
    position: relative;
    max-width: min(92vw, 1400px);
    width: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.gallery-lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 82vh;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    object-fit: contain;
}

.gallery-lightbox-caption {
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
    text-align: center;
}

.gallery-lightbox-close {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    background: rgba(10,10,10,0.82);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gallery-lightbox-close:hover {
    transform: scale(1.06);
    background: rgba(230, 57, 70, 0.9);
    border-color: rgba(230, 57, 70, 0.9);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 6rem 6% 2rem;
    background: #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand > a {
    display: inline-block !important;
}

.footer-brand .logo {
    justify-content: flex-start;
    width: fit-content;
    margin-bottom: 0.2rem;
}

.footer-brand .logo span {
    width: 42px;
    height: 60px;
    margin: 0 4px;
    font-size: 1.7rem;
}

.footer-brand .logo.logo-v2 .overlap-text {
    bottom: -5px;
    background: #000;
    padding-left: calc(5px + 0.3rem);
    padding-right: 5px;
    font-size: 0.56rem;
    letter-spacing: 0.3rem;
}

.footer-tagline {
    margin-top: 1rem;
    color: var(--text-muted);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
}

.footer h4 {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hover-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}
.hover-link:hover {
    color: var(--accent-gold);
    padding-left: 15px;
}
.hover-link::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-gold);
}
.hover-link:hover::before {
    opacity: 1;
    left: -5px;
}

.contact-info {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    letter-spacing: 0.05rem;
}

/* Animations Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 150ms; }
.reveal-delay-2 { transition-delay: 300ms; }
.reveal-delay-3 { transition-delay: 450ms; }
.reveal-delay-4 { transition-delay: 600ms; }
.reveal-delay-5 { transition-delay: 750ms; }

/* Responsive */
@media (max-width: 900px) {
    .grid-2 { grid-template-columns: 1fr; gap: 4rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .main-headline { font-size: 3.5rem; }
    .sm-hide { display: none; }
    .nav-links { display: none; } 
    .section-title { font-size: 2.5rem; }
    
    .hero { padding-top: 5rem; }
    .gallery-lightbox {
        padding: 1rem;
    }
    .gallery-lightbox-close {
        top: -0.5rem;
        right: -0.25rem;
    }
}
