/* Hero Section with Background Image */
.hero {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    background: url('/images/hero.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.8));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-logo {
    max-width: 300px;
    margin-bottom: 2rem;
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.hero .btn {
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero {
        padding: 6rem 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-logo {
        max-width: 200px;
    }

    .hero .lead {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero .btn {
        width: 100%;
        max-width: 250px;
    }
}