/* Marketing Base Styles - Shared between RO and EN layouts */

:root {
    /* Culori principale - mai moderne și profesionale */
    --color-primary: #FF714B;     /* Orange */
    --color-secondary: #C71E64;   /* Magenta */
    --color-accent: #4D2D8C;      /* Purple */
    --color-dark: #1F2937;        /* Dark Gray */
    --color-light: #F2F2F2;       /* Light Gray */
    --color-text: #111827;        /* Text Black */
    --color-text-secondary: #6B7280; /* Gray Text */

    /* Gradient-uri */
    --gradient-primary: linear-gradient(135deg, #FF714B 0%, #C71E64 100%);
    --gradient-secondary: linear-gradient(135deg, #C71E64 0%, #4D2D8C 100%);
    --gradient-accent: linear-gradient(135deg, #4D2D8C 0%, #C71E64 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
    font-family: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    font-weight: 700;
}

body {
    font-family: 'Inter', 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
}

/* Gradient backgrounds */
.gradient-primary {
    background: var(--gradient-primary);
}

.gradient-secondary {
    background: var(--gradient-secondary);
}

.gradient-accent {
    background: var(--gradient-accent);
}

/* Text gradients */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom shadows */
.shadow-primary {
    box-shadow: 0 4px 14px 0 rgba(255, 113, 75, 0.15);
}

.shadow-secondary {
    box-shadow: 0 4px 14px 0 rgba(199, 30, 100, 0.15);
}

.shadow-soft {
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
}

/* Hover effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Glass morphism */
.glass {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Mega menu animations */
.mega-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Button styles */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--color-text);
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    display: inline-block;
    letter-spacing: -0.01em;
}

.btn-secondary:hover {
    background: var(--color-light);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mobile menu animation */
@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.mobile-menu {
    animation: slideIn 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF714B;
}
