html {
    scroll-behavior: smooth;
}

/* =========================================================================
   VAR & RESET
   ========================================================================= */
:root {
    /* Renk Paleti - Dark Copper Mode */
    --clr-bg-start: #2A1710;
    /* En üstte derin koyu bakır */
    --clr-bg-end: #120A07;
    /* Aşağı indikçe siyaha çalan koyu bakır */
    
    /* Metin Kontrast Renkleri */
    --clr-dark-slate: #2d3a40;
    /* Ana koyu metin/başlık rengi */
    --clr-gray: #687178;
    /* Alt metin rengi */
    --clr-text-light: #f4ebe3;
    /* Koyu bakır zemin üzerindeki metinler için açık renk */

    /* Logo Vurgu Renkleri */
    --clr-copper: #c17a58;
    /* Logodaki klasik bakır */
    --clr-copper-light: #dba085;
    /* Bakırın açık tonu */
    --clr-copper-dark: #9e593a;
    /* Bakırın gölgeli koyu tonu */
    
    --clr-white: #e9e3da; 
    /* Header ve Footer için biraz daha kirli/eskimiş beyaz (kirli krem) */

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --trans-fast: 0.2s ease-in-out;
    --trans-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --header-height: 80px;
    --safe-area-top: env(safe-area-inset-top, 0px);
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--clr-text-light);
    background-color: var(--clr-bg-start);
    overflow-x: hidden;
}

#dynamic-bg {
    display: none;
}

/* =========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--clr-text-light); /* Koyu argaplanda beyaz/krem başlıklar */
    margin-bottom: 1rem;
}

a {
    color: var(--clr-copper);
    text-decoration: none;
    transition: var(--trans-fast);
}

a:hover {
    color: var(--clr-copper-dark);
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-copper), var(--clr-copper-dark));
    color: var(--clr-white) !important;
    box-shadow: 0 4px 15px rgba(190, 114, 82, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--clr-copper-light), var(--clr-copper));
    color: var(--clr-white);
    box-shadow: 0 6px 20px rgba(190, 114, 82, 0.5);
    transform: translateY(-2px);
}

/* =========================================================================
   HEADER
   ========================================================================= */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--header-height) + var(--safe-area-top));
    padding-top: var(--safe-area-top);
    background: transparent;
    z-index: 1000;
    transition: var(--trans-slow);
}

#main-header.scrolled {
    background: var(--clr-bg-start);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    height: calc(70px + var(--safe-area-top));
}

.mobile-menu-header {
    display: none;
    background: var(--clr-bg-start);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: var(--trans-fast);
}

#main-header.scrolled .logo img {
    height: 60px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--clr-text-light);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-copper);
    transition: var(--trans-fast);
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--clr-text-light);
    transition: var(--trans-fast);
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.3s;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s forwards 0.5s;
}

/* Yarıyı Kaplayan Animasyonlu Küre */
.hero-sphere-slider {
    width: 65vh;
    height: 65vh;
    max-width: 550px;
    max-height: 550px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(46, 54, 62, 0.15);
    border: 8px solid var(--clr-white);
}

.slider-track {
    display: flex;
    width: 200%;
    height: 100%;
    animation: slideImages 16s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.slider-track img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.slider-track img:nth-child(1) {
    object-position: 50% 100%;
}

.slider-track img:nth-child(2) {
    object-position: center;
}

@keyframes slideImages {

    0%,
    25% {
        transform: translateX(0);
    }

    75%,
    100% {
        transform: translateX(-50%);
    }
}

/* DNA Showcase Wrapper */
.dna-showcase-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    padding: 40px 0;
}

/* =========================================================================
   ADVANCED COPPER DNA & COLLISION ANIMATION
   ========================================================================= */
.copper-dna-container {
    width: 500px;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

/* Merkez Küre - Gelişmiş Enerji Çekirdeği */
.dna-core {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffbc85, var(--clr-copper), #5e2f0d);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 50px rgba(190, 114, 82, 0.5),
        0 0 100px rgba(190, 114, 82, 0.2),
        inset 0 -8px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
    position: relative;
    animation: coreEnergy 4s ease-in-out infinite;
}

.core-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(190, 114, 82, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

.dna-core span {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
    z-index: 2;
}

@keyframes coreEnergy {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.15) rotate(10deg);
        filter: brightness(1.3);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.2);
    }
}

