/* Import common styles from the main stylesheet */
@import url('../style.css');

/* Specific styles for the config page */
.hero-section {
    display: flex;
    flex-direction: column;
    padding-bottom: 0; /* Ensure no extra space at the bottom of hero-section */
}

.hero-banner {
    min-height: 400px;
    border-radius: 50px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://s3.eu-central-1.amazonaws.com/media.abzuidholland.nl/media/58715/responsive-images/ABZuidHolland---april-_25---preview_-57___media_library_original_2160_1080.webp'); /* Default image */
    background-size: cover;
    background-position: center;
    opacity: 1; /* Always visible */
    z-index: -1;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, var(--accent-color) 20%, transparent);
    z-index: 0;
}

.hero-banner > * {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'RoundkeySoft-Bold', sans-serif;
    font-size: 90px;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.hero-banner p {
    font-size: 24px;
    margin: 0;
    max-width: 800px;
}

.role-selection-buttons {
    display: flex;
    gap: 25px; /* Spacing between buttons */
    margin-top: 25px; /* Exactly 25px from hero banner */
    justify-content: center; /* Center the group of buttons */
    width: 100%;
    /* Removed max-width: 800px; */
    box-sizing: border-box; /* Include padding in width calculation */
}



/* Dark mode adjustments */
body.dark-mode .hero-title,
body.dark-mode .hero-banner p {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 55px;
    }

    .hero-banner p {
        font-size: 18px;
    }

    .role-selection-buttons {
        flex-direction: column;
        gap: 25px; /* Corrected spacing between buttons on mobile */
        padding: 0; /* Remove horizontal padding on mobile if stacked */
    }
    .role-button {
        width: 100%; /* Full width on mobile */
        min-height: 100px; /* Ensure minimum height */
        height: auto; /* Allow height to adjust if content is larger */
        display: flex; /* Ensure flex properties are applied */
        align-items: center; /* Center content vertically */
        justify-content: center; /* Center content horizontally */
    }
}
