/* MIMIFTAH Brand Styling for Elementor */

:root {
    --brand: #C49EFF;
    --brand-dark: #A78BFF;
    --brand-light: #FF9FD8;
    --bg: #0B0820;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255,255,255,0.85);
    --text-muted: rgba(255,255,255,0.7);
    --border: rgba(167,139,255,0.1);
}

/* Global Typography */
body, .elementor {
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Links */
a {
    color: var(--brand);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--brand-light);
}

/* Buttons */
.btn,
button,
input[type="button"],
input[type="submit"],
.elementor-button {
    font-family: "Manrope", sans-serif;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-primary,
.elementor-button.elementor-button-primary {
    background: linear-gradient(135deg, #C49EFF 0%, #FF9FD8 100%);
    color: #fff;
    border: none;
    box-shadow: 0 6px 28px rgba(196, 158, 255, 0.4);
}

.btn-primary:hover,
.elementor-button.elementor-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(196, 158, 255, 0.55);
}

.btn-secondary,
.elementor-button.elementor-button-secondary {
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover,
.elementor-button.elementor-button-secondary:hover {
    border-color: var(--brand);
    color: var(--brand);
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.elementor-heading-title {
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Lists */
ul, ol {
    list-style-position: inside;
}

li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

/* Forms */
input,
textarea,
select {
    font-family: "Manrope", sans-serif;
    border-radius: 8px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
    transition: border-color 0.25s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(196, 158, 255, 0.1);
}

/* Code Blocks */
code,
pre {
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 4px 8px;
    color: var(--brand-light);
    font-family: 'Courier New', monospace;
}

pre {
    padding: 16px;
    overflow-x: auto;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 12px;
    border: 1px solid var(--border);
    text-align: left;
}

th {
    background: rgba(167,139,255,0.1);
    font-weight: 700;
    color: var(--text-primary);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid var(--brand);
    padding-left: 16px;
    margin-left: 0;
    color: var(--text-muted);
    font-style: italic;
}

/* Horizontal Rules */
hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0;
}

/* Utility Classes */
.text-brand {
    color: var(--brand);
}

.text-muted {
    color: var(--text-muted);
}

.bg-dark {
    background: var(--bg);
}

.rounded-lg {
    border-radius: 20px;
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}
