/* Custom styles for lean, lightweight aesthetic */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

/* Hero section with background image */
.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/hero2.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
/*just a comment*/

/* Only enable fixed background on larger screens (not mobile) */
@media (min-width: 769px) {
    .hero-image {
        background-attachment: fixed;
    }
}

.hero-tagline {
    font-style: italic;
    opacity: 0.95;
    margin-top: 1rem;
}

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

/* Navbar refinements */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-item {
    transition: color 0.3s ease;
}

.navbar-item:hover {
    color: #3273dc;
}

/* Box shadows for cards */
.box {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Button refinements */
.button {
    transition: all 0.3s ease;
}

/* Card image styling */
.card .image img {
    object-fit: cover;
}

/* Footer styling */
.footer {
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
}

/* Process section styles */
.eyebrow {
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #3273dc;
    margin-bottom: 0.5rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    counter-reset: step-counter;
}

.step {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    gap: 1rem;
    counter-increment: step-counter;
    position: relative;
}

.step:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.step::before {
    content: counter(step-counter);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #3273dc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step h4 {
    color: #363636;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.step p {
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-image .title {
        font-size: 2rem;
    }

    .hero-image .subtitle {
        font-size: 1.25rem;
    }

    .step {
        flex-direction: column;
        align-items: flex-start;
    }

    .step::before {
        margin-bottom: 0.5rem;
    }
}
