/* Modern Tasarım İyileştirmeleri */

/* Genel Animasyonlar */
* {
    transition: all 0.3s ease;
}

/* Kartlar için modern gölge efekti */
.portfolio-item,
.service-item,
.blog-item,
.team-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-item:hover,
.service-item:hover,
.blog-item:hover,
.team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Butonlar için modern stil */
.grb-btn,
.btn {
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.grb-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.grb-btn:hover::before {
    left: 0;
}

/* Başlıklar için modern stil */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

/* Resimler için modern efekt */
img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.portfolio-item:hover img,
.blog-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

/* Form elemanları için modern stil */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #4ecdc4;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
    outline: none;
}

/* Header için modern sticky efekt */
.header-sticky.sticky {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Footer için modern gradient */
.footer-area {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
}

.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

/* Sosyal medya ikonları için modern hover */
.grb__social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.grb__social a:hover {
    background: #4ecdc4;
    transform: translateY(-3px) rotate(360deg);
}

/* Breadcrumb için modern stil */
.grb-breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 25px;
    display: inline-block;
}

/* Scroll animasyonu için */
.wow {
    visibility: hidden;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
}

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

/* Loader için modern spinner */
.preloader {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Sayaç için modern stil */
.counter-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Galeri için modern grid */
.portfolio-main-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Mobil responsive iyileştirmeler */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .grb-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .portfolio-main-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Seçim rengi */
::selection {
    background: #4ecdc4;
    color: white;
}

::-moz-selection {
    background: #4ecdc4;
    color: white;
}

/* Scrollbar modern stil */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}
