  /* Sayfaya özel stiller */
        .page-header {
            background: linear-gradient(135deg, var(--primary-burgundy) 0%, #2d1516 100%);
            padding: 2rem 0;
            margin-bottom: 2rem;
        }
        /* Proje Detay Kartı */
        .project-detail-card {
            background: white;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }
        .project-main-img {
            width: 100%;
            height: 450px;
            object-fit: cover;
        }
        .project-content {
            padding: 2rem;
        }
        .project-status-badge-lg {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }
        .status-devam-lg {
            background: linear-gradient(135deg, #f39c12, #e67e22);
            color: white;
        }
        .status-tamamlandi-lg {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: white;
        }
        .status-planlandi-lg {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
        }
        .project-title-lg {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-burgundy);
            margin-bottom: 1rem;
        }
        .project-meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 0.9rem;
        }
        .meta-item i {
            color: var(--primary-gold);
            font-size: 1.1rem;
        }
        /* Yazı Boyutu Kontrol Butonları - Proje Hakkında Üstünde */
        .text-size-control-section {
            background: #f8f5ef;
            border-radius: 60px;
            padding: 0.5rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .text-size-control-section span {
            padding: 0 0.8rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: #666;
        }
        .text-size-btn-sm {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: white;
            color: var(--primary-burgundy);
            border: 1px solid #e0d5c0;
            font-weight: bold;
            transition: all 0.3s;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }
        .text-size-btn-sm:hover {
            background: var(--primary-gold);
            color: white;
            border-color: var(--primary-gold);
            transform: scale(1.05);
        }
        .text-size-reset-sm {
            background: #fff;
        }
        .project-description-section {
            margin-top: 0.5rem;
        }
        .project-description-section h5 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-burgundy);
            margin-bottom: 1rem;
        }
        .project-description {
            font-size: 1rem;
            line-height: 1.8;
            color: #444;
        }
        /* Galeri */
        .gallery-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-burgundy);
            margin-bottom: 1.5rem;
            margin-top: 2rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
        .gallery-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-gold);
            border-radius: 3px;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
        }
        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 1 / 1;
            transition: all 0.4s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .gallery-item:hover img {
            transform: scale(1.08);
        }
        /* Paylaşım Butonları */
        .share-section {
            background: #f8f5ef;
            border-radius: 24px;
            padding: 1.2rem;
            margin-top: 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .share-buttons {
            display: flex;
            gap: 0.8rem;
        }
        .share-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s;
            text-decoration: none;
        }
        .share-btn:hover {
            transform: translateY(-3px);
            opacity: 0.9;
        }
        .share-facebook { background: #1877f2; }
        .share-twitter { background: #1da1f2; }
        .share-whatsapp { background: #25d366; }
        .share-linkedin { background: #0077b5; }
        /* Loading */
        .loading-spinner {
            text-align: center;
            padding: 4rem;
        }
        .error-message {
            text-align: center;
            padding: 4rem;
            background: white;
            border-radius: 30px;
        }
        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .project-main-img {
                height: 350px;
            }
            .project-title-lg {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .project-main-img {
                height: 250px;
            }
            .project-content {
                padding: 1.5rem;
            }
            .project-title-lg {
                font-size: 1.5rem;
            }
            .text-size-control-section {
                width: 100%;
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: repeat(1, 1fr);
            }
            .share-section {
                flex-direction: column;
                text-align: center;
            }
        }
        /* Yazı boyutu sınıfları */
        .text-small .project-description {
            font-size: 0.85rem !important;
            line-height: 1.6 !important;
        }
        .text-medium .project-description {
            font-size: 1rem !important;
            line-height: 1.7 !important;
        }
        .text-large .project-description {
            font-size: 1.15rem !important;
            line-height: 1.9 !important;
        }
        .text-xlarge .project-description {
            font-size: 1.3rem !important;
            line-height: 2.1 !important;
        }
        /* Meta bilgiler de yazı boyutundan etkilenmesin */
        .project-meta-info, .project-status-badge-lg, .project-title-lg, .gallery-title, .share-section span {
            transition: none;
        }