/* Proxima Pro - Afro-Luxe Theme */

:root {
    /* Palette */
    --primary-gold: #D4A574;
    --deep-charcoal: #1A1A1A;
    --terracotta: #C57B57;
    --sage-green: #7A8B7B;
    --cream: #F5F1EB;
    --accent-copper: #B87333;
    --white: #ffffff;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #D4A574 0%, #B87333 100%);
    --dark-overlay: linear-gradient(to bottom, rgba(26,26,26,0.3), rgba(26,26,26,0.9));

    /* Spacing */
    --spacing-unit: 8px;
    --container-width: 1200px;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--deep-charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--deep-charcoal);
}

h1 {
    font-size: 3.5rem; /* Scaled down slightly for mobile first approach, will adjust in media queries */
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white); /* For Hero */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

/* Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1001;
}

.progress-bar {
    height: 100%;
    background: var(--gold-gradient);
    width: 0%;
    transition: width 0.1s;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: background 0.3s, padding 0.3s;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid var(--primary-gold);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button.small {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.cta-button.header-cta {
    background: var(--gold-gradient);
    color: var(--white);
    opacity: 0; /* Hidden initially, shown on scroll via JS */
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.navbar.scrolled .header-cta {
    opacity: 1;
    transform: translateY(0);
}

.cta-button.primary {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--deep-charcoal);
    color: var(--deep-charcoal);
}

.cta-button.secondary:hover {
    background: var(--deep-charcoal);
    color: var(--primary-gold);
}

.cta-button .sub-text {
    display: block;
    font-size: 0.7em;
    font-weight: 400;
    text-transform: none;
    opacity: 0.9;
    margin-top: 4px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomSlow 20s infinite alternate;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
}

@keyframes zoomSlow {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.badge-scarcity {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.trust-text {
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Stats */
.stats-section {
    background: var(--deep-charcoal);
    color: var(--white);
    padding: 60px 0;
    margin-top: -80px; /* Overlap hero */
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Timeline */
.timeline-section {
    background: var(--cream);
}

.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(--primary-gold);
    margin: 16px auto 0;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
    background: var(--cream);
    padding: 0 10px;
    flex: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Products */
.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-visual {
    height: 300px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-visual img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s;
}

.product-card:hover .product-visual img {
    transform: scale(1.05);
}

.product-info {
    padding: 32px;
    text-align: center;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--terracotta);
    margin: 8px 0;
    font-weight: 700;
}

.roi-text {
    font-size: 0.9rem;
    color: var(--sage-green);
    font-weight: 600;
    margin-bottom: 24px;
}

.features-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    z-index: 10;
}

/* Testimonials */
.testimonials-section {
    background: var(--deep-charcoal);
    color: var(--white);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-gold); /* Fallback link color */
    margin: 0 auto 20px;
    background-size: cover;
    background-position: center;
}

/* Placeholder styling since generic avatars failed */
.avatar-placeholder.aminata {
    background-image: linear-gradient(135deg, #C57B57, #D4A574); 
    position: relative;
}
.avatar-placeholder.aminata::after {
    content: 'A';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 2rem;
}

.avatar-placeholder.kodjo {
    background-image: linear-gradient(135deg, #7A8B7B, #1A1A1A);
    position: relative;
}
.avatar-placeholder.kodjo::after {
    content: 'K';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 2rem;
}


blockquote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-gold);
}

/* Footer */
.footer {
    background: #111;
    color: var(--white);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.guarantee {
    color: var(--sage-green);
    margin: 20px 0 40px;
}

.tiny {
    font-size: 0.7em;
    font-weight: 400;
    opacity: 0.8;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* Scroll Animations */
.fade-in, .fade-in-left, .fade-in-right, .fade-in-up {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fade-in-up { transform: translateY(30px); }
.fade-in-left { transform: translateX(-30px); }
.fade-in-right { transform: translateX(30px); }

.visible {
    opacity: 1;
    transform: translate(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-content { padding-top: 60px; }
    .timeline { flex-direction: column; padding-left: 20px; }
    .timeline::before { left: 20px; top: 0; height: 100%; width: 2px; }
    .timeline-step { text-align: left; padding-left: 40px; margin-bottom: 40px; background: transparent; }
    .step-icon { position: absolute; left: -10px; top: -10px; }
    .stats-grid { grid-template-columns: 1fr; }
    .navbar .logo { font-size: 1.2rem; }
}
