@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --accent: #89c441;        /* Rumbuka Primary Green */
    --bg: #f8faf8;            /* Soft Ivory/Sage White */
    --text-dark: #1a2e1a;     /* Deep Forest Slate (replaces black) */
    --text-muted: #5c6b5c;    /* Muted Moss for descriptions */
    --glass: rgba(255, 255, 255, 0.7);
    --border: rgba(137, 196, 65, 0.2); /* Soft Green borders */
}

* { box-sizing: border-box; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text-dark); /* Changed from white to deep slate */
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* --- Navigation --- */
nav {
    position: fixed;
    width: 100%;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(15px);
    background: rgba(248, 250, 248, 0.8); /* Light glass effect */
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; letter-spacing: -1px; color: var(--text-dark); }

.nav-links a {
    color: var(--text-dark); /* Changed from white */
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links .nav-cta { color: var(--accent); font-weight: 700; }

/* --- Hero Section --- */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 100vh;
    align-items: center;
    padding: 0 5% 0 8%;
}

.badge {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 0.85;
    margin: 0;
    color: var(--text-dark); /* Changed from white */
}

.text-accent { color: var(--accent); }

.hero-content p {
    color: var(--text-muted); /* Changed from gray */
    max-width: 480px;
    font-size: 1.1rem;
    margin: 35px 0;
    line-height: 1.8;
}

.hero-actions { display: flex; align-items: center; gap: 30px; }

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent);
    color: white; /* Contrast against green */
    font-weight: 700;
    text-decoration: none;
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.secondary-link {
    color: var(--text-dark); /* Changed from white */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-image-container { position: relative; }

.hero-image {
    height: 75vh;
    background: url('https://images.unsplash.com/photo-1592982537447-7440770cbfc9?q=80&w=1000') center/cover;
    border-radius: 24px;
    filter: contrast(105%); /* Removed grayscale for a more alive look */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: white;
    color: var(--text-dark);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(137, 196, 65, 0.15);
}

/* --- Stats Bar --- */
.stats-bar {
    display: flex;
    gap: 80px;
    padding: 100px 8%;
    background: #ffffff;
    border-top: 1px solid var(--border);
}

.stat-item h2 { font-size: 3.5rem; color: var(--accent); margin: 0; font-family: 'Playfair Display', serif; }
.stat-item p { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-top: 5px; }

/* --- Catalog Section --- */
.catalog { padding: 120px 8%; background: var(--bg); }

.section-header h3 { font-size: 3rem; font-family: 'Playfair Display', serif; margin-bottom: 60px; color: var(--text-dark); }

.pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pro-card {
    background: white;
    border: 1px solid var(--border);
    padding: 45px;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.pro-card:hover {
    background: #ffffff;
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(137, 196, 65, 0.1);
}

.pro-card .tag {
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.pro-card h4 { font-size: 2rem; margin: 15px 0; font-family: 'Playfair Display', serif; color: var(--text-dark); }

/* --- Footer --- */
.main-footer {
    background: #f0f4f0; /* Soft moss gray instead of black */
    padding: 20px 1% 20px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 20px;
}

.footer-brand p { color: var(--text-muted); margin-top: 25px; line-height: 1.6; }

.footer-links h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; color: var(--text-dark); }

.footer-links a, .footer-links p {
    display: block;
    text-decoration: none;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.socials a { color: var(--text-muted); text-decoration: none; margin-left: 20px; }

/* Responsive adjustments */
@media (max-width: 1100px) {
    .pro-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; padding-top: 140px; }
    .hero-image-container { display: none; }
    .pro-grid { grid-template-columns: 1fr; }
    .stats-bar { flex-direction: column; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Logo presence */
.footer-logo-wrap {
    margin-bottom: 25px;
    display: inline-block;
}

.footer-logo {
    height: 60px;
    width: auto;
    /* Clean shadow instead of neon glow */
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05)); 
}