/* -------- GENEL -------- */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fa;
}

/* -------- HERO BANNER -------- */
.hero-banner {
    background: white ;
    padding: 80px 0;
    color: black ;
}

.hero-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-accent {
    width: 6px;
    height: 120px;
    background: black ;
    opacity: 0.8;
}

.hero-content h1 {
    font-size: 42px;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
    font-weight: 700;
}

.hero-content p {
    font-size: 16px;
    opacity: 0.85;
    max-width: 600px;
}

/* -------- PREMIUM FILTER -------- */
.premium-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 26px;
    border-radius: 30px;
    border: 1px solid rgba(11,31,58,0.2);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.filter-btn:hover {
    background: #0b1f3a;
    color: #fff;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #0b1f3a;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* -------- GRID -------- */
.kategori-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
    width: 85%;
    max-width: 1200px;
    margin: 0 auto 100px auto;
}

.kategori-kutu {
    text-align: center;
    text-decoration: none;
    color: #222;
    transition: all 0.3s ease;
}

.kategori-kutu img {
    width: 100%;
    border-radius: 8px;
    transition: 0.3s ease;
}

.kategori-kutu span {
    display: block;
    margin-top: 14px;
    font-weight: 600;
}

.kategori-kutu:hover img {
    transform: scale(1.05);
}
.hero-secondary {
    background: white ;
}
.paralel-hero-full {
    display: flex;
    justify-content: center;
}

.paralel-stage {
    width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}
/* HERO görsellerini ortadaki boş alana al */
.paralel-stage {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.small-panels {
    margin-left: 0 !important;
    transform: none !important;
}

.small-panels .panel {
    transform: skewX(-12deg) !important;
}
/* SADECE sağ kaymayı düzelt, animasyonu bozma */
.small-panels .panel {
    transform: skewX(-12deg) translateX(0) !important;
}
/* Hero görsel kompozisyonunu ortala ve sabitle */
.paralel-stage {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
}

.small-panels {
    position: relative !important;
    left: 0 !important;
    margin-right: -120px; /* küçük panelleri büyük panelin içine yaklaştır */
}

.small-panels .panel {
    transform: skewX(-12deg) translateX(0) !important;
}

.big-panel {
    position: relative !important;
}
.small-panels {
    transform: translateX(-180px) !important;
}
/* Stage referans olsun */
.paralel-stage {
    position: relative;
}

/* Büyük panel referans */
.big-panel {
    position: relative;
    z-index: 1;
}

/* Küçük panelleri büyük panelin sol kenarına oturt */
.small-panels {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

