/* style.css - Updated for a Brighter, High-End African Aesthetic */
:root {
    --bg-color: #FFFCF9; /* Brighter, warm cream background */
    --text-color: #1A1A1A; /* */
    --accent: #C05621; /* Rich Terracotta Orange */
    --accent-hover: #A0451A;
    --gray: #4A5568; /* */
    --white: #ffffff; /* */
    --font-head: 'Playfair Display', serif; /* Luxury Feel */
    --font-body: 'Inter', sans-serif; /* Clean Modern */
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    font-family: var(--font-body);
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3 { 
    font-family: var(--font-head); 
    font-weight: 700; 
    line-height: 1.2; 
}

a { 
    text-decoration: none; 
    transition: 0.3s ease; 
}

img { 
    max-width: 100%; 
    display: block; 
}

/* --- MODERN NAVIGATION --- */
header {
    background: rgba(255, 255, 255, 0.98); /* Brighter, more solid background */
    backdrop-filter: blur(10px);
    padding: 1rem 5%; /* Slightly tighter padding for a professional look */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

/* --- LOGO STYLING --- */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 65px; /* Slightly larger logo for brand impact */
    width: auto;  
    object-fit: contain;
}

/* Desktop Menu */
.nav-links { 
    display: flex; 
    gap: 40px; 
}

.nav-links a { 
    color: var(--text-color); 
    font-weight: 600; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.nav-links a:hover { 
    color: var(--accent); 
}

.nav-links .cta-btn { 
    background: var(--accent); /* Switched to accent for more "eye-catching" UI */
    color: var(--white); 
    padding: 12px 28px; 
    border-radius: 4px; /* Professional squared edges */
}

.nav-links .cta-btn:hover { 
    background: var(--accent-hover); 
}

/* Mobile Menu Toggle */
.menu-toggle { 
    display: none; 
    font-size: 1.8rem; 
    cursor: pointer; 
}

/* --- BRIGHTER HERO SECTION --- */
.hero {
    height: 85vh;
    /* Replaced dark linear gradient with a lighter, cleaner overlay */
    background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.3)), 
                url('assets/images/IMG-20260115-WA0234.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 80px;
}

.hero-content {
    background: rgba(255, 255, 255, 0.95); /* Floating bright card for text readability */
    padding: 60px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    max-width: 750px;
    border-top: 5px solid var(--accent); /* African brand accent */
}

.hero-content h1 { 
    font-size: 3.5rem; 
    color: #1A1A1A; 
    margin-bottom: 20px; 
    animation: fadeInUp 1s ease; 
}

.hero-content p { 
    color: var(--gray); 
    font-size: 1.2rem; 
    margin-bottom: 30px; 
    animation: fadeInUp 1.2s ease; 
}

.hero-btn {
    background: var(--accent); 
    color: var(--white); 
    padding: 15px 40px; 
    font-size: 1rem; 
    border-radius: 4px;
    font-weight: 600; 
    box-shadow: 0 10px 20px rgba(192, 86, 33, 0.2);
}

.hero-btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 30px rgba(192, 86, 33, 0.4); 
}

/* --- SECTIONS & GRIDS --- */
.section { 
    padding: 100px 8%; 
}

.section-title { 
    text-align: center; 
    font-size: 2.5rem; 
    margin-bottom: 60px; 
    position: relative; 
}

.section-title::after { 
    content: ''; 
    display: block; 
    width: 60px; 
    height: 3px; 
    background: var(--accent); 
    margin: 15px auto 0; 
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

/* --- PRODUCT CARDS --- */
.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
    border: 1px solid #F0F0F0;
}

.card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-img-container { 
    height: 320px; 
    overflow: hidden; 
}

.card-img-container img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
}

.card:hover .card-img-container img { 
    transform: scale(1.05); 
}

.card-body { 
    padding: 30px; 
    text-align: center; 
}

.card h3 { 
    font-size: 1.4rem; 
    margin-bottom: 12px; 
    color: #2D3748; 
}

.card p { 
    color: var(--gray); 
    font-size: 0.95rem; 
    margin-bottom: 25px; 
    min-height: 50px;
}

.card-btn { 
    background: #F7FAFC;
    color: var(--accent); 
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold; 
    display: inline-block;
}

.card-btn:hover { 
    background: var(--accent);
    color: var(--white);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    header { padding: 1rem 5%; }
    .logo img { height: 55px; }
    
    .nav-links {
        display: none; 
        position: absolute; 
        top: 70px; 
        left: 0; 
        width: 100%;
        background: var(--white); 
        flex-direction: column; 
        padding: 40px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
        text-align: center;
        gap: 25px;
    }
    
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .hero-content h1 { font-size: 2.2rem; }
    .grid { grid-template-columns: 1fr; } 
    .section { padding: 60px 5%; }
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}