/* Welcome Page CSS per LL CRM */
:root {
    --primary-color: #0056b3;
    --secondary-color: #003366;
    --accent-color: #4d94ff;
    --light-color: #e6f0ff;
    --dark-color: #001a33;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.welcome-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.welcome-title {
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.welcome-subtitle {
    font-weight: 300;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-text {
    color: #6c757d;
}

.shape {
    position: absolute;
    opacity: 0.2;
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--accent-color);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background-color: var(--light-color);
    bottom: -50px;
    left: 10%;
    transform: rotate(45deg);
}

.shape-3 {
    width: 150px;
    height: 150px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background-color: var(--accent-color);
    top: 30%;
    left: -50px;
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 2rem 0;
}

.footer a {
    color: var(--light-color);
}

.footer a:hover {
    color: white;
    text-decoration: none;
}

.welcome-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--light-color) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.welcome-content {
    position: relative;
    z-index: 1;
}

.welcome-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .welcome-title {
        font-size: 2.5rem;
    }
    
    .welcome-subtitle {
        font-size: 1.2rem;
    }
}