/* Şok Dalgaları (Patlama Halkaları) */
.shockwave {
    position: absolute;
    border: 3px solid var(--clr-copper);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}

.sw-1 {
    width: 100px;
    height: 100px;
    animation: shockwaveAnim 4s infinite;
}

.sw-2 {
    width: 100px;
    height: 100px;
    animation: shockwaveAnim 4s infinite 2s;
}

@keyframes shockwaveAnim {
    0% {
        transform: scale(1);
        opacity: 1;
        border-width: 6px;
    }

    30% {
        opacity: 0.8;
    }

    100% {
        transform: scale(6);
        opacity: 0;
        border-width: 1px;
    }
}

/* Çarpışma Kıvılcımları (Spark Effect) */
.collision-emitter {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 12;
    pointer-events: none;
}

.spark {
    position: absolute;
    width: 3px;
    height: 15px;
    background: linear-gradient(to top, #fff, var(--clr-copper-light), transparent);
    border-radius: 3px;
    opacity: 0;
}

.s1 {
    transform: rotate(0deg) translateY(-60px);
    animation: sparkFly 4s infinite 0.1s;
}

.s2 {
    transform: rotate(60deg) translateY(-60px);
    animation: sparkFly 4s infinite 0.3s;
}

.s3 {
    transform: rotate(120deg) translateY(-60px);
    animation: sparkFly 4s infinite 0.5s;
}

.s4 {
    transform: rotate(180deg) translateY(-60px);
    animation: sparkFly 4s infinite 0.7s;
}

.s5 {
    transform: rotate(240deg) translateY(-60px);
    animation: sparkFly 4s infinite 0.9s;
}

.s6 {
    transform: rotate(300deg) translateY(-60px);
    animation: sparkFly 4s infinite 1.1s;
}

@keyframes sparkFly {

    0%,
    45% {
        transform: rotate(inherit) translateY(-40px) scaleY(0);
        opacity: 0;
    }

    50% {
        transform: rotate(inherit) translateY(-60px) scaleY(2);
        opacity: 1;
    }

    60% {
        transform: rotate(inherit) translateY(-200px) scaleY(0.5);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Etki-Tepki Parçacıkları (Action-Reaction) */
.reaction-particle {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px #fff, 0 0 40px var(--clr-copper);
    opacity: 0;
    z-index: 11;
}

.rp-1 {
    animation: actionReaction 5s infinite;
}

.rp-2 {
    animation: actionReaction 5s infinite 1.6s;
}

.rp-3 {
    animation: actionReaction 5s infinite 3.2s;
}

@keyframes actionReaction {
    0% {
        transform: translate(400px, -300px) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    48% {
        transform: translate(55px, -15px) scale(0.6);
        opacity: 1;
    }

    50% {
        transform: translate(50px, -10px) scale(3);
        filter: brightness(2) blur(5px);
        opacity: 1;
    }

    /* Çarpışma */
    52% {
        transform: translate(80px, 20px) scale(1.5);
        opacity: 0.8;
        filter: blur(2px);
    }

    100% {
        transform: translate(500px, 400px) scale(0);
        opacity: 0;
    }
}

/* 3D Yörüngeler */
.orbit {
    position: absolute;
    border: 1px solid rgba(190, 114, 82, 0.25);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
}

.orbit-1 {
    width: 240px;
    height: 240px;
    margin-top: -120px;
    margin-left: -120px;
    animation: orbit3D_1 12s linear infinite;
}

.orbit-2 {
    width: 360px;
    height: 360px;
    margin-top: -180px;
    margin-left: -180px;
    animation: orbit3D_2 18s linear infinite;
    border: 1px dashed rgba(190, 114, 82, 0.2);
}

.orbit-3 {
    width: 480px;
    height: 480px;
    margin-top: -240px;
    margin-left: -240px;
    animation: orbit3D_3 25s linear infinite;
}

@keyframes orbit3D_1 {
    0% {
        transform: rotateX(65deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(65deg) rotateZ(360deg);
    }
}

@keyframes orbit3D_2 {
    0% {
        transform: rotateY(75deg) rotateZ(360deg);
    }

    100% {
        transform: rotateY(75deg) rotateZ(0deg);
    }
}

@keyframes orbit3D_3 {
    0% {
        transform: rotateX(-55deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(-55deg) rotateZ(360deg);
    }
}

/* Yörünge Parçacıkları (Elements) */
.orbit-particle {
    position: absolute;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px currentColor);
    animation: particleSpin 4s linear infinite;
}

@keyframes particleSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.p1 {
    top: -12px;
    left: 50%;
    color: var(--clr-copper);
}

.p2 {
    bottom: -12px;
    left: 50%;
    color: #ffbc85;
}

.p3 {
    top: -12px;
    left: 50%;
    color: #cd7f32;
}

.p4 {
    bottom: -12px;
    left: 50%;
    color: #e8a87c;
}

.p5 {
    top: -12px;
    left: 50%;
    color: #b8860b;
}

.p6 {
    bottom: -12px;
    left: 50%;
    color: var(--clr-copper);
}

/* Arkaplan Kaotik Parçacıklar */
.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--clr-copper);
    filter: blur(1px);
    opacity: 0.4;
    animation: chaoticFloat 15s ease-in-out infinite;
}

@keyframes chaoticFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    33% {
        transform: translate(150px, -100px) scale(1.8);
        opacity: 0.6;
    }

    66% {
        transform: translate(-100px, -200px) scale(0.7);
        opacity: 0.3;
    }
}

.fp1 {
    left: 5%;
    top: 15%;
    animation-delay: 0s;
}

.fp2 {
    right: 10%;
    top: 25%;
    animation-delay: 2s;
}

.fp3 {
    left: 15%;
    bottom: 10%;
    animation-delay: 4s;
}

.fp4 {
    right: 20%;
    bottom: 15%;
    animation-delay: 6s;
}

.fp5 {
    left: 35%;
    top: 5%;
    animation-delay: 8s;
}

.fp6 {
    right: 0%;
    bottom: 35%;
    animation-delay: 10s;
}

.fp7 {
    left: 0%;
    bottom: 0%;
    animation-delay: 12s;
}

.fp8 {
    right: 35%;
    top: 0%;
    animation-delay: 14s;
}

/* Dış Enerji Halkaları */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(190, 114, 82, 0.08);
    top: 50%;
    left: 50%;
    pointer-events: none;
    transition: border-color 0.5s ease;
}

.ring-1 {
    width: 320px;
    height: 320px;
    margin-top: -160px;
    margin-left: -160px;
    animation: ringEnergy 8s ease-in-out infinite;
}

.ring-2 {
    width: 480px;
    height: 480px;
    margin-top: -240px;
    margin-left: -240px;
    animation: ringEnergy 8s ease-in-out 2.5s infinite;
}

.ring-3 {
    width: 650px;
    height: 650px;
    margin-top: -325px;
    margin-left: -325px;
    animation: ringEnergy 8s ease-in-out 5s infinite;
}

@keyframes ringEnergy {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
        border-color: rgba(190, 114, 82, 0.08);
    }

    50% {
        transform: scale(1.08);
        opacity: 0.4;
        border-color: rgba(190, 114, 82, 0.4);
        box-shadow: 0 0 30px rgba(190, 114, 82, 0.1);
    }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--clr-text-light);
}

