/** * custom-hero-home.css */

/* Add your styles here */

/* Hero Section */
.custom-hero-home {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    position: relative;
    overflow: hidden;

    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid cyan;

    height: 100vh;
    --header-h: 67px;
}

.custom-hero-home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.53);
    /* donkere overlay */
    border: 2px solid magenta;
}

.custom-hero-home-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    border: 1px solid cyan;
}

.custom-hero-home-content h1 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 3rem;
    color: white;
    border: 1px solid red;
}

.custom-hero-home__logo img {
    /* past goed in hero */
    height: 67vh;
    margin-bottom: 20px;
}

.custom-hero-home__cta .cta-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: #ffc857;
    /* jouw huisstijlkleur */
    color: #375248;
    font-family: 'Fauna One', serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.custom-hero-home__cta .cta-button:hover {
    background-color: #375248;
    color: #ffc857;
}

/* Responsiveness */
@media (max-width: 992px) {
    #custom-navbar .nav-container {
        flex-direction: column;
        border: 1px solid magenta;
    }

    #custom-navbar ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }
}

@media (max-width: 600px) {
    .custom-hero-home-content h1 {
        font-size: 2rem;
        border: 1px solid blue;
    }