/*
Theme Name: O'Intimity
Theme URI: https://ointimity.bj
Author: Antigravity
Description: High-end Afro-Luxe landing page for O'Intimity Benin.
Version: 1.0
*/

:root {
    --primary-color: #4A0E18;
    /* Bordeaux profond */
    --secondary-color: #D4A574;
    /* Or rose/Cuivre satiné */
    --accent-color: #B85C50;
    /* Terracotta rosé */
    --text-light: #F5EBE0;
    /* Crème/Beige cassé */
    --text-dark: #2C1810;
    /* Brun chocolat */
    --whatsapp-color: #25D366;
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.serif {
    font-family: 'Playfair Display', serif;
}

.italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

section {
    padding: 100px 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-accent {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 165, 116, 0.3);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(44, 24, 16, 0.4), rgba(44, 24, 16, 0.7)), url('assets/hero.jpg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero .trust-bar {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    justify-content: center;
    white-space: nowrap;
}

/* PROBLEM SECTION */
.problem {
    background-color: var(--text-dark);
}

.problem h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.problem-card {
    background: rgba(245, 235, 224, 0.05);
    padding: 40px;
    border-radius: 15px;
    border-left: 2px solid var(--secondary-color);
}

.problem-card h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

/* FORMULES */
.pricing {
    background-color: var(--primary-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pricing-card {
    border: 1px solid var(--secondary-color);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: var(--transition-fast);
}

.pricing-card.highlight {
    background: rgba(212, 165, 116, 0.1);
    transform: scale(1.05);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price {
    font-size: 2.5rem;
    margin: 20px 0;
    color: var(--secondary-color);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card li {
    margin-bottom: 10px;
}

/* WHATSAPP STICKY */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero .trust-bar {
        flex-direction: column;
        gap: 10px;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }

    .pricing-card.highlight {
        transform: scale(1);
        margin-top: 30px;
    }
}