@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;900&family=Lato:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background-color: #FFFFF5;
    color: #000;
}

h1, h2, h3, h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.hero {
    background-image: url('images/01-new-hero-bus2.png');
    background-size: cover;
    background-position: center 50%;
    height: 100vh;
    color: white;
    position: relative; /* Needed for absolute positioning of child elements */
}

.hero-content {
    position: absolute;
    top: 87%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(19,19,19,0.5);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 1.5rem 2.5rem;
    max-width: 85%;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 0;
    color: #FFC72C; /* Vibrant Yellow */
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.hero-centered-text {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.hero-centered-text h2 {
    font-size: 8rem; /* Even larger */
    color: #000; /* Black */
    margin: 0;
    text-shadow: -1px -1px 0 #FFF, 1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px 1px 0 #FFF;
}

.hero-centered-text p {
    font-family: 'Raleway', sans-serif;
    font-size: 2.3rem; /* Scaled proportionally */
    font-weight: bold;
    margin-top: 1rem;
    color: #000; /* Black */
    text-shadow: -1px -1px 0 #FFF, 1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px 1px 0 #FFF;
}

.content-section {
    padding: 5rem 15%;
}

.content-section.text-center {
    text-align: center;
}

.two-column-content {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 2rem;
}

.two-column-content .column {
    flex: 1;
    max-width: 45%;
    text-align: left;
}

.content-section h2 {
    font-size: 4.5rem;
    text-align: center;
    color: #000;
}

.content-section h3 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: none;
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: #000;
}

.content-section h4 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: none;
    margin-top: 2rem;
    color: #000;
}

.content-section p {
    font-size: 2.1rem;
    line-height: 1.7;
    color: #000;
}

.image-section {
    height: 50vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#image-one {
    background-image: url('images/02_middle-image.jpg');
}

#image-two {
    background-image: url('images/03_middle-bottom-image.jpg');
}

#image-three {
    background-image: url('images/04_bottom.jpg');
}

.image-full-width {
    width: 100%;
    height: 66vh;
    background-size: cover;
    background-position: center;
}

#image-four {
    display: none; /* Will be removed from HTML */
}


.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: white;
    color: #333333;
}

footer {
    padding: 2rem;
    background-color: #1a1a1a;
    font-size: 0.9rem;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #f0f0f0;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-centered-text h2 {
        font-size: 2rem;
    }
    .hero-centered-text p {
        font-size: 1rem;
    }
    .content-section {
        padding: 4rem 10%;
    }
    .content-section h2 {
        font-size: 2rem;
    }
}
