.chooser button {
    padding: 8px;
    background: none;
    border: solid 2px #fff;
    color: #fff;
    font-size: 12pt;
}

.chooser button:hover{
    background-color: #fff;
    color: #6200EA;
}

:root {
    --primary-color: #007bff;
    --transition-speed: 0.8s;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust height for hero section */
    overflow: hidden;
}

input[type="radio"] { display: none; }

.hero-slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform var(--transition-speed) cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-item {
    width: 33.333%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

/* Backgrounds */
.bg-hero-1 { background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4'); }
.bg-hero-2 { background-image: url('https://images.unsplash.com/photo-1531482615713-2afd69097998'); }
.bg-hero-3 { background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f'); }

/* Dark Overlay for Readability */
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust darkness here */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 700px;
    padding: 20px;
}

.hero-content h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.hero-content p { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.9; }

.cta-button {
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s;
}

.cta-button:hover { transform: scale(1.05); }

/* Slide Navigation Logic */
#h-slide1:checked ~ .hero-slides { transform: translateX(0); }
#h-slide2:checked ~ .hero-slides { transform: translateX(-33.333%); }
#h-slide3:checked ~ .hero-slides { transform: translateX(-66.666%); }

/* Navigation Dots */
.hero-nav {
    position: absolute;
    bottom: 30px;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-nav label {
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
}

#h-slide1:checked ~ .hero-nav label[for="h-slide1"],
#h-slide2:checked ~ .hero-nav label[for="h-slide2"],
#h-slide3:checked ~ .hero-nav label[for="h-slide3"] {
    background: white;
}