/* ===================================
   GLOBAL STYLES - UPDATED WEST AFRICAN THEME
   =================================== */

:root {
    --primary-color: #D35400;
    /* Terracotta/Warm African earth */
    --secondary-color: #2C3E50;
    /* Deep navy from logo */
    --accent-color: #F39C12;
    /* Golden yellow */
    --light-bg: #FFF8F0;
    --dark-bg: #1A2A3A;
    --text-dark: #2C3E50;
    --text-light: #5D6E7E;
    --border-color: #E8DCC8;
    --success-color: #27AE60;
    --danger-color: #E74C3C;
    --warning-color: #F1C40F;
    --info-color: #3498DB;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    background: #fffaf5;
    line-height: 1.6;
}

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

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    color: #2C3E50;
}

.btn {
    border-radius: 50px;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    color: white;
}

.btn-primary:hover {
    background: #E67E22;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    margin: 0.5rem auto;
    border-radius: 2px;
}

.featured-section,
.why-us {
    padding: 4rem 0;
}

.category-card,
.trust-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border-bottom: 3px solid var(--accent-color);
}

.category-card:hover,
.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-card i,
.trust-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .category-card {
        padding: 1rem;
    }
}