/* 
 * Main Styles for Mario Araujo Financial Advisor Website
 * Version: 1.0
 */

/* General Styles */
body {
    padding-bottom: 70px; /* Space for fixed footer */
}

/* Hero Section */
.hero-section {
    min-height: 220px;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Make sure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Add some spacing to sections */
section {
    margin-bottom: 3rem;
}

/* Custom card hover effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Card animation for scroll */
.card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Add a staggered effect for multiple cards */
.row .card:nth-child(1) { transition-delay: 0.1s; }
.row .card:nth-child(2) { transition-delay: 0.2s; }
.row .card:nth-child(3) { transition-delay: 0.3s; }
.row .card:nth-child(4) { transition-delay: 0.4s; }
.row .card:nth-child(5) { transition-delay: 0.5s; }
.row .card:nth-child(6) { transition-delay: 0.6s; }

/* Footer adjustments */
.footer {
    background-color: rgba(248, 249, 250, 0.95) !important;
}

/* Testimonial styling */
.bi-quote {
    font-size: 1.25rem;
    color: #6c757d;
    opacity: 0.5;
}

/* Service icons styling */
.bg-primary.bg-opacity-10 {
    background-color: rgba(13, 110, 253, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center !important;
        min-height: 180px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

/* Custom button styling */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Additional accessibility improvements */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Custom list styling */
ul:not(.navbar-nav, .list-unstyled) li {
    margin-bottom: 0.5rem;
} 