/*
Theme Name: CabinInspro Pro - Cozy Retreat Edition
Author: CabinInspro Team
Version: 4.5.0
*/

/* 1. الألوان والقياسات الأساسية */
:root {
    /* ألوان الغابة واللوغ (The Woods) */
    --primary: #3d2b1f;        /* بني شوكولا دافئ */
    --primary-light: #5d4637;
    --primary-dark: #251a13;
    
    /* ألوان الإضاءة (Warm Glow) */
    --secondary: #d4a373;      /* أصفر خردلي */
    --accent: #8b7355;         /* ترابي للتحسينات */
    
    /* الخلفيات (Inviting Backgrounds) */
    --bg-light: #fefae0;       /* كريمي فاتح (الأساسي) */
    --bg-cream: #faedcd;       /* كريمي أغمق للأقسام */
    --bg-dark: #281f19;        /* بني غامق جدا للـ Footer */
    --white: #ffffff;

    /* النصوص (Readability) */
    --text-dark: #1f1a17;      /* بني مائل للسواد */
    --text-gray: #5e5449;      
    --text-muted: #bdae9e;

    /* تفاصيل الواجهة */
    --border: #e9edc9;
    --radius: 12px;
    --shadow: 0 4px 12px rgba(61, 43, 31, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. الإعدادات العامة للموقع */
body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-weight: 700;
}

/* 3. الـ Top Bar (اللون بني والروابط بيضاء) */
.top-bar {
    background: var(--primary);
    color: var(--white);
}

.top-bar-social a, .top-bar-links a, .top-bar-date {
    color: var(--white) !important;
}

.top-bar-social a:hover, .top-bar-links a:hover {
    color: var(--secondary) !important;
}

/* 4. الـ Header واللوغو */
.main-header {
    background: var(--white);
    border-bottom: 2px solid var(--secondary);
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    color: var(--white);
}

.logo-text {
    color: var(--primary);
}

/* 5. الأزرار (خردلي كيولي بني عند اللمس) */
.btn-primary, button, input[type="submit"] {
    background-color: var(--secondary) !important;
    color: var(--white) !important;
    border-radius: var(--radius);
    padding: 12px 28px;
    border: none;
    transition: var(--transition);
}

.btn-primary:hover, button:hover, input[type="submit"]:hover {
    background-color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(61, 43, 31, 0.15);
}

/* 6. زر البحث (Search Button) */
.search-btn {
    background: var(--bg-light) !important;
    color: var(--primary) !important;
    border: 2px solid var(--secondary) !important;
}

/* 7. الـ Footer */
.site-footer {
    background-color: var(--bg-dark);
    color: var(--white);
}

.footer-social a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
}

.footer-social a:hover {
    background: var(--secondary) !important;
}

/* 8. البطاقات (Article Cards) */
.article-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}