/* VONEXWALL Theme Base Styles */

:root {
    --gradient: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    --text-white: var(--text-primary);
    --text-muted: var(--text-secondary);
    --surface-dark: var(--bg-app);
    --bg-dark: var(--bg-app);
    --primary-blue: #7C3AED;
    --purple: #D946EF;
}

/* Subtle Card Animations */
.card, .offer-card, .dashboard-card {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: none;
    border-radius: 16px;
    background: var(--sidebar-bg); /* Match header theme */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card:hover, .offer-card:hover, .dashboard-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.2); /* Cyan shadow */
}

/* VONEXWALL Buttons */
.btn-primary, .btn-wateenx {
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    border: none;
    color: white;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover, .btn-wateenx:hover {
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
    background: linear-gradient(135deg, #c084fc, #7c3aed);
    transform: translateY(-2px);
    color: white; /* preserve text color */
}

.btn-primary:active, .btn-wateenx:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.4);
}

/* Glassmorphism Elements */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

[data-theme="light"] .glass-panel {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-primary);
}

/* Gradient Text for modern look */
.text-gradient {
    background: linear-gradient(135deg, #7C3AED, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Offer Grid setup */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

/* Badges */
.badge-wateenx, .badge-wateenx {
    background-color: rgba(124, 58, 237, 0.15);
    color: #7C3AED;
    border-radius: 8px;
    padding: 6px 12px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Form inputs styling */
.form-control, .form-select {
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-app);
    color: var(--text-primary);
    padding: 12px 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: #7C3AED;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
    background: var(--bg-app);
    color: var(--text-primary);
}
