﻿.hero-banner {
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    height: 70vh;
    color: white;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    align-content: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 0.5rem; /* Optional: Add some padding */
}
 

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.85;
}

.hero-button {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

.hero-content {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.parallax {
    height: 70vh;    
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-section {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.parallax-image-1 {
    background-image: url('/images/hero-bg.jpg'); /* Replace with your image */
}

.parallax-image-2 {
    background-image: url('your-image-2.jpg'); /* Replace with your image */
}

.section-background {   
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

/*background-color: #f0f0f0;*/ /* Light grey background */
/*background-color: #e0e0e0;*/ /* Slightly darker grey background */
/*background-color: #d0d0d0;*/ /* Even darker grey background */
