/* ==================================================
   BF BRASIL - style.css (النسخة النهائية المعدلة)
   خلفية موحدة #3F234B - شعار كامل - فونتات متناسقة - Hero مع صورة
   ================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #3F234B;         /* اللون الأساسي لكل الخلفيات */
    --accent:  #C6A75E;         /* الذهبي */
    --text:    #f0e9ff;         /* نصوص رئيسية */
    --text-light: #d4c8ff;      /* نصوص ثانوية */
    --border:  rgba(198,167,94, 0.25);  /* حدود خفيفة */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.7;
}

/* إجبار كل الخلفيات على اللون الثابت بدون تدرجات أو صور إضافية */
body,
.hero,
section,
footer,
.py-5,
.container,
.card,
.rounded,
.shadow,
.gold-frame,
.bg-dark,
.bg-gradient,
.position-absolute,
.hero::before {
    background-color: var(--primary) !important;
    background-image: none !important;
}

/* Navbar - حل مشكلة الشعار المقطوع */
.navbar {
    background-color: rgba(63, 35, 75, 0.94) !important;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0 !important;
    min-height: 90px;
}

.navbar-brand img {
    max-height: 65px;
    width: auto;
}

/* Nav links */
.nav-link {
    color: white !important;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
}

/* أزرار */
.btn-gold,
.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    transition: all 0.35s ease;
}

.btn-gold:hover,
.btn-primary:hover {
    background-color: #b8974e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198,167,94,0.25);
}

.btn-outline-gold {
    border: 1.5px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.35s;
}

.btn-outline-gold:hover {
    background-color: var(--accent);
    color: var(--primary);
}

/* Hero - مع صورة كوفر */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* صورة الخلفية في الـ hero فقط (مع opacity منخفضة) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/hero.jpg') center/cover no-repeat;
    opacity: 0.18;          /* شفافية خفيفة جدًا عشان اللون #3F234B يبان */
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* أحجام الفونتات في الـ hero (أكبر شوية على الديسكتوب، أصغر على الموبايل) */
.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero .lead {
    font-size: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

/* Responsive للفونتات عشان ما تبقاش كبيرة أوي على الموبايل */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.8rem; }
    .hero h2 { font-size: 2.5rem; }
    .hero .lead { font-size: 1.35rem; }
}

@media (max-width: 576px) {
    .hero h1 { font-size: 3rem; }
    .hero h2 { font-size: 2rem; }
    .hero .lead { font-size: 1.2rem; }
    .btn-lg { padding: 0.8rem 2rem; font-size: 1.1rem; }
}

/* Glow للعنوان الذهبي */
.glow-gold {
    text-shadow: 0 0 25px rgba(198,167,94, 0.45);
}

/* عناوين الأقسام */
.section-title {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20%;
    width: 60%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
}

/* إطارات ذهبية */
.gold-frame {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.8rem;
    transition: all 0.35s ease;
}

.gold-frame:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(198,167,94,0.12);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.35);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(37,211,102,0.45);
}

/* Footer */
footer {
    background-color: var(--primary);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    color: var(--text-light);
}

footer a {
    color: var(--text-light);
    text-decoration: none;
}

footer a:hover {
    color: var(--accent);
}

/* Cards & Images */
.card,
.product-card img {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.35s;
}

.card:hover,
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(198,167,94,0.12);
}