.hero-title span {
    color: var(--clr-copper-light);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--clr-text-light);
    margin-bottom: 30px;
    opacity: 0.85;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================================================
   HAKKIMIZDA (ABOUT) SECTION
   ========================================================================= */
.about-section {
    padding: 100px 0;
    background: transparent; /* Arkadaki dinamik koyu temanın görünmesi için */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--clr-text-light);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--clr-text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
    opacity: 0.85;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--clr-copper), var(--clr-copper-light));
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--clr-copper-light);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--clr-text-light);
    margin-top: 5px;
    opacity: 0.85;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #faf5f0;
    border-radius: 12px;
    color: #000000;
}

.value-card h4 {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 6px;
}

.value-card p {
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.6;
}

/* =========================================================================
   SHOWCASE SECTION (DIKDÖRTGEN + KÜRE)
   ========================================================================= */
.showcase-section {
    padding: 100px 0;
    overflow: hidden;
}

.showcase-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dikdörtgen (Arka Plan Platformu) */
.showcase-rectangle {
    position: absolute;
    width: 80%;
    height: 400px;
    background: #ffffff;
    border: 1px solid rgba(190, 114, 82, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

/* Ortadaki Küre */
.showcase-sphere {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--clr-copper-light), var(--clr-copper-dark));
    box-shadow: 0 10px 30px rgba(190, 114, 82, 0.4), inset -10px -10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    animation: floatSphere 6s ease-in-out infinite;
}

