/* 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: transparent; /* دەکرێتە شەفاف بۆ ئەوەی بکەوێتە سەر وێنەکە */
    border-bottom: none;
    position: absolute; /* دەخرێتە سەر وێنەی باکگراوند */
    width: 100%;
    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: 45px; } /* لۆگۆکە گەورەتر کرا بۆ لاپتۆپ */
.logo-top span { font-size: 20px; 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; }

/* ئایکۆنی مێنوەکە لێرە دەشاردرێتەوە بۆ لاپتۆپ و ئایپاد و پی سی */
.menu-toggle {
    display: none;
}

/* 3. Hero Section */
.hero-section {
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

.main-logo-centered {
    height: 160px;
    width: auto; /* ڕێگری دەکات لە کشانی وێنەکە */
    object-fit: contain; /* شێوەی وێنەکە وەک خۆی دەپارێزێت */
    margin-bottom: 5px; /* بۆشایی ژێر لۆگۆکە کەمکرایەوە */
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    animation: fadeInLogo 2s ease-in-out;
}

.brand-name {
    font-size: 30px;
    letter-spacing: 2px;
    font-weight: 200;
    margin: 0; /* بۆشاییە زیادەکانی سەر و ژێری دەقەکە لابردران */
    text-transform: uppercase;
    animation: fadeInUp 1.5s ease-out;
}

.tagline {
    font-size: 10px;
    color: #ccc;
    letter-spacing: 6px;
    margin-top: 2px; /* بۆشایی نێوان ناوی براند و تاگلاین کەمکرایەوە */
}

/* 4. Products Grid */
.collection { padding: 80px 10%; background-color: #0a0a0a; } /* This line was already there, no change */
.section-title { margin-bottom: 30px; font-weight: 300; letter-spacing: 2px; text-align: center; text-transform: uppercase; white-space: nowrap; font-size: 18px; display: block; width: 100%; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    direction: ltr; /* Ensures cards and text align to the left regardless of RTL body */
}

.product-item {
    position: relative;
    overflow: hidden;
    background: #111;
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
    border-radius: 8px; /* Rounded corners for premium look */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
    text-decoration: none; /* لادانی هێڵی ژێر دەقەکان */
}

.product-item img {
    width: 100%;
    height: auto; /* Allow image height to adjust based on content */
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    border-radius: 8px 8px 0 0; /* Rounded top corners for image */
}

.product-item:hover img { 
    transform: scale(1.08); 
}

.product-item:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5); /* Stronger shadow on hover */
}

/* Shadow overlay to make text readable on images */
/* Removed overlay since text is now below image */

/* Premium styles for product name and price */
.product-name {
    padding: 0 15px;
    font-size: 0.75rem; /* Bchuk hate kirin */
    font-weight: 600;
    color: #fff; /* Color spi */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left; /* Lay left */
    margin-top: 12px;
    margin-bottom: 4px;
    z-index: 2;
}
.product-price {
    padding: 0 15px;
    font-size: 0.85rem; /* Bchuk hate kirin */
    font-weight: bold;
    color: #aaa; /* Color rsasi */
    letter-spacing: 0.5px;
    text-align: left; /* Lay left */
    margin-bottom: 5px;
    z-index: 2;
}

/* Removed .view-btn styles as they are no longer needed */
/*
.view-btn { ... }
.product-item:hover .view-btn { ... }
*/

/* 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; 
    gap: 10px; 
    opacity: 0.9; 
}

.footer-logo img { 
    height: 45px; /* قەبارێ لۆگۆی مەزنتر لێ هات */
    height: 45px;
}

.footer-logo span { 
    font-size: 18px; /* ناڤێ براندی مەزنتر لێ هات */
    letter-spacing: 3px;
    font-weight: 300;
    font-size: 20px;
   letter-spacing: 2px;
    font-weight: bold; font-family: 'Segoe UI', 'Tahoma', sans-serif;
}

.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) {
    /* Show hamburger on mobile */
    .menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        z-index: 10001;
    }

    .logo-top img {
        height: 35px; /* قەبارەی لۆگۆکە گەورەتر کرا */
        height: 35px;
    }

    .footer-logo img {
        height: 35px;
    }

    .logo-top span {
        font-size: 16px; /* قەبارەی دەقەکە گەورەتر کرا بۆ مۆبایل */
        font-size: 16px;
    }

    .footer-logo span {
        font-size: 16px;
    }

    /* Mobile menu styles */
    .nav-links {
        display: flex; /* Make it flex for mobile menu */
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateX(100%); /* Hidden off-screen by default */
        transition: transform 0.4s ease;
        z-index: 10000;
    }
    .nav-links.show {
        transform: translateX(0); /* Slide in when 'show' class is added */
    }
    .nav-links a { /* Adjust font size for mobile menu */
        font-size: 18px;
        font-weight: 700;
    }
    footer { 
        flex-direction: column; 
        gap: 40px; 
        text-align: center;
        padding: 60px 5%;
    }
    .footer-logo { flex-direction: column; }
    .social-icons { justify-content: center; }

    /* گۆڕینی لیستی بەرهەمەکان بۆ ٢ بە ٢ لەسەر مۆبایل */
    .collection {
        padding: 40px 5%; /* کەمکردنەوەی بۆشایی لایەکان */
    }
    .product-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px; /* بۆشایی نێوان بەرهەمەکان */
    }
    .product-item {
        width: calc(50% - 5px); /* نیوەی شاشەکە بۆ هەر دانەیەک */
        padding-bottom: 10px;
    }
    .product-name {
        font-size: 0.65rem; /* بچووککردنەوەی ناوی بەرهەم */
    }
    .product-price {
        font-size: 0.75rem; /* بچووککردنەوەی نرخ */
    }
.hero-section {
    height: 45vh; /* بەرزییەکەی زیاتر کەمکرایەوە بۆ مۆبایل */
    height: 70vh; /* بەرزییەکەی کەمێک زیاد کرایەوە بۆ ئەوەی جوانتر بێت */
    /* زیادکردنی چینێکی ڕەش لە سەر و خوارەوەی وێنەکە بۆ دیاریکردنی نووسینەکان */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.4) 100%), url('background.jpeg'); /* ڕەشی خوارەوە کەمتر کرایەوە */
    background-size: cover; /* دڵنیایی دەدات کە وێنەکە تەواوی ڕووبەرەکە دادەپۆشێت */
    background-position: center; /* وێنەکە لە ناوەند جێگیر دەکات */
    background-repeat: no-repeat; /* ڕێگری دەکات لە دووبارەبوونەوەی وێنەکە */
}

.main-logo-centered {
    height: 200px;
    height: 140px; /* قەبارەیەکی گونجاو بۆ بەرزی 60vh تاوەکو تێکنەچێت */
    width: auto; /* ڕێگری دەکات لە کشانی وێنەکە */
    object-fit: contain; /* شێوەی وێنەکە وەک خۆی دەپارێزێت */
    margin-bottom: 5px; /* بۆشایی ژێر لۆگۆکە لە مۆبایلدا کەمکرایەوە */
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    animation: fadeInLogo 2s ease-in-out;
}

}
