/* Gallery Page - Projelerimizden Bazıları (canlı site: noradekorasyon.com.tr/galeri) */

/* Page Header */
.gallery-projects-section .page-header,
.gallery .page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Projelerimizden Bazıları */
.gallery-projects-section {
    padding: 80px 0 100px;
    background: #fff;
}

.gallery-section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.gallery-projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-project-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.gallery-project-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.gallery-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-project-card:hover .gallery-project-image img {
    transform: scale(1.08);
}

.gallery-project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-project-card:hover .gallery-project-overlay {
    opacity: 1;
}

.gallery-project-incele {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    padding: 0.6rem 1.25rem;
    border: 2px solid #fff;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease;
}

.gallery-project-card:hover .gallery-project-incele {
    background: #ff6b35;
    border-color: #ff6b35;
}

.gallery-project-title {
    margin: 0;
    padding: 1rem 1rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    line-height: 1.3;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: white;
    color: #e74c3c;
}

.cta-section .cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .gallery-section-title {
        font-size: 1.35rem;
        margin-bottom: 2rem;
    }

    .gallery-projects-grid {
        gap: 1.25rem;
    }

    .gallery-project-image {
        height: 220px;
    }

    .gallery-project-title {
        font-size: 1rem;
        padding: 0.85rem 0.75rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-projects-grid {
        grid-template-columns: 1fr;
    }

    .gallery-project-image {
        height: 260px;
    }
}