.sphere-inner {
    text-align: center;
}

.sphere-text {
    font-family: var(--font-heading);
    color: var(--clr-white);
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

@keyframes floatSphere {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Etraftaki Resimler */
.showcase-item {
    position: absolute;
    z-index: 2;
    transition: var(--trans-slow);
    width: 300px;
}

.left-item {
    left: -10%;
    top: -50px;
}

.right-item {
    right: -10%;
    bottom: -50px;
}

.image-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--trans-slow);
}

.showcase-item:hover .product-img {
    transform: scale(1.05);
}

.item-info {
    margin-top: 15px;
    background: #ffffff;
    backdrop-filter: blur(5px);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    color: #000000;
}

.item-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #000000;
}

.view-more {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000000;
}

/* =========================================================================
   BLOG SECTION
   ========================================================================= */
.blog-section {
    padding: 100px 0;
    background: transparent; /* Koyu tema üzerine beyaz şeffaf katman metni okunmaz yapıyordu */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--clr-text-light);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--clr-copper-light);
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card-item {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.blog-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-copper), var(--clr-copper-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.blog-card-item:hover::before {
    transform: scaleX(1);
}

.blog-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(190, 114, 82, 0.12);
    border-color: rgba(190, 114, 82, 0.25);
}

.blog-card-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
    color: #000000;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.blog-card-item h3 {
    font-size: 1.35rem;
    color: #000000;
    margin-bottom: 10px;
}

.blog-card-item>p {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Gizlenmiş detay alanı (Accordion) */
.blog-card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    opacity: 0;
}

.blog-card-item.open .blog-card-details {
    max-height: 600px;
    opacity: 1;
}

.blog-card-details p {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.blog-card-details ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.blog-card-details li {
    color: #000000;
    font-size: 0.95rem;
    margin-bottom: 6px;
    line-height: 1.6;
}

.blog-toggle-btn {
    background: none;
    border: none;
    color: var(--clr-copper);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    transition: color 0.3s ease;
}

.blog-toggle-btn:hover {
    color: var(--clr-copper-dark);
}

.blog-toggle-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 0.7rem;
}

.blog-card-item.open .blog-toggle-btn span {
    transform: rotate(180deg);
}

