/* --------------------------------------------------------------------------
   Mimmi Web - Clean, Minimal Landing Page Styling
   -------------------------------------------------------------------------- */

:root {
    --primary-color: #D93B3B;
    --primary-hover: #b82828;
    --secondary-color: #0F172A;
    --accent-gold: #F59E0B;
    --bg-light: #F8FAFC;
    --card-border: #E2E8F0;
    --text-muted: #64748B;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #1E293B;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #991b1b 0%, #D93B3B 100%);
    font-size: 0.85rem;
}

/* Brand Navbar */
.brand-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.brand-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.navbar .nav-link {
    font-weight: 500;
    color: #334155;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-color);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.2s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #111827 0%, #1f2937 55%, #991b1b 100%);
    min-height: 480px;
}

.hero-title {
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Product Cards */
.product-card {
    border: 1px solid var(--card-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08) !important;
}

.product-img-box {
    height: 220px;
}

.object-fit-cover {
    object-fit: cover;
}

.card-title {
    font-size: 1.2rem;
}

/* Feature Icons */
.feature-icon {
    width: 60px;
    height: 60px;
}

/* Contact Icons */
.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.1rem;
    border: 1px solid var(--card-border);
}

/* Footer */
.footer-section {
    background-color: #0F172A;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
    padding-left: 2px;
}

/* Policy Content */
.policy-content h2, 
.policy-content h3, 
.policy-content h4, 
.policy-content h5 {
    color: #0F172A;
    font-weight: 700;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

.policy-content p, 
.policy-content li {
    color: #475569;
    line-height: 1.7;
}

.policy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
