/* File: main/static/main/css/home.css */

/* General icon styling (can be in base.css if used everywhere) */
i.fa, i.fas, i.far, i.fab {
    font-size: 1.1em;
    vertical-align: -0.15em;
    margin-right: 8px;
}

/* Hero Section base styles (background is set in home.html) */
.hero-section {
    position: relative;
    padding: 6rem 0;
    color: white;
}

.hero-content h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.hero-content p {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero-content .btn-primary, .hero-content .btn-secondary {
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* Features Section styles */
.features-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.feature-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 1.5rem;
    border-radius: 12px;
    background: #fff;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.feature-card img {
    height: 65px;
    width: auto;
    margin-bottom: 1.25rem;
    object-fit: contain;
}

/* Mission Section styles */
.mission-section {
    background-color: #f8f9fa;
    padding-top: 4rem;
    padding-bottom: 4rem;
}