/* ============================================
   CMAGICAPP - Light Mode & Red/Purple Theme
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary-red: #E63946;
    --accent-purple: #6D597A;
    --text-dark: #2B2D42;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;

    /* Gradients */
    --brand-gradient: linear-gradient(135deg, var(--primary-red), var(--accent-purple));
    --subtle-gradient: linear-gradient(180deg, rgba(230, 57, 70, 0.03) 0%, rgba(109, 89, 122, 0.03) 100%);
}

/* ---------- Base ---------- */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white) !important;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

/* ---------- Utility Classes ---------- */
.text-primary-red {
    color: var(--primary-red) !important;
}

.text-accent-purple {
    color: var(--accent-purple) !important;
}

.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-subtle {
    background: var(--bg-light);
}

/* ---------- Components ---------- */
.navbar-glass {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.btn-brand {
    background: var(--brand-gradient);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
    color: white;
}

.btn-outline-brand {
    background: transparent;
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-brand:hover {
    background: var(--accent-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(109, 89, 122, 0.15);
}

/* ---------- Cards ---------- */
.feature-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(230, 57, 70, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ---------- Sections ---------- */
.hero-section {
    padding: 100px 0 80px;
    background: radial-gradient(circle at top right, rgba(230, 57, 70, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(109, 89, 122, 0.05), transparent 40%);
}

.section-padding {
    padding: 80px 0;
}