﻿/* ===== GENEL RESET & TEMEL ===== */
html, body { 
    max-width: 100vw;
    overflow-x: hidden;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* ===== MATERIAL ICONS ===== */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* ===== DİNAMİK HEADER (GLASSMORPHISM) ===== */
#main-header {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}
#main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
#main-header.scrolled .nav-link {
    color: #1a1a1a;
}
#main-header.scrolled .logo-text {
    color: #1a1a1a;
}
#main-header.scrolled .hamburger {
    color: #1a1a1a;
}

.nav-link {
    position: relative;
    color: white;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #E3182D;
    transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* ===== HERO PARALLAX ===== */
.hero-bg {
    transform: scale(1.1);
    animation: zoomOut 10s ease-out forwards;
}
@keyframes zoomOut {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ===== DEKORATİF RAKAMLAR ===== */
.decorative-number {
    position: absolute;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    top: -5rem;
    right: -2rem;
    z-index: 0;
    pointer-events: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ===== EKİP HOVER EFEKTİ ===== */
.team-img-wrapper img {
    filter: grayscale(100%);
    transition: all 0.5s ease;
}
.group:hover .team-img-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ===== SWIPER CUSTOMIZATION ===== */
.swiper-pagination-bullet {
    background: #E8C822 !important;
    opacity: 0.5 !important;
}
.swiper-pagination-bullet-active {
    opacity: 1 !important;
    transform: scale(1.2);
}
.swiper-slide {
    height: auto; /* Yorumların boyuna göre ayarla */
}

/* ===== LÜKS BUTON EFEKTİ ===== */
.btn-premium {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #E8C822;
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-premium:hover::before {
    width: 100%;
}
.btn-premium:hover {
    color: #1a1a1a !important;
    border-color: #E8C822 !important;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #E3182D; 
}
::-webkit-scrollbar-thumb:hover {
    background: #b31222; 
}
