/* TAM YAPI - Projeler Sayfası CSS */

/*==========================================
    Genel Stiller
============================================*/
.section-gap {
    padding: 90px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h4 {
    color: #F18A3A;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.section-title p {
    color: #777;
    max-width: 650px;
    margin: 0 auto;
}

.primary-btn {
    display: inline-block;
    background: #F18A3A;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #F18A3A;
}

.primary-btn:hover {
    background: transparent;
    color: #F18A3A;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(247, 99, 27, 0.3);
}

/*==========================================
    Yeni Öne Çıkan Projeler Bölümü
============================================*/
.modern-projects-showcase {
    position: relative;
    margin-bottom: 30px;
}

.showcase-main-project,
.showcase-secondary-project {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.showcase-main-project:hover,
.showcase-secondary-project:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.showcase-image {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.showcase-main-project .showcase-image {
    height: 600px;
}

.showcase-secondary-project .showcase-image {
    height: 285px;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
}

.showcase-main-project:hover .showcase-image img,
.showcase-secondary-project:hover .showcase-image img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1), transparent);
    transition: all 0.4s ease;
}

.showcase-main-project:hover .showcase-overlay,
.showcase-secondary-project:hover .showcase-overlay {
    background: linear-gradient(to top, rgba(241, 138, 58, 0.9), rgba(0, 0, 0, 0.3), transparent);
}

.showcase-content {
    position: relative;
    z-index: 2;
}

.showcase-content h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.showcase-content h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.showcase-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 16px;
}

.project-detail-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.project-detail-link span {
    margin-right: 10px;
}

