/* Ervais Custom Styles */

.color-gold {
    color: #FFA500 !important;
}

.color-ervais {
    color: #14A9FF !important;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, #14A9FF 0%, #6fc5ff 100%);
}

.bg-secondary-gradient {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.hero-section {
    padding: 120px 0 60px;
    min-height: 500px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #14A9FF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tx-4 {
    font-size: 1.3rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
}

.cta-button {
    padding: 12px 36px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
}

.app-store-btn {
    transition: transform 0.3s ease;
}

.app-store-btn:hover {
    transform: translateY(-5px);
}

.feature-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-image {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}