/* Landing Page Styles */
.landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.logo {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    max-width: 600px;
}

.role-selection {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.role-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    width: 280px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: #667eea;
}

.role-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.role-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.role-description {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .role-selection {
        flex-direction: column;
        align-items: center;
    }

    .role-card {
        width: 100%;
        max-width: 300px;
    }

    .logo {
        font-size: 2rem;
    }
}