/* Landing Page Specific Styles */

.hero-section {
    background: linear-gradient(135deg, #2A9D8F 0%, #264653 100%);
    color: white;
}

.stat-box {
    transition: transform 0.2s ease-in-out;
    border: 2px solid #dee2e6;
    background: #f8f9fa;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-card {
    transition: transform 0.2s ease-in-out;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.progressly-logo-hero {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.btn-warning {
    background-color: #E9C46A;
    border-color: #E9C46A;
    color: #264653;
    font-weight: 600;
}

.btn-warning:hover {
    background-color: #F4A261;
    border-color: #F4A261;
    color: #264653;
}

.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: white;
}

.bg-gradient {
    background: linear-gradient(135deg, #E9C46A 0%, #F4A261 100%) !important;
}

.card-header.bg-warning {
    background-color: #E9C46A !important;
    border-bottom: 1px solid #F4A261;
}

.text-primary {
    color: #2A9D8F !important;
}

.border-primary {
    border-color: #2A9D8F !important;
}

.border-success {
    border-color: #90BE6D !important;
}

.border-warning {
    border-color: #E9C46A !important;
}

.border-info {
    border-color: #264653 !important;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom spacing for sections */
.mb-5 {
    margin-bottom: 3rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .progressly-logo-hero {
        max-height: 80px !important;
    }
}

/* Animation for call-to-action buttons */
.btn-lg {
    transition: all 0.3s ease;
}

.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Custom alert styling */
.alert-info {
    background-color: rgba(42, 157, 143, 0.1);
    border-color: #2A9D8F;
    color: #264653;
}

.alert-warning {
    background-color: rgba(233, 196, 106, 0.1);
    border-color: #E9C46A;
    color: #264653;
}

/* Social proof styling */
.stat-box h3 {
    color: #E76F51;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}