@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

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

/* CSS Variables are now dynamically generated from admin panel */

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.menu-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.menu-link:hover,
.menu-link.active {
    color: var(--accent-green);
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.menu-link:hover::after,
.menu-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
}

.mobile-menu-link {
    display: block;
    padding: 15px 40px;
    font-size: 18px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--accent-green);
    background: rgba(124, 179, 66, 0.05);
    border-left-color: var(--accent-green);
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .header-container {
        padding: 0 20px;
    }
}


/* Main Content */
.main {
    padding-top: 80px;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    padding: 60px 50px 100px;
    text-align: center;
}

.hero-title {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.hero-subtitle {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
}

.filter-tag {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.filter-tag.active {
    color: var(--accent-green);
    border-bottom-color: var(--accent-green);
}

.filter-tag:hover {
    color: var(--accent-green);
}

/* Home About Section */
.home-about {
    padding: 100px 0;
    background: rgba(124, 179, 66, 0.02);
}

.home-about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-description {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-description p {
    margin-bottom: 20px;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.btn-link:hover {
    border-bottom-color: var(--accent-green);
}

.btn-link span {
    transition: transform 0.3s ease;
}

.btn-link:hover span {
    transform: translateX(5px);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 36px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .about-image img,
    .placeholder-image {
        height: 300px;
    }
}


/* Ana sayfa Portfolio Grid (eski) */
.portfolio {
    padding: 0 50px 100px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 249, 246, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.project-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: center;
}

.project-category {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Portfolio Images - Remove complex backgrounds for placeholder */
.portfolio-item:nth-child(1),
.portfolio-item:nth-child(2),
.portfolio-item:nth-child(3),
.portfolio-item:nth-child(4),
.portfolio-item:nth-child(5),
.portfolio-item:nth-child(6) {
    background: none;
}

.portfolio-item:nth-child(1)::before,
.portfolio-item:nth-child(2)::before,
.portfolio-item:nth-child(3)::before,
.portfolio-item:nth-child(4)::before,
.portfolio-item:nth-child(5)::before,
.portfolio-item:nth-child(6)::before {
    display: none;
}

/* Footer */
.footer {
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
}

.footer-contact {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-green);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 30px;
    }

    .hero {
        padding: 40px 20px 60px;
    }
    
    .hero-title {
        font-size: clamp(36px, 10vw, 60px);
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-filters {
        gap: 15px;
        margin-bottom: 60px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 30px;
    }

    .portfolio {
        padding: 0 30px 80px;
    }

    .hero {
        padding: 40px 30px 80px;
    }

    .hero-subtitle {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .fullscreen-menu {
        padding: 0 30px;
    }

    .menu-footer {
        left: 30px;
        flex-direction: column;
        gap: 10px;
    }

    .footer {
        padding: 30px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

/* Studio Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.section-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

/* Studio About */
.studio-about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 500;
    color: var(--accent-green);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    border-radius: 8px;
}

/* Studio Services */
.studio-services {
    padding: 100px 0;
    background: rgba(124, 179, 66, 0.02);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Studio Team */
.studio-team {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.team-member {
    text-align: center;
}

.member-photo {
    margin-bottom: 25px;
}

.photo-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto;
    color: #999;
}

.team-member h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.member-role {
    color: var(--accent-green);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* Studio Process */
.studio-process {
    padding: 100px 0;
    background: rgba(124, 179, 66, 0.02);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 64px;
    font-weight: 300;
    color: var(--accent-green);
    opacity: 0.3;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile Responsive for Studio */
@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid,
    .team-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .studio-about,
    .studio-services,
    .studio-team,
    .studio-process {
        padding: 60px 0;
    }
}

/* Journal Page Styles */
.blog-categories {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.category-filter {
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-filter:hover,
.category-filter.active {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: white;
}

.blog-posts {
    padding: 80px 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.post-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-green);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--text-light);
}

.post-title {
    margin-bottom: 15px;
}

.post-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--accent-green);
}

.post-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.post-author {
    font-size: 12px;
    color: var(--text-light);
}

.read-more {
    color: var(--accent-green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--text-primary);
}

.no-posts {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
}

.no-posts h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

/* Newsletter Section */
.newsletter {
    background: var(--accent-green);
    padding: 80px 0;
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
}

.newsletter p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto 20px;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--text-primary);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: rgba(42, 42, 42, 0.8);
}

.newsletter-note {
    font-size: 12px;
    opacity: 0.8;
}

/* Mobile Responsive for Journal */
@media (max-width: 768px) {
    .category-filters {
        gap: 15px;
        padding: 0 20px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-posts {
        padding: 60px 0;
    }
    
    .newsletter {
        padding: 60px 0;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form button {
        padding: 15px 25px;
    }
}

/* Blog Detail Page Styles */
.blog-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.breadcrumb {
    margin-bottom: 30px;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .separator {
    margin: 0 15px;
    color: #555;
}

.breadcrumb .current {
    color: #fff;
}

.blog-info {
    max-width: 800px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.blog-category {
    background: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.blog-date, .reading-time {
    color: #888;
}

.blog-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.blog-excerpt {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-author {
    color: #888;
    font-style: italic;
}

.blog-featured-image {
    padding: 60px 0;
}

.featured-image-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content-section {
    padding: 80px 0;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 60px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
    color: #fff;
    margin: 40px 0 20px;
    font-weight: 600;
}

.article-content h2 {
    font-size: 2rem;
}

.article-content h3 {
    font-size: 1.5rem;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-tags {
    padding: 30px 0;
    border-top: 1px solid #333;
    margin-bottom: 30px;
}

.article-tags h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-share {
    padding: 30px 0;
    border-top: 1px solid #333;
}

.article-share h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}

.share-btn.facebook {
    background: #4267b2;
    color: #fff;
}

.share-btn.linkedin {
    background: #0077b5;
    color: #fff;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.related-posts {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.related-post-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.related-post-image {
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.related-post-content {
    padding: 25px;
}

.related-post-category {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.related-post-title {
    margin: 15px 0 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.related-post-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: var(--primary-color);
}

.related-post-excerpt {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.related-post-meta {
    color: #888;
    font-size: 14px;
}

.back-section {
    padding: 60px 0;
}

.back-button-container {
    text-align: center;
}

.back-btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.back-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Blog Detail Responsive */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2.2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* 404 Error Page Styles */
.error-404 {
    padding: 150px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.error-message {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: #ccc;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #ccc;
}

.btn-secondary:hover {
    background: #ccc;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* 404 Responsive */
@media (max-width: 768px) {
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 200px;
        text-align: center;
    }
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 1fr; /* Form çok daha geniş */
    gap: 60px;
    align-items: flex-start;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-form-section {
    background: rgba(124, 179, 66, 0.03);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(124, 179, 66, 0.1);
}

.contact-form-section p,
.contact-info-section p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info-section {
    max-width: 320px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--accent-green);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #689f38;
    transform: translateY(-2px);
}

.form-success {
    text-align: center;
    padding: 40px;
    background: rgba(124, 179, 66, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
}

.success-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--accent-green);
}

.form-error {
    background: rgba(220, 53, 69, 0.1);
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #dc3545;
}

/* Contact Info */
.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.method-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 179, 66, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.method-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 14px;
}

.method-content a {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-green);
}

.response-time {
    background: rgba(124, 179, 66, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-green);
}

.response-time h3 {
    color: var(--accent-green);
    margin-bottom: 10px;
    font-size: 16px;
}

.response-time p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* FAQ Section */
.contact-faq {
    padding: 80px 0;
    background: rgba(124, 179, 66, 0.02);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* Map Section */
.contact-map {
    height: 300px;
    background: #f0f0f0;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.map-content {
    text-align: center;
    color: var(--text-secondary);
}

.map-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.map-content p {
    font-size: 14px;
    margin: 0;
}

/* Mobile Responsive for Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .method-icon {
        margin: 0 auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-content,
    .contact-faq {
        padding: 60px 0;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Category Detail Page Styles - Gallery Version */
.category-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.category-info {
    margin-bottom: 40px;
}

.category-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.category-description {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.category-stats {
    margin-bottom: 20px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.overlay-icon {
    font-size: 2rem;
    color: #fff;
}

.no-images {
    text-align: center;
    padding: 80px 20px;
}

.no-images h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.no-images p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.back-home-btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transform: translateY(-2px);
}

.back-section {
    padding: 60px 0;
    text-align: center;
}

.back-btn {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Advanced Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: 5% auto;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-image-container {
    position: relative;
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-info {
    padding: 25px;
    background: #111;
}

.image-counter {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.lightbox-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.lightbox-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.lightbox-meta {
    display: flex;
    gap: 20px;
    color: #888;
    font-size: 0.9rem;
}

.lightbox-meta span:not(:empty)::before {
    content: "• ";
    color: var(--primary-color);
    margin-right: 5px;
}

/* Category Responsive */
@media (max-width: 768px) {
    .category-title {
        font-size: 2.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .stats-grid {
        gap: 30px;
    }
    
    .lightbox-content {
        max-width: 95%;
        margin: 2.5% auto;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
}


.breadcrumb-nav {
    font-size: 14px;
    color: var(--text-secondary);
}

.breadcrumb-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--accent-green);
}

.separator {
    margin: 0 10px;
    color: var(--text-light);
}

.current {
    color: var(--accent-green);
    font-weight: 500;
}

.category-stats {
    padding: 40px 0;
    background: rgba(124, 179, 66, 0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid .stat-item {
    text-align: center;
}

.stats-grid .stat-number {
    font-size: 32px;
    font-weight: 500;
    color: var(--accent-green);
    margin-bottom: 5px;
}

.stats-grid .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Category Gallery */
.category-gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.gallery-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    text-align: center;
    padding: 20px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 42, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.overlay-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.view-gallery {
    color: var(--accent-green);
    font-weight: 500;
    font-size: 14px;
}

.gallery-info {
    padding: 30px;
}

.project-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--text-light);
}

.view-project-btn {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.view-project-btn:hover {
    background: #689f38;
}

.no-projects {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
}

.no-projects h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.back-home-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--accent-green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.back-home-btn:hover {
    background: #689f38;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content {
    background: white;
    border-radius: 12px;
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lightbox-header {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lightbox-header h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.lightbox-close {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--text-primary);
}

.lightbox-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lightbox-main {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    padding: 30px;
    overflow: hidden;
}

.lightbox-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.lightbox-info {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    height: fit-content;
}

.lightbox-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.image-counter {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.lightbox-thumbnails {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
    background: #f8f8f8;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: var(--accent-green);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Related Categories */
.related-categories {
    padding: 80px 0;
    background: rgba(124, 179, 66, 0.02);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.category-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.view-category {
    color: var(--accent-green);
    font-weight: 500;
    font-size: 14px;
}

/* Mobile Responsive for Category */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lightbox-main {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .lightbox-content {
        max-height: 95vh;
    }
    
    .lightbox-header {
        padding: 15px 20px;
    }
    
    .lightbox-thumbnails {
        padding: 15px 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-gallery,
    .related-categories {
        padding: 60px 0;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Skills Section */
.studio-skills {
    padding: 100px 0;
    background: rgba(124, 179, 66, 0.02);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.skill-category {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.category-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-green);
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-green);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-item {
    position: relative;
}

.skill-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-header i {
    color: var(--accent-green);
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
}

.skill-name {
    font-weight: 500;
    color: var(--text-primary);
    flex: 1;
}

.skill-percentage {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-green);
}

.skill-bar {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green), #8bc34a);
    border-radius: 3px;
    transition: width 0.8s ease;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0 3px 3px 0;
}

.no-skills {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

/* Studio About Section Enhancements */
.studio-about {
    padding: 100px 0;
}

.about-content {
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-content h2 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(124, 179, 66, 0.05);
    border-radius: 12px;
}

.mission, .vision {
    text-align: left;
}

.mission h4, .vision h4 {
    color: var(--accent-green);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mission p, .vision p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.studio-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.studio-image:hover {
    transform: scale(1.02);
}

/* Mobile Responsive for Skills */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .studio-skills {
        padding: 60px 0;
    }
    
    .studio-about {
        padding: 60px 0;
    }
}

/* ===== GALERİ CSS TEMİZLENDİ - INLINE STYLES KULLANILIYOR ===== */

/* Portfolio Gallery Styles */
.portfolio-categories {
    padding: 80px 0;
}

.portfolio-gallery {
    padding: 80px 0;
}

.breadcrumb-nav {
    text-align: center;
    margin-bottom: 40px;
}

.breadcrumb-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    background: rgba(124, 179, 66, 0.1);
}

/* Gallery Images Grid */
.gallery-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-image-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image-item:hover .gallery-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 16px 16px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-image-item:hover .image-overlay {
    transform: translateY(0);
}

.image-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.image-zoom {
    font-size: 24px;
    text-align: center;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-info {
    margin-top: 20px;
    text-align: center;
    color: white;
}

.lightbox-info h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.lightbox-info p {
    font-size: 14px;
    opacity: 0.8;
}

.no-categories,
.no-images {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.no-categories p,
.no-images p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Gallery Mobile Responsive */
@media (max-width: 768px) {
    .home-gallery,
    .portfolio-categories,
    .portfolio-gallery {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .gallery-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .gallery-category-item {
        aspect-ratio: 16/10;
    }

    .category-name {
        font-size: 20px;
    }

    .gallery-images-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .lightbox-prev {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-next {
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-image {
        max-height: 70vh;
    }
}