.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height for desktop */
    overflow: hidden;
    background: #000;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Positioning elements OVER the image */
.hero-overlay {
    position: absolute;
    bottom: 50px; /* Space from bottom edge */
    left: 0;
    right: 0;
    padding: 0 60px; /* Space from side edges */
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
}

.text-content h2 {
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

/* Navigation Box Styling */
.nav-wrapper {
    border: 1px solid rgba(255, 255, 255, 0.4); /* The box around the dashes */
    padding: 15px 25px;
}

.nav-dashes {
    display: flex;
    gap: 15px;
}

.dash {
    width: 40px;
    height: 3px;
    background-color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dash.active {
    background-color: #ff0000; /* Red dash for active slide */
}

/* Mobile Adjustment: If you want it to look different on phones */
@media (max-width: 768px) {
    .hero-overlay {
        flex-direction: column;
        align-items: flex-start;
        bottom: 0px;
        padding: 30px;
        gap: 20px;
        background-color: #000;

    }
    .text-content h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 576px) {
    .text-content h2 {
        font-size: 30px !important;
        line-height: 1.2;
        letter-spacing: 0 !important;
    }
}