/* Scroll ile görünür olma animasyonu */
.blog-card-item[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.blog-card-item[data-animate="fade-up"].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Eski info-card uyumluluğu */
.read-more {
    font-weight: 600;
    border-bottom: 1px solid var(--clr-copper);
    padding-bottom: 2px;
}

/* =========================================================================
   CONTACT (İLETİŞİM) SECTION
   ========================================================================= */
.contact-section {
    padding: 100px 0;
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-card {
    background: #ffffff;
    padding: 40px 28px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-copper), var(--clr-copper-light));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.contact-card:hover::after {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #faf5f0;
    color: var(--clr-copper);
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    background: var(--clr-copper);
    color: #fff;
}

.contact-card:hover .contact-icon svg {
    stroke: #fff;
}

/* WhatsApp Yeşili */
.whatsapp-card .contact-icon {
    background: #e8f5e9;
    color: #25D366;
}

.whatsapp-card .contact-icon svg {
    fill: #25D366;
}

.whatsapp-card:hover .contact-icon {
    background: #25D366;
}

.whatsapp-card:hover .contact-icon svg {
    fill: #fff;
}

/* Instagram Pembe/Mor Gradyanı */
.instagram-card .contact-icon {
    background: #fce4ec;
    color: #E1306C;
}

.instagram-card .contact-icon svg {
    stroke: #E1306C;
}

.instagram-card:hover .contact-icon {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}

.instagram-card:hover .contact-icon svg {
    stroke: #fff;
}

.contact-card h3 {
    font-size: 1.25rem;
    color: #000000;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.92rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 18px;
}

.contact-link {
    display: inline-block;
    color: var(--clr-copper);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.contact-link:hover {
    border-bottom-color: var(--clr-copper);
    color: var(--clr-copper-dark);
}

/* Scroll Animasyonu (Blog ile ortak kullanılıyor) */
.contact-card[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
}

.contact-card[data-animate="fade-up"].visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.main-footer {
    background: #ffffff;
    padding: 60px 0 calc(20px + var(--safe-area-bottom));
    color: #333333;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    opacity: 0.9;
    font-size: 0.95rem;
    color: #444444;
    margin-bottom: 20px;
}

/* Sosyal Medya İkonları */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    color: var(--clr-dark-slate);
}

.footer-social a svg {
    stroke: var(--clr-dark-slate);
    fill: none;
}

.footer-social a:nth-child(2) svg {
    fill: var(--clr-dark-slate);
    stroke: none;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-social a:first-child:hover {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}

.footer-social a:nth-child(2):hover {
    background: #25D366;
}

.footer-social a:nth-child(3):hover {
    background: var(--clr-copper);
}

.footer-links h4 {
    color: var(--clr-copper-light);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #444444;
    opacity: 0.9;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--clr-copper);
}

/* Footer Mini FAQ (details/summary) */
.footer-faq-mini {
    margin-top: 10px;
}

.footer-faq-mini details {
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 8px;
}

.footer-faq-mini summary {
    cursor: pointer;
    color: var(--clr-dark-slate);
    opacity: 0.85;
    font-size: 0.85rem;
    font-weight: 500;
    list-style: none;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.footer-faq-mini summary::-webkit-details-marker {
    display: none;
}

.footer-faq-mini summary::before {
    content: '＋ ';
    color: var(--clr-copper-light);
    font-weight: 700;
}

.footer-faq-mini details[open] summary::before {
    content: '－ ';
}

.footer-faq-mini summary:hover {
    color: var(--clr-copper-light);
}

.footer-faq-mini p {
    font-size: 0.8rem;
    color: #555555;
    line-height: 1.6;
    padding: 6px 0 4px 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    color: #444444;
    opacity: 0.9;
}

/* Modal Popup */
.footer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: modalFadeIn 0.3s ease;
}

.footer-modal.active {
    display: flex;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.footer-modal-content {
    background: #fff;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    border-radius: 20px;
    padding: 40px;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--clr-gray);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.footer-modal-close:hover {
    color: var(--clr-copper);
}

.footer-modal-content h2 {
    font-size: 1.8rem;
    color: var(--clr-copper-dark);
    margin-bottom: 25px;
}

/* Modal FAQ */
.modal-faq details {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.modal-faq details:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.modal-faq summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    color: #000000;
    font-size: 1rem;
    list-style: none;
    background: #fafaf8;
    transition: background 0.3s ease;
}

.modal-faq summary::-webkit-details-marker {
    display: none;
}

.modal-faq summary::before {
    content: '▸ ';
    color: var(--clr-copper);
    margin-right: 8px;
}

.modal-faq details[open] summary::before {
    content: '▾ ';
}

.modal-faq details[open] summary {
    background: #f5f0eb;
    color: var(--clr-copper-dark);
}

.modal-faq p {
    padding: 15px 22px;
    color: #000000;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Modal Text (Çerez/Gizlilik) */
.modal-text h3 {
    font-size: 1.15rem;
    color: #000000;
    margin: 25px 0 10px;
}

.modal-text p {
    color: #000000;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */
@media (max-width: 992px) {
    .hero-section {
        height: auto;
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 60px;
    }

    .hero-split {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        justify-content: center;
        margin-bottom: 40px;
    }

    .hero-sphere-slider {
        width: 80vw;
        height: 80vw;
        max-width: none;
        max-height: none;
    }

    .copper-dna-container {
        width: 320px;
        height: 320px;
    }

    .showcase-wrapper {
        height: auto;
        padding: 50px 0;
        flex-direction: column;
    }

    .showcase-rectangle {
        width: 100%;
        height: 600px;
    }

    .showcase-item {
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: 20px 0;
        width: 80%;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-section {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-section {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--clr-bg-start) 0%, var(--clr-bg-end) 100%);
        z-index: 1010;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        backdrop-filter: blur(15px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .main-nav.active {
        display: flex;
    }

    .mobile-menu-header {
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-logo img {
        height: 40px;
    }

    .menu-close-btn {
        background: none;
        border: none;
        font-size: 1rem;
        font-weight: 600;
        color: var(--clr-copper);
        display: flex;
        align-items: center;
        gap: 5px;
        cursor: pointer;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin-top: 60px;
    }

    .main-nav ul li a {
        font-size: 1.5rem;
        color: var(--clr-text-light); /* White/Cream text */
        font-weight: 500;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .mobile-menu-btn span {
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .value-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-sphere-slider {
        width: 85vw;
        height: 85vw;
        max-width: none;
        max-height: none;
    }
}

/* Küçük ekranlar (480px ve altı) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-section {
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 40px;
    }

    .hero-sphere-slider {
        width: 92vw;
        height: 92vw;
        max-width: none;
        max-height: none;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .blog-cards-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
}

/* =========================================================================
   PREMIUM TIMELINE CATALOG
   ========================================================================= */
.timeline-catalog-section {
    padding: 100px 0;
    background: transparent;
}

.catalog-background-wrapper {
    background: rgba(42, 23, 16, 0.3);
    padding: 100px 0;
    box-shadow: none;
    border-top: 1px solid rgba(193, 122, 88, 0.15);
    border-bottom: 1px solid rgba(193, 122, 88, 0.15);
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 60px;
    overflow: hidden;
}

.premium-catalog-timeline {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
}

.premium-timeline-item {
    position: relative;
    width: 100%;
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.premium-timeline-item {
    position: relative;
    width: 100%;
    padding: 60px 4%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.premium-timeline-item.left,
.premium-timeline-item.right {
    left: 0;
    justify-content: center;
    padding-left: 4%;
    padding-right: 4%;
}

.timeline-image-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 8px solid var(--clr-white);
    background: var(--clr-copper-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
    overflow: hidden;
    transition: var(--trans-slow);
}

.premium-timeline-item.left .timeline-image-wrapper {
    left: 6%;
}

.premium-timeline-item.right .timeline-image-wrapper {
    right: 6%;
}

.timeline-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sunumluk-img {
    object-position: 50% 25%;
}

.caydanlik-img {
    object-position: 50% 80%;
}

.matara-img {
    object-position: 50% 85%;
}

.bardak-img {
    object-position: 50% 80%;
}

.cezve-img {
    object-position: 10% 50%;
}

.premium-timeline-item:hover .timeline-image-wrapper {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 20px 50px rgba(190, 114, 82, 0.2);
    border-color: var(--clr-copper);
}

.premium-timeline-item:hover .timeline-image {
    transform: scale(1.1);
}

.timeline-info {
    background: #ffffff;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--trans-slow);
    width: 100%;
    min-height: 250px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.premium-timeline-item.left .timeline-info {
    align-items: flex-end;
    text-align: right;
    padding: 60px 8% 60px 50%;
    margin: 0;
}

.premium-timeline-item.right .timeline-info {
    align-items: flex-start;
    text-align: left;
    padding: 60px 50% 60px 8%;
    margin: 0;
}

.premium-timeline-item:hover .timeline-info {
    border-color: rgba(190, 114, 82, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(190, 114, 82, 0.1);
}

.timeline-title {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 12px;
}

.timeline-desc {
    color: #333333;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.timeline-btn {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid #be7252;
    padding-bottom: 2px;
    letter-spacing: 0.5px;
}

.timeline-btn:hover {
    color: #be7252;
    border-color: #1a1a1a;
    transform: translateX(5px);
}

.timeline-btn:active {
    transform: translateX(2px);
}

/* Responsiveness for Timeline */
@media (max-width: 1200px) {
    .premium-timeline-item {
        padding: 50px 4%;
    }
    .timeline-image-wrapper {
        width: 300px;
        height: 300px;
    }
    .premium-timeline-item.left .timeline-info {
        padding-left: 360px;
        padding-right: 6%;
    }
    .premium-timeline-item.right .timeline-info {
        padding-right: 360px;
        padding-left: 6%;
    }
}
@media (max-width: 900px) {
    .premium-timeline-item {
        padding: 30px 4%;
    }
    .timeline-image-wrapper {
        width: 200px;
        height: 200px;
    }
    .premium-timeline-item.left .timeline-image-wrapper {
        left: 6%;
    }
    .premium-timeline-item.right .timeline-image-wrapper {
        right: 6%;
    }
    .premium-timeline-item.left .timeline-info {
        padding-left: 260px;
        padding-right: 5%;
        text-align: left;
        align-items: flex-start;
    }
    .premium-timeline-item.right .timeline-info {
        padding-right: 260px;
        padding-left: 5%;
    }
}
@media (max-width: 600px) {
    .timeline-image-wrapper {
        width: 120px;
        height: 120px;
        border-width: 3px;
        top: 20px;
        transform: none;
    }
    .premium-timeline-item.left .timeline-image-wrapper,
    .premium-timeline-item.right .timeline-image-wrapper {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    .premium-timeline-item.left .timeline-info,
    .premium-timeline-item.right .timeline-info {
        padding: 100px 20px 30px;
        text-align: center;
        align-items: center;
    }
}

/* ==========================================================================
   Collections Gallery Page Styles
   ========================================================================== */

.gallery-page {
    background: var(--clr-bg-start);
    padding-top: 80px; /* Space for main header */
}


/* Category Sub-Nav */
.category-nav {
    position: relative;
    z-index: 99;
    background: transparent;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-nav-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.category-nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.category-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #be7252;
    transition: width 0.3s ease;
}

.category-nav-link:hover,
.category-nav-link.active {
    color: #fff;
}

.category-nav-link:hover::after,
.category-nav-link.active::after {
    width: 100%;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: var(--clr-text-light);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.gallery-header p {
    color: rgba(244, 235, 227, 0.8);
}

.gallery-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #be7252;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(190, 114, 82, 0.15);
}

.gallery-item-img {
    width: 100%;
    height: 85%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover .gallery-item-img {
    transform: scale(1.05);
}

.gallery-item-info {
    padding: 20px 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text-light);
    margin: 0;
    letter-spacing: 0.5px;
    text-align: center;
}

.ehlikeyf-img {
    object-position: 50% 90%;
}

.caydanlik-2-img {
    object-position: 50% 85%;
}

.caydanlik-3-img {
    object-position: 90% 50%;
}

.caydanlik-5-img {
    object-position: 90% 50%;
}

.caydanlik-6-img {
    object-position: 70% 50%;
}

.caydanlik-7-img {
    object-position: 90% 50%;
}

.matara-img {
    object-position: 50% 90%;
}

.cezve-6-img {
    object-position: 90% 50%;
}

.cezve-7-img {
    object-position: 10% 50%;
}

.matara-1-img {
    object-position: 50% 70%;
}

.bardak-3-img {
    object-position: 90% 50%;
}

.sunumluk-8-img {
    object-position: 90% 50%;
}

.sunumluk-9-img, .sunumluk-10-img {
    object-position: 50% 50%;
}

/* Gallery Slider Styles */
.gallery-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.gallery-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-slider .swiper-slide img {
    transform: scale(1.05);
}

.gallery-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.gallery-slider .swiper-pagination-bullet-active {
    background: var(--accent-color, #c0a080);
    opacity: 1;
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
    color: #fff;
    transform: scale(0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-slider .swiper-button-next,
.gallery-item:hover .gallery-slider .swiper-button-prev {
    opacity: 0.8;
}

.gallery-empty {
    text-align: center;
    padding: 60px 40px;
    background: rgba(190, 114, 82, 0.02);
    border: 2px dashed rgba(190, 114, 82, 0.1);
    border-radius: 20px;
    margin: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-empty p {
    color: rgba(244, 235, 227, 0.6);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Responsiveness */
@media (max-width: 768px) {
    .category-nav-list {
        gap: 15px;
    }
    .category-nav-link {
        font-size: 0.75rem;
    }
    .gallery-header h2 {
        font-size: 2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    .gallery-item {
        height: auto;
        min-height: 400px;
    }
}

/* iOS Safe Area Support */
@supports (padding: env(safe-area-inset-bottom)) {
    .main-footer {
        padding-bottom: calc(30px + var(--safe-area-bottom));
    }
    .main-nav {
        padding-top: var(--safe-area-top);
        padding-bottom: var(--safe-area-bottom);
    }
}