/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section img.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--golden-yellow);
    z-index: 2;
    text-align: center;
    margin: 0 auto;
}

.card-heading-overlay {
    font-size: 1rem;
    font-weight: bold;
    color: var(--golden-yellow);
}

.hero-content h1 {
    font-size: 1.5rem;
    color: #fff;
    margin: 5px 0 15px;
}

.hero-content p {
    font-size: 1rem;
    color: var(--golden-yellow);
}

.centered-word {
    display: inline-block;
    color: var(--golden-yellow);
}

.center-heading {
    text-align: center;
    color: #fff;
}

/* Main Content Container */
.transit-assist-container {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;
    color: #ffffff;
}

/* Paragraphs inside container */
.transit-assist-container p {
    width: 100%;
    margin: 0 auto 1.5rem auto;
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Section Titles */
.transit-assist-container h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--golden-yellow);
    font-size: 1.5rem;
}

/* Lists */
ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.list-wrapper {
    width: 100%;
    margin-bottom: 2rem;
}

.list-wrapper li {
    margin-bottom: 16px;
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Video Section */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    width: 100%;
    margin: 0 auto 2rem auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Demo Section */
.demo-section {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

/* Button Style */
.btn-primary {
    display: inline-block;
    background: var(--golden-yellow);
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* ===== Media queries ===== */

/* Please follow the mobile-first design philosophy strictly */
/* Breakpoints */
/* Extra small: none (<576px) */
/* Small: min-width: 576px; */
/* Medium: min-width: 768px; */
/* Large: min-width: 992px; */
/* Extra large: min-width: 1200px; */
/* Extra extra large: min-width: 1400px; */

/* Media queries for the screen size of 768px or wider */
@media screen and (min-width: 768px) {
    .hero-content {
        padding: 60px 40px;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .transit-assist-container {
        width: 80%;
        padding: 60px 0;
    }

    .transit-assist-container h2 {
        text-align: left;
        font-size: 2rem;
    }

    .transit-assist-container p {
        font-size: 1.1rem;
    }

    .list-wrapper li {
        font-size: 1.05rem;
    }
}