/*
Theme Name: Amsterdam Yacht Service
Author: Arture
Author URI: https://arture.nl/
Description: Maatwerk thema voor Amsterdam Yacht Service
Version: 1.0.2
*/

/*
.bannerBox{
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bannerBox::before{
  content:"";
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease;
  z-index: 0;
}

.bannerBox > *{
  position: relative;
  z-index: 1;
}
.bannerBox::before{
  background-image: var(--next-bg);
  opacity: var(--overlay-opacity, 0);
}
*/

.banner-subtitle {
    margin-top: 10px;
    max-width: 400px;
    font-size: 18px;
    line-height: 1.45;
    color: #fff;
}

.banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.banner-button {
    display: inline-block;
    padding: 10px 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
}

.banner-button-primary {
    background: #c39612;
    border: 2px solid #c39612;
    color: #fff;
}

.banner-button-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.banner-button-primary:hover {
    background: #a67900;
    border-color: #a67900;
    color: #fff;
}

.banner-button-secondary:hover {
    background: #fff;
    color: #222;
}

@media (max-width: 767px) {
    .banner-subtitle {
        font-size: 18px;
    }

    .banner-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}