.project-detail-link i {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.showcase-main-project:hover .project-detail-link,
.showcase-secondary-project:hover .project-detail-link {
    color: #fff;
}

.showcase-main-project:hover .project-detail-link i,
.showcase-secondary-project:hover .project-detail-link i {
    background: #fff;
    color: #F18A3A;
    transform: translateX(5px);
}

.scroll-to {
    cursor: pointer;
}

/* AOS Animasyon Destekleri */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Responsive Ayarları */
@media (max-width: 1199px) {
    .showcase-main-project .showcase-image {
        height: 500px;
    }
    
    .showcase-secondary-project .showcase-image {
        height: 235px;
    }
}

@media (max-width: 991px) {
    .showcase-main-project .showcase-image {
        height: 400px;
    }
    
    .showcase-secondary-project .showcase-image {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .section-gap {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .featured-project-thumb img {
        height: 280px;
    }
    
    .project-overlay {
        padding: 20px;
    }
    
    .project-overlay h3 {
        font-size: 20px;
    }
    
    .stat-number, .stat-number span {
        font-size: 32px;
    }
    
    .project-card.no-image {
        height: 250px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .project-thumbnail img {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .section-gap {
        padding: 50px 0;
    }
    
    .filter-btn {
        padding: 5px 10px;
    }
    
    .project-card.no-image .project-info h4 {
        font-size: 18px;
    }
    
    .advanced-filter .nice-select, 
    .search-projects input {
        height: 40px;
    }
}

/*==========================================
    Proje İstatistikleri
============================================*/
.project-stat-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.project-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 40px;
    color: #F18A3A;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-number span {
    font-size: 48px;
    color: #F18A3A;
}

.project-stat-card h4 {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/*==========================================
    Proje Portföy Alanı
============================================*/
.project-portfolio-area {
    background-color: #f9f9f9;
    position: relative;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #e8e8e8;
    color: #888;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.filter-btn:hover, .filter-btn.active {
    background: #F18A3A;
    color: #fff;
    border-color: #F18A3A;
}

.advanced-filter {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.nice-select {
    width: 100%;
    height: 50px;
    line-height: 48px;
    padding: 0 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.search-projects {
    position: relative;
}

.search-projects input {
    height: 50px;
    padding-right: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background: #f9f9f9;
}

.search-projects button {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    background: #F18A3A;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-projects button:hover {
    background: #e05411;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.portfolio-item {
    margin-bottom: 0;
    transition: all 0.3s ease;
}

/* Görsel İçeren Proje Kartları */
.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background: #fff;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-thumbnail {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.project-thumbnail .main-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
}

.project-thumbnail .secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 0;
}

.project-card:hover .project-thumbnail .main-image {
    opacity: 0;
}

.project-card:hover .project-thumbnail .secondary-image {
    opacity: 1;
}

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

.project-card:hover .project-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 18px;
}

.view-project-btn {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-project-btn:hover {
    background: #F18A3A;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-info {
    padding: 20px;
}

.project-info h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.project-meta {
    margin-bottom: 10px;
}

.project-meta span {
    display: inline-block;
    margin-right: 15px;
    font-size: 13px;
    color: #777;
}

.project-meta i {
    margin-right: 5px;
    color: #F18A3A;
}

.project-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Görsel İçermeyen Proje Kartları */
.project-card.no-image {
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.project-icon {
    font-size: 40px;
    color: #F18A3A;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.project-card.no-image:hover .project-icon {
    transform: scale(1.2);
}

.project-card.no-image .project-info {
    padding: 0;
}

.project-card.no-image h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.project-card.no-image .view-project-btn {
    margin-top: 15px;
    background: #f9f9f9;
    color: #333;
}

.project-card.no-image:hover .view-project-btn {
    background: #F18A3A;
    color: #fff;
}

/* Load More Button */
#loadMoreProjects {
    background: #F18A3A;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#loadMoreProjects:hover {
    background: #e07526;
    transform: translateY(-3px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/*==========================================
    Proje CTA Bölümü
============================================*/
.project-cta-area {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/cta-bg.webp') no-repeat center center;
    background-size: cover;
    position: relative;
}

.cta-content h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/*==========================================
    Responsive Styles
============================================*/
@media (max-width: 1199px) {
    .featured-project-thumb img {
        height: 350px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .project-overlay h3 {
        font-size: 22px;
    }
    
    .cta-content h2 {
        font-size: 30px;
    }
    
    .project-thumbnail img {
        height: 280px;
    }
}

@media (max-width: 991px) {
    .section-gap {
        padding: 70px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .featured-project-thumb img {
        height: 300px;
    }
    
    .project-stat-card {
        margin-bottom: 30px;
    }
    
    .stat-number, .stat-number span {
        font-size: 36px;
    }
    
    .cta-button {
        text-align: left;
        margin-top: 20px;
    }
    
    .project-thumbnail img {
        height: 250px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
}

@media (max-width: 575px) {
    .section-gap {
        padding: 50px 0;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 13px;
    }
    
    .project-card.no-image .project-info h4 {
        font-size: 16px;
    }
    
    .advanced-filter .nice-select, 
    .advanced-filter .search-projects input {
        margin-bottom: 15px;
    }
    
    .project-modal-container {
        width: 95%;
        padding: 15px;
    }
}

/* Animasyon Sınıfları */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

.zoomIn {
    animation-name: zoomIn;
}

@keyframes slideInRight {
    from {
        transform: translate3d(50px, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    animation-name: slideInRight;
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-50px, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    animation-name: slideInLeft;
}

/* Sınıf tabanlı animasyon gecikmeleri */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/*==========================================
    Animations
============================================*/

/* Hover efektleri - farklı varyasyonlar */
/* Varyasyon 1: Soldan sağa kayma */
.project-card.slide-effect .main-image {
    transform-origin: left center;
}

.project-card.slide-effect .secondary-image {
    transform-origin: right center;
    transform: scale(1.1) translateX(-30%);
}

.project-card.slide-effect:hover .main-image {
    opacity: 0;
    transform: scale(1.1) translateX(30%);
}

.project-card.slide-effect:hover .secondary-image {
    opacity: 1;
    transform: scale(1) translateX(0);
}

/* Varyasyon 2: Yukarıdan aşağıya kayma */
.project-card.vertical-slide .main-image {
    transform-origin: top center;
}

.project-card.vertical-slide .secondary-image {
    transform-origin: bottom center;
    transform: scale(1.1) translateY(-30%);
}

.project-card.vertical-slide:hover .main-image {
    opacity: 0;
    transform: scale(1.1) translateY(30%);
}

.project-card.vertical-slide:hover .secondary-image {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Varyasyon 3: Yakınlaştırma/Uzaklaştırma */
.project-card.zoom-effect .main-image {
    transform-origin: center;
}

.project-card.zoom-effect .secondary-image {
    transform: scale(1.3);
}

.project-card.zoom-effect:hover .main-image {
    opacity: 0;
    transform: scale(0.9);
}

.project-card.zoom-effect:hover .secondary-image {
    opacity: 1;
    transform: scale(1);
}

/* Varyasyon 4: Flip efekti */
.project-card.flip-effect .project-thumbnail {
    perspective: 1000px;
}

.project-card.flip-effect .main-image,
.project-card.flip-effect .secondary-image {
    backface-visibility: hidden;
    transition: all 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-card.flip-effect .secondary-image {
    transform: rotateY(180deg);
}

.project-card.flip-effect:hover .main-image {
    opacity: 0;
    transform: rotateY(-180deg);
}

.project-card.flip-effect:hover .secondary-image {
    opacity: 1;
    transform: rotateY(0deg);
}

/* Varyasyon 5: Crossfade / Solma */
.project-card.crossfade .main-image,
.project-card.crossfade .secondary-image {
    transition: all 0.5s ease;
}

.project-card.crossfade:hover .main-image {
    opacity: 0;
}

.project-card.crossfade:hover .secondary-image {
    opacity: 1;
    transform: scale(1);
}

/* Ana proje fotoğrafına ek olarak küçük bir ikinci fotoğraf gösterimi */
.project-card.picture-in-picture .project-thumbnail {
    overflow: visible;
}

.project-card.picture-in-picture .secondary-image-container {
    position: absolute;
    width: 35%;
    height: 35%;
    bottom: -10%;
    right: -10%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 5;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    border: 3px solid #fff;
}

.project-card.picture-in-picture .secondary-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card.picture-in-picture:hover .secondary-image-container {
    opacity: 1;
    transform: translateY(0);
}

/* Auto-hover etkileri için stil tanımlamaları */
.project-card.slide-effect.auto-hover .main-image {
    opacity: 0;
    transform: scale(1.1) translateX(30%);
}

.project-card.slide-effect.auto-hover .secondary-image {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.project-card.vertical-slide.auto-hover .main-image {
    opacity: 0;
    transform: scale(1.1) translateY(30%);
}

.project-card.vertical-slide.auto-hover .secondary-image {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.project-card.zoom-effect.auto-hover .main-image {
    opacity: 0;
    transform: scale(0.9);
}

.project-card.zoom-effect.auto-hover .secondary-image {
    opacity: 1;
    transform: scale(1);
}

.project-card.flip-effect.auto-hover .main-image {
    opacity: 0;
    transform: rotateY(-180deg);
}

.project-card.flip-effect.auto-hover .secondary-image {
    opacity: 1;
    transform: rotateY(0deg);
}

.project-card.crossfade.auto-hover .main-image {
    opacity: 0;
}

.project-card.crossfade.auto-hover .secondary-image {
    opacity: 1;
    transform: scale(1);
}

.project-card.picture-in-picture .secondary-image-container.active {
    opacity: 1;
    transform: translateY(0);
}

/* İkincil resim gösterim animasyonları */
@keyframes pulseImage {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.project-card.picture-in-picture:hover .secondary-image-container {
    animation: pulseImage 2s infinite ease-in-out;
}



/* Tam Ekran Galeri */
.showcase-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.showcase-gallery.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-content {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1200px;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
    z-index: 5;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    box-sizing: border-box;
    transform: translateY(-50%);
    z-index: 5;
}

.gallery-prev,
.gallery-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.gallery-prev svg,
.gallery-next svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.gallery-close:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.gallery-close svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Detaylı bilgilerin gösterildiği kısımdaki butonları ayrıca stillendir */
.project-info a.view-project-btn {
    margin-top: 15px;
    display: inline-block;
    background: #F18A3A;
    color: #fff;
}

/* Galeri için Cursor Pointer */
.project-detail-link, 
.view-project-btn,
.showcase-image,
.project-thumbnail {
  cursor: pointer;
}

/* Tam Ekran Galeri - Projects Sayfası İçin */
.projects-fullscreen-gallery {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.projects-fullscreen-gallery.active {
  opacity: 1;
  visibility: visible;
}

.projects-gallery-content {
  position: relative;
  width: 90%;
  height: 90%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.projects-gallery-slide.active {
  opacity: 1;
  visibility: visible;
}

.projects-gallery-image {
  max-width: 100%;
  max-height: 80%;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Galeri Proje Bilgi Overlay'ı - Projects Sayfası */
.projects-gallery-project-info {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: none;
  max-width: 600px;
  width: 100%;
  margin-top: auto;
}

.projects-gallery-project-info .project-info-content {
  max-width: 100%;
}

.projects-gallery-project-info .gallery-project-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
  text-align: center;
}

.projects-gallery-project-info .gallery-project-category {
  font-size: 14px;
  color: #F18A3A;
  margin-bottom: 15px;
  font-weight: 500;
  text-align: center;
}

.projects-gallery-project-info .gallery-project-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  justify-content: center;
}

.projects-gallery-project-info .detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.projects-gallery-project-info .detail-item i {
  color: #F18A3A;
  font-size: 11px;
}

.projects-gallery-project-info .gallery-project-system {
  margin-top: 10px;
  text-align: center;
}

.projects-gallery-project-info .system-badge {
  display: inline-block;
  background: rgba(241, 138, 58, 0.2);
  color: #F18A3A;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(241, 138, 58, 0.3);
}

/* Galeri Navigation - Projects Sayfası */
.projects-gallery-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  box-sizing: border-box;
  transform: translateY(-50%);
  z-index: 10;
}

.projects-gallery-prev,
.projects-gallery-next {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.projects-gallery-prev:hover,
.projects-gallery-next:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.projects-gallery-prev svg,
.projects-gallery-next svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.projects-gallery-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.projects-gallery-close:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.projects-gallery-close svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Responsive Galeri - Projects Sayfası */
@media (max-width: 768px) {
  .projects-gallery-content {
    width: 95%;
    height: 95%;
  }
  
  .projects-gallery-image {
    max-height: 70%;
    margin-bottom: 15px;
  }
  
  .projects-gallery-project-info {
    padding: 15px 20px;
    margin-top: 10px;
  }
  
  .projects-gallery-project-info .gallery-project-title {
    font-size: 20px;
    margin-bottom: 6px;
  }
  
  .projects-gallery-project-info .gallery-project-category {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .projects-gallery-project-info .gallery-project-details {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .projects-gallery-project-info .detail-item {
    font-size: 11px;
    justify-content: center;
  }
  
  .projects-gallery-project-info .system-badge {
    padding: 3px 10px;
    font-size: 10px;
  }
  
  .projects-gallery-nav {
    padding: 0 20px;
  }
  
  .projects-gallery-prev,
  .projects-gallery-next {
    width: 44px;
    height: 44px;
  }
  
  .projects-gallery-prev svg,
  .projects-gallery-next svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 430px) {
  .projects-gallery-project-info {
    padding: 12px 15px;
  }
  
  .projects-gallery-project-info .gallery-project-title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .projects-gallery-project-info .gallery-project-category {
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .projects-gallery-project-info .detail-item {
    font-size: 10px;
  }
  
  .projects-gallery-project-info .system-badge {
    padding: 2px 8px;
    font-size: 9px;
  }
} 