/* Landing Page Styles for PmiPilot */

.landing-page {
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 40vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
}

.cta-button {
    padding: 16px 48px !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3) !important;
    transition: all 0.3s ease !important;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4) !important;
}

/* Cards and Papers */
.mud-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mud-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}

/* Feature Icons */
.mud-icon-root {
    transition: transform 0.3s ease;
}

.mud-card:hover .mud-icon-root {
    transform: scale(1.1);
}

/* Avatars in How It Works */
.mud-avatar {
    transition: transform 0.3s ease;
}

.mud-avatar:hover {
    transform: scale(1.1);
}

/* Stats Section */
.landing-page .mud-typography-h4 {
    font-weight: 700;
}

/* Testimonial Cards */
.landing-page .mud-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-section {
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .cta-button {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Animation for elements on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-page .mud-container {
    animation: fadeInUp 0.6s ease-out;
}

/* Gradient backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-success {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Border utilities */
.border-left-primary {
    border-left: 4px solid var(--mud-palette-primary);
}

.border-left-secondary {
    border-left: 4px solid var(--mud-palette-secondary);
}

.border-left-success {
    border-left: 4px solid var(--mud-palette-success);
}

/* Spacing utilities */
.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

/* Height utilities */
.h-100 {
    height: 100%;
}

/* Font weight utilities */
.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-semibold {
    font-weight: 600 !important;
}
