/* 
 * Veysel Erol - Asymmetric Architectural Editorial Tasarım Sistemi CSS
 * URL: https://veyselerol.com
 */

:root {
    --brand-dark: #08080A;
    --brand-darker: #040405;
    --brand-navy: #0F0F12;
    --brand-sand: #D4C5B9;
    --brand-champagne: #E6DFD5;
    --brand-copper: #C58B75;
    --brand-carbon: #16161A;
}

/* Tipografi Kurulumu */
.font-serif-elite {
    font-family: 'Instrument Serif', 'Playfair Display', serif;
}

.font-sans-tech {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
}

/* Yumuşak Kaydırma Efekti */
html {
    scroll-behavior: smooth;
    background-color: var(--brand-dark);
}

/* Şık Özel Kaydırma Çubuğu (Scrollbar) */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--brand-darker);
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-sand);
}

/* Arka Plan Grid Nokta Deseni (İnce Mimari Blueprint) */
.bg-grid-dots {
    background-size: 32px 32px;
    background-image: radial-gradient(rgba(212, 197, 185, 0.03) 1px, transparent 1px);
}

/* İnce Çizgi Grid Deseni (Teknik CAD Eskizi Vibe) */
.bg-grid-lines {
    background-size: 60px 60px;
    background-image: 
        linear-gradient(to right, rgba(212, 197, 185, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(212, 197, 185, 0.02) 1px, transparent 1px);
}

/* Asimetrik Blueprint Çerçeveleri */
.border-blueprint {
    border: 1px solid rgba(212, 197, 185, 0.06);
}
.border-blueprint-light {
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Lüks Mermer/Cam Kart Tasarımı */
.editorial-card {
    background: rgba(15, 15, 18, 0.4);
    border: 1px solid rgba(212, 197, 185, 0.06);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.editorial-card:hover {
    border-color: rgba(212, 197, 185, 0.25);
    background: rgba(15, 15, 18, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
}

/* Şık Buton Mikroyansıma Efekti (Editorial Shimmer) */
.btn-editorial-shimmer {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-editorial-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: 0.8s;
}
.btn-editorial-shimmer:hover::before {
    left: 150%;
}
.btn-editorial-shimmer:hover {
    letter-spacing: 0.05em;
}

/* SSS Akordeon Animasyonu (Editorial Stil) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-active .faq-answer {
    max-height: 500px;
    padding-top: 1.25rem;
}
.faq-active .faq-chevron {
    transform: rotate(180deg) scale(1.1);
    color: var(--brand-sand);
}

/* Blog İçerik Optimize Edicileri */
.blog-content-area p {
    margin-bottom: 1.75rem;
    line-height: 1.85;
    color: #a1a1aa; /* zinc-400 */
    font-size: 1rem;
}
.blog-content-area h2 {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 2.25rem;
    color: var(--brand-champagne);
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    border-bottom: 1px solid rgba(212, 197, 185, 0.1);
    padding-bottom: 0.5rem;
}
.blog-content-area h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 1.35rem;
    color: #ffffff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.blog-content-area ul, .blog-content-area ol {
    margin-bottom: 1.75rem;
    padding-left: 1.75rem;
    color: #a1a1aa;
}
.blog-content-area ul {
    list-style-type: square;
}
.blog-content-area ol {
    list-style-type: decimal;
}
.blog-content-area li {
    margin-bottom: 0.75rem;
}
.blog-content-area strong {
    color: #ffffff;
    font-weight: 600;
}

/* Editoryal Tablolar */
.blog-content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 197, 185, 0.08);
}
.blog-content-area th, .blog-content-area td {
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(212, 197, 185, 0.08);
}
.blog-content-area th {
    background-color: var(--brand-darker);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    color: var(--brand-sand);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}
.blog-content-area tr:nth-child(even) {
    background-color: rgba(212, 197, 185, 0.01);
}

/* İnce Yansıma Parıltısı */
.champagne-glow {
    position: relative;
}
.champagne-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 197, 185, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
