/* Genel Ayarlar & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #111;
    --secondary-color: #c5a059; /* Lüks Altın Rengi */
    --text-light: #f8f8f8;
    --bg-light: #f9f9f9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: #fff;
    color: var(--primary-color);
    overflow-x: hidden;
}

html {
    scroll-behavior: auto; /* Momentum scroll için auto kalmalı */
}

a {
    text-decoration: none;
    color: inherit;
}

*:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 4px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Momentum Scroll Kapsayıcısı */
#smooth-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
}

#smooth-content {
    width: 100%;
    will-change: transform;
}

/* Hero Section */
.hero {
    display: flex;
    height: 100vh;
    width: 100%;
    padding-top: 70px;
    position: relative;
}

/* Ortadaki Küçük Logo */
.hero-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; /* Logonu boyutuna göre burayı ayarlayabilirsin */
    height: 120px;
    z-index: 10;

    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;

}

.hero-center-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-split {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

.hero-split.women {
    background-color: #2c2c2c;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('assets/women.jfif');
}

.hero-split.men {
    background-color: #1a1a1a;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('assets/men.jfif');
}

.hero-split::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2);
    transition: background 0.4s ease;
}

.hero-split:hover::before {
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.hero-split:hover .hero-content {
    transform: translateY(0);
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.hero-split:hover .btn {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* Kayan Yazı (Marquee) - Lüks Tema */
.marquee-container {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    display: block; /* Grid ile karışmasını engeller */
}

.marquee-container.marquee-light {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.marquee-content {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    animation: marquee 30s linear infinite;
    padding-left: 100%;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Ürün Listeleme Seksiyonları */
.products-section {
    padding: 80px 5%;
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 90%;
    margin: 0 auto;
}

/* Lüks Ürün Kartı Stili (Eski haline döndürüldü) */
.product-card {
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid #eaeaea;
    background-color: #fff;
    padding: 10px 10px 20px 10px;
}

/* Tam Kare Resim */
.img-container {
    width: 100%;
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #f4f4f4;
    position: relative;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.6s ease-out;
}

/* Overlay Alanı */
.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(17, 17, 17, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-btn {
    background: #fff;
    color: var(--primary-color);
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card:hover .card-overlay,
.product-card:focus .card-overlay {
    opacity: 1;
}

.product-card:hover .overlay-btn,
.product-card:focus .overlay-btn {
    transform: translateY(0);
}

.overlay-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

@media (min-width: 993px) {
    .product-card:hover .img-container img {
        transform: scale(1.08);
    }
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.06);
        border-color: var(--secondary-color);
    }
}

@media (max-width: 768px) {
    .product-card.is-active .img-container img {
        transform: scale(1.1); 
    }
    .product-card.is-active .card-overlay {
        opacity: 1;
    }
    .product-card.is-active .overlay-btn {
        transform: translateY(0);
    }
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
    padding: 0 10px;
}

.product-card p {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0 10px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 50px 5% 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-content p {
    color: #999;
    margin-bottom: 20px;
}

.socials a {
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: -100%;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 30px 0;
        transition: 0.4s ease;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }

    .nav-links.active { right: 0; }
    .hamburger { display: block; }
    .hero { flex-direction: column; }
    .hero-split { height: 50%; }

    .product-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .product-grid::-webkit-scrollbar { height: 6px; }
    .product-grid::-webkit-scrollbar-thumb { background-color: var(--secondary-color); border-radius: 10px; }

    .product-card {
        min-width: 80%;
        scroll-snap-align: center;
    }
}