/* Homepage - Pixel Perfect Kuzu Grup Style */

.homepage-body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background: #0b0c10;
}

* {
    box-sizing: border-box;
}

/* Header styles moved to style.css - using main-header class */
/* Ana sayfada header için özel stil yok, tüm stiller style.css'te */

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    transform: scale(1.3);
    filter: brightness(0.4) contrast(0.8) saturate(0.7) blur(5px);
    transition: transform 2s ease-out, opacity 0.8s ease, filter 2.5s ease-out;
    animation: heroBackgroundReveal 2.5s ease-out forwards;
}

@keyframes heroBackgroundReveal {
    0% {
        filter: brightness(0.3) contrast(0.6) saturate(0.5) blur(8px);
        opacity: 0.7;
    }
    100% {
        filter: brightness(1.1) contrast(1.1) saturate(1.1) blur(0);
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 12, 16, 0.85) 0%, rgba(29, 31, 36, 0.75) 100%);
    z-index: 2;
    opacity: 1;
    animation: heroOverlayFadeIn 2s ease-out forwards;
}

@keyframes heroOverlayFadeIn {
    0% {
        opacity: 1;
        filter: blur(10px) brightness(0.3);
    }
    100% {
        opacity: 1;
        filter: blur(0) brightness(1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    max-width: 1200px;
    padding: 0 40px;
    margin-right: 0;
    margin-left: auto;
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    padding-right: 80px;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    color: white;
    margin: 0 0 32px 0;
    letter-spacing: -2px;
    line-height: 1.1;
    text-align: right;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
    transition: all 0.6s ease;
}

.hero-button {
    display: inline-block;
    padding: 12px 28px;
    border: 1.5px solid white;
    border-radius: 50px;
    background: transparent;
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
    z-index: -1;
}

.hero-button:hover::before {
    left: 100%;
}

.hero-button:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Social Icons Bar - Bottom Left */
.social-icons-bar {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-icon:hover {
    opacity: 1;
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Carousel Controls - Bottom Right */
.carousel-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 12px;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid white;
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
}

.carousel-arrow:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
}

/* Main Content Sections */
.main-content {
    background: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Projects Main Section - Kuzu Grup Style */
.projects-main-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.section-header-left {
    flex: 1;
}

.section-badge {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title-large {
    font-size: 36px;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: -1px;
    line-height: 1.2;
    margin: 0;
}

.btn-show-all {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border: 1.5px solid #1a202c;
    border-radius: 50px;
    background: white;
    color: #1a202c;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-show-all:hover {
    background: #1a202c;
    color: white;
    transform: translateY(-2px);
}

.projects-grid-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.project-card-main {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.project-card-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.project-image-main {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.project-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card-main:hover .project-image-main img {
    transform: scale(1.05);
}

.project-info-main {
    padding: 20px;
}

.project-info-main h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    line-height: 1.4;
}

/* Bottom Banner */
.bottom-banner {
    position: relative;
    background: rgba(45, 55, 72, 0.4);
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.banner-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
}

.banner-text {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1a202c;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top:hover {
    background: #2d3748;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-content {
        padding-right: 40px;
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .projects-grid-main {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-title-large {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .hero-button {
        padding: 10px 24px;
        font-size: 13px;
    }
    
    .social-icons-bar {
        bottom: 20px;
        left: 20px;
        gap: 15px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .carousel-controls {
        bottom: 20px;
        right: 20px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title-large {
        font-size: 24px;
    }
    
    .projects-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .projects-main-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .section-title-large {
        font-size: 20px;
    }
    
    .projects-grid-main {
        grid-template-columns: 1fr;
    }
    
    .banner-text {
        font-size: 16px;
    }
}

/* Experience Section - Before Footer */
.experience-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.experience-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    filter: brightness(0.6) contrast(1.1);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 12, 16, 0.85) 0%, rgba(29, 31, 36, 0.75) 100%);
    z-index: 2;
}

.experience-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 80px 0;
}

.experience-header {
    text-align: center;
    margin-bottom: 60px;
}

.experience-badge {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.experience-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .experience-title {
        font-size: 32px;
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 42px;
    }
}
