/**
 * File: page_styles/index_styles.css
 * Homepage Specific Styles
 * v1.0.0 - April 2025
 * 
 * These styles apply only to the homepage (index.html)
 */
 
/* Hero section styling */
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.3rem 1rem;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding-top: 0;
}

.hero-image {
    margin: 1.7rem auto;
    max-width: 68%;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Inline CTA styling for "Get Started" */
.inline-cta {
    display: inline-block;
    margin-left: 10px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.4s;
}

.inline-cta:hover {
    background-color: #2980b9;
}

/* Add more space at bottom of page for footer */
.bottom-spacer {
    height: 120px;
}

/* Main page section styling */
.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.features h2,
.how-it-works h2,
.testimonials h2,
.get-started h2,
.welcome-back h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.get-started p,
.welcome-back p {
    text-align: center;
}

/* Step indicators */
.step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    margin-bottom: 10px;
}

/* Adjust emergency section spacing */
.emergency-info {
    margin-bottom: 10px;
}

.emergency-content {
    padding: 15px 0;
}

.emergency-note {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Make hero image smaller but visible on mobile */
    .hero-image {
        width: 80%;
        margin: 1rem auto;
        display: block;
    }

    .hero-image img {
        max-width: 84%;
        height: auto;
        display: block;
    }
}