:root {
            --primary-color: #f0e6d2;
            --accent-blue: #f0e6d2;
            --dark-bg: #62743e;
            --secondary-bg: #42362a;
            --card-bg: #2A2A20;
            --text-color: #f0e6d2;
            --text-secondary: #cfcbc4;
            --font-display: 'Teko', sans-serif;
            --font-body: 'Poppins', sans-serif;
        }

        /* Preloader */

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.8;
            overflow-x: hidden;
        }
        .container {
            width: 90%;
            max-width: 1100px;
            margin: auto;
            padding: 120px 0;
        }

        /* Navigasyon Menüsü */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.4s ease, padding 0.4s ease;
        }
        .navbar.scrolled {
            background-color: var(--secondary-bg);
            backdrop-filter: blur(10px);
            padding: 15px 5%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-logo {
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--text-color);
            text-decoration: none;
            letter-spacing: 1px;
        }
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            margin-left: 30px;
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after { width: 100%; }

        /* Karşılama Ekranı */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-color);
            background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)); /* Removed image URL */
            background-color: var(--dark-bg); /* Solid fallback color */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        .hero-content { z-index: 2; }

        /* New Shatter Animation */
        .shatter-container {
            position: relative;
            width: 100%;
            height: 120px; /* Adjust to fit font size */
            perspective: 500px;
        }
        .shatter-layer, .shatter-original {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            margin: 0; /* Add this to remove default h1 margin */
            font-family: var(--font-display);
            font-size: 7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: white;
            line-height: 1;
            transform-style: preserve-3d;
        }
        .shatter-original {
            opacity: 0;
            transition: opacity 0.5s ease 0.6s; /* Fade in after shatter */
        }
        .shatter-container.animate .shatter-original {
            opacity: 1;
        }

        /* Shard Definitions */
        .shard1 { clip-path: polygon(0% 0%, 50% 0%, 50% 50%, 0% 50%); }
        .shard2 { clip-path: polygon(50% 0%, 100% 0%, 100% 50%, 50% 50%); }
        .shard3 { clip-path: polygon(0% 50%, 50% 50%, 50% 100%, 0% 100%); }
        .shard4 { clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 50% 100%); }

        /* Animation Trigger */
        .shatter-container.animate .shatter-layer {
            animation: shatter-out 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
        }

        @keyframes shatter-out {
            0% {
                opacity: 1;
                transform: translate(0, 0) rotate(0) scale(1);
            }
            100% {
                opacity: 0;
                transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--r, 0)) scale(0.5);
            }
        }

        /* Individual Shard Animation Parameters */
        .shatter-container.animate .shard1 { --x: -150px; --y: -80px; --r: -30deg; }
        .shatter-container.animate .shard2 { --x: 150px; --y: -80px; --r: 30deg; }
        .shatter-container.animate .shard3 { --x: -150px; --y: 80px; --r: 30deg; }
        .shatter-container.animate .shard4 { --x: 150px; --y: 80px; --r: -30deg; }
        .hero h1 {
            font-family: var(--font-display);
            font-size: 7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: white;
            line-height: 1;
        }
        .hero p {
            font-size: 1.6rem;
            font-weight: 300;
            color: var(--primary-color);
            margin-top: 15px;
            letter-spacing: 1px;
        }
        .scroll-indicator {
            position: absolute; bottom: 40px; left: 50%;
            transform: translateX(-50%); z-index: 2;
            animation: bounce 2.5s infinite;
        }
        .scroll-indicator a {
            color: var(--text-color); text-decoration: none; font-size: 14px;
            display: flex; flex-direction: column; align-items: center;
        }
        .scroll-indicator .arrow { width: 24px; height: 24px; margin-top: 8px; }

        /* Ortak Bölüm Başlıkları */
        .section-title {
            text-align: center; font-family: var(--font-display);
            font-size: 4rem; margin-bottom: 10px; letter-spacing: 1px;
            color: var(--primary-color);
        }
        .section-subtitle {
            text-align: center; font-size: 1.2rem;
            color: var(--text-secondary); margin-bottom: 70px;
            font-weight: 300; max-width: 600px; margin-left: auto; margin-right: auto;
        }

        /* Hakkında Bölümü */
        .about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
        .about-image img {
            width: 100%; border-radius: 15px;
            box-shadow: 0 15px 35px rgba(240, 230, 210, 0.1);
            transition: transform 0.4s ease;
        }
        .about-image img:hover { transform: scale(1.05); }
        .about-text p { margin-bottom: 20px; color: var(--text-secondary); }
        .about-text strong { color: var(--text-color); font-weight: 600; }

        /* Felsefem Bölümü */
        #philosophy { background-color: var(--secondary-bg); }
        .philosophy-content {
            text-align: left; /* Changed to left for readability */
            max-width: 800px;
            margin: auto;
        }
        .philosophy-content .icon {
            font-size: 4rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center; /* Keep icon centered */
            width: 100%; /* Ensure icon takes full width to center */
        }
        .philosophy-content h3 { /* Added style for h3 */
            color: var(--dark-bg); /* Darker color for headings */
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .philosophy-content p { /* Apply to p */
            font-size: 1.1rem;
            color: #8bab4c;
            line-height: 1.8; /* Slightly reduced line height for better density */
            margin-bottom: 15px; /* Add margin for spacing */
        }
        .philosophy-content ul li { /* Added style for ul li */
            font-size: 1.1rem;
            color: #8bab4c;
            line-height: 1.8;
            margin-bottom: 5px;
        }

        /* Uzmanlık Alanları */
        #expertise { background-color: var(--dark-bg); }
        .expertise-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .expertise-card {
            background-color: var(--card-bg); padding: 40px; border-radius: 10px;
            border: 4px solid transparent;
            border-bottom-color: var(--accent-blue);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }
        .expertise-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(240, 230, 210, 0.1);
            border-bottom-color: var(--primary-color);
        }
        .expertise-card .icon { font-size: 3rem; margin-bottom: 20px; color: var(--accent-blue); }
        .expertise-card h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 15px; }
        .expertise-card p { color: var(--text-secondary); font-size: 0.95rem; }

        /* YENİ: Başarı Hikayeleri */
        #testimonials { background-color: var(--secondary-bg); }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        .testimonial-card {
            background: var(--card-bg); padding: 40px; border-radius: 10px;
            position: relative;
        }
        .testimonial-card::before {
            content: '\f10d'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
            position: absolute; top: 20px; left: 30px;
            font-size: 3rem; color: rgba(240, 230, 210, 0.05);
        }
        .testimonial-card p { font-style: italic; color: var(--text-secondary); margin-bottom: 20px; }
        .client-info { text-align: right; }
        .client-info h4 { font-size: 1.1rem; color: var(--text-color); }
        .client-info span { font-size: 0.9rem; color: var(--primary-color); font-weight: 600; }
        
        /* CTA Bölümü */
        #cta {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)); /* Removed image URL */
            background-color: var(--dark-bg); /* Solid fallback color */
            background-size: cover; background-position: center; background-attachment: fixed;
            text-align: center;
        }
        #cta h2 { font-size: 3rem; }
        .contact-links {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary-color);
            color: #62743e;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
        }
        .contact-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(240, 230, 210, 0.3);
            background-color: #d4c8b0;
        }
        .contact-btn i {
            font-size: 1.4rem;
        }

        /* YENİ: Galeri Bölümü */
        #gallery { background-color: var(--secondary-bg); }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .gallery-item img:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* YENİ: SSS Bölümü */
        #faq { background-color: var(--secondary-bg); }
        .faq-item {
            background: var(--card-bg);
            margin-bottom: 10px;
            border-radius: 5px;
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 20px;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-color);
            cursor: pointer;
            position: relative;
        }
        .faq-question::after {
            content: '\f078'; /* Font Awesome down arrow */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 20px;
            transition: transform 0.3s ease;
        }
        .faq-question.active::after {
             transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }
        .faq-answer p {
            padding: 0 20px 20px;
            color: var(--text-secondary);
        }


        /* Footer */
        footer {
            background-color: var(--secondary-bg); text-align: center; padding: 40px 20px;
        }
        .social-links a {
            color: var(--text-secondary); font-size: 1.5rem; margin: 0 15px;
            transition: color 0.3s ease;
        }
        .social-links a:hover { color: var(--primary-color); }
        footer p { margin-top: 20px; font-size: 0.9rem; color: var(--text-secondary); }

        /* Animasyonlar */
        .reveal {
            position: relative;
            transform: translateY(100px);
            opacity: 0;
            transition: 1s all ease;
        }
        .reveal.active {
            transform: translateY(0);
            opacity: 1;
        }
        @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); } 40% { transform: translate(-50%, -15px); } 60% { transform: translate(-50%, -7px); } }

        .menu-icon {
            display: none; /* Hide by default on desktop */
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1100; /* Make sure it's on top */
        }

        /* Mobil Uyum */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%; /* Start off-screen */
                height: 100vh;
                width: 70%;
                max-width: 320px;
                background-color: var(--secondary-bg);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease-in-out;
                padding: 0;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
                z-index: 1050; /* Ensure menu is on top of content */
            }

            .nav-links.active {
                right: 0; /* Slide in */
            }

            .nav-links a {
                display: block;
                width: 80%;
                text-align: center;
                margin: 15px 0;
                padding: 10px 0;
                font-size: 1.3rem;
                border-radius: 5px;
                transition: background-color 0.2s ease-in-out;
            }

            .nav-links a:hover {
                background-color: rgba(0,0,0,0.1);
            }

            .menu-icon {
                display: block; /* Show hamburger on mobile */
                z-index: 1100; /* Ensure menu icon is on top of the overlay */
            }

            .hero h1 { font-size: 4rem; }
            .hero p { font-size: 1.2rem; }
            .container { padding: 80px 0; }
            .about-grid { grid-template-columns: 1fr; text-align: center; }
            .about-image { margin: 0 auto 30px auto; max-width: 300px; }
            .section-title { font-size: 3rem; }
        }

        /* YENİ: Blog Bölümü */
        #blog { background-color: var(--dark-bg); }
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        .blog-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(240, 230, 210, 0.1);
        }
        .blog-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .blog-content {
            padding: 30px;
        }
        .blog-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        .blog-content p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        .read-more {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        /* New Blog Page Design */
        .blog-header {
            margin-top: 100px; /* Pushes header down to clear fixed navbar */
            height: 60vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-color);
            background-size: cover;
            background-position: center;
        }
        .blog-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(18,18,18,1) 0%, rgba(18,18,18,0.5) 100%);
            z-index: 1;
        }
        .blog-header-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        .blog-header .blog-post-title {
            font-family: var(--font-display);
            font-size: 3.8rem; /* Reduced font size for long titles */
            color: white;
            margin: 0;
        }
        .blog-header .blog-post-meta {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-top: 15px;
        }

        .blog-content-area {
            width: 90%;
            max-width: 800px;
            margin: auto;
            padding: 80px 0;
        }
        .blog-content-area h3 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-top: 50px;
            margin-bottom: 25px;
        }
        .blog-content-area p,
        .blog-content-area li {
            margin-bottom: 25px;
            line-height: 2;
            font-size: 1.1rem;
            color: var(--text-secondary);
        }
        .blog-content-area ul {
            list-style-position: inside;
            padding-left: 20px;
        }
        .blog-content-area .back-link {
            display: inline-block;
            margin-top: 50px;
            font-size: 1.1rem;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }
        .blog-content-area .back-link:hover {
            text-decoration: underline;
        }

        .blog-content-area .blog-post-title {
            font-family: var(--font-display);
            font-size: 3.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .blog-content-area h3 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-top: 50px;
            margin-bottom: 25px;
        }

        .blog-content-area p,
        .blog-content-area li {
            margin-bottom: 25px;
            line-height: 2;
            font-size: 1.1rem;
            color: var(--text-secondary);
        }

        .blog-content-area ul {
            list-style-position: inside;
            padding-left: 20px;
        }

        .blog-content-area .back-link {
            display: inline-block;
            margin-top: 50px;
            font-size: 1.1rem;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        .blog-content-area .back-link:hover {
            text-decoration: underline;
        }

        /* Fix for blog pages being under navbar */
        body.blog-page-body {
            /* This is now handled by margin-top on .blog-header */
        }

        @media (max-width: 768px) {
            .blog-header {
                height: 50vh;
            }
            .blog-header .blog-post-title {
                font-size: 2.8rem;
            }
            .blog-content-area {
                padding: 60px 0;
            }
        }

/* Olimpik Kaldiris Ozet Duzenlemesi */
.olimpik-kaldiris-ozet {
    text-align: center;
}

.olimpik-kaldiris-ozet .contact-btn {
    margin-top: 30px;
}

/* FOUC (Flash of Unstyled Content) önlemek için */
body.hidden-body {
    overflow: hidden; /* Kaydırmayı engeller */
    visibility: hidden; /* Tamamen gizler */
    opacity: 0; /* Geçiş için başlangıç opaklığı */
}