/* 1. Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a; 
    color: #fff;
    font-family: 'Segoe UI', 'Tahoma', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* 2. Navigation */
nav {
    padding: 20px 5%;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: ltr;
}

.logo-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-top img { height: 25px; }
.logo-top span { font-size: 12px; letter-spacing: 2px; font-weight: bold; }

.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { color: #fff; text-decoration: none; font-size: 11px; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: #aaa; }

/* 3. Hero Section */
.hero-section {
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #0a0a0a;
}

.main-logo-centered {
    height: 160px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    animation: fadeInLogo 2s ease-in-out;
}

.brand-name {
    font-size: 36px;
    letter-spacing: 15px;
    font-weight: 200;
    text-transform: uppercase;
    animation: fadeInUp 1.5s ease-out;
}

.tagline {
    font-size: 10px;
    color: #ccc;
    letter-spacing: 6px;
    margin-top: 10px;
}

/* 4. Products Grid */
.collection { padding: 80px 10%; background-color: #0a0a0a; }
.section-title { margin-bottom: 50px; font-weight: 300; letter-spacing: 4px; text-align: center; text-transform: uppercase; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #111;
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-item:hover img { transform: scale(1.08); }

.view-btn {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 12px 25px;
    font-size: 10px;
    font-weight: bold;
    text-decoration: none;
    opacity: 0;
    transition: all 0.4s ease;
}

.product-item:hover .view-btn { opacity: 1; bottom: 35px; }

/* 5. About & Footer */
.about-section { padding: 100px 10%; text-align: center; background: #0f0f0f; }
.about-box { max-width: 600px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }
.view-btn-dark { display: inline-block; background: #fff; color: #000; padding: 12px 30px; text-decoration: none; font-size: 11px; font-weight: bold; margin-top: 20px; transition: 0.3s; }

/* FOOTER UPDATED - مەزنکرنا لۆگۆی */
footer {
    padding: 80px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    direction: ltr;
}

.footer-logo { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    opacity: 0.9; 
}

.footer-logo img { 
    height: 45px; /* قەبارێ لۆگۆی مەزنتر لێ هات */
}

.footer-logo span { 
    font-size: 18px; /* ناڤێ براندی مەزنتر لێ هات */
    letter-spacing: 3px;
    font-weight: 300;
}

.social-icons { display: flex; gap: 25px; flex-wrap: wrap; }
.social-icons a { color: #fff; font-size: 22px; transition: 0.3s; opacity: 0.6; }
.social-icons a:hover { transform: translateY(-5px); opacity: 1; color: #c5a059; }

/* Animations */
@keyframes fadeInLogo { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile Optimization */
@media (max-width: 768px) {
    .nav-links { display: none; }
    footer { 
        flex-direction: column; 
        gap: 40px; 
        text-align: center;
        padding: 60px 5%;
    }
    .footer-logo { flex-direction: column; }
    .social-icons { justify-content: center; }
}