/**
Theme Name: Camperplaats Dalvoorde
Version: 1.1.1
Author: De Webfabriek
Author URI: https://dewebfabriek.com/
Requires at least: 6.0
Tested up to: 6.0
 */

/**
ALGEMENE STYLING
 */

@import url("./assets/css/_fonts.css");

:root {
    --primary-color: #557734;
    --heading-color: #0D120E;
    --text-color: #1E1E1E;
    --bg-color: #FFFFFF;
    --bg-color-light: #EAECEA;
    --bg-color-dark: #557734;
    --bg-overlay-color: var(--heading-color);
    --bg-color-dark-lighter: #2c381a;
    --bg-color-dark-heading: #FFFFFF;
    --bg-color-dark-text: #c0dca4;
    --review-star-color: #fcad19;

    --heading-font: "Bitter", serif;
    --text-font: "Roboto", sans-serif;
}

body {
    color: var(--text-color);
    font-family: var(--text-font), sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
}

h1, h2, h3, h4, h5, h6, legend {
    color: var(--heading-color);
    font-family: var(--heading-font), serif;
    font-weight: 600;
    line-height: 100%;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--bg-color-dark);
}

nav a {
    color: var(--text-color);
}

nav a:hover {
    color:var(--primary-color);
}

h1 {
    font-size: 4rem;
}
h2, legend {
    font-size: 2.5rem;
}
h3 {
    font-size: 1.5rem;
}

::selection {
    background-color: var(--bg-color-dark-text);
}

small {
    color: #828B84;
    font-size: 1rem;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
    body {
        font-size: 1.125rem;
    }

    h1 {
        font-size: 3rem;
    }
    h2, legend {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 1.125rem;
    }

    h1 {
        font-size: 2.5rem;
    }
    h2, legend {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.25rem;
    }
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.small-container {
    max-width: 800px;
    margin:auto;
}

.icon-wrapper {
    font-size: 4rem;
    width:1.5em;
    height:1.5em;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/**
ALERT BOXES
 */
.alert {
    background-color: var(--bg-color-light);
    border:none;
    border-radius: 0px;
    color: var(--text-color);
}

.alert.alert-success {
    border-left: 5px solid var(--primary-color);
}

.alert.alert-warning {
    border-left: 5px solid darkorange;
}

.alert.alert-danger {
    border-left: 5px solid #cc1818;;
}

/**
POPUP NOTIFICATION
 */
.popup-notification {
    position:fixed;
    z-index:999;
    bottom:10px;
    right:10px;
    background-color: var(--bg-color);
    width: calc(100% - 20px);
    max-width:500px;
    box-shadow: 0 0 0 7px rgba(85, 119, 52, 0.5);
    border-radius: 10px;
    animation: slideInUp 500ms ease;
}

.popup-notification .notification-header {
    padding:1rem;
    position: relative;
    border-bottom: 1px solid var(--heading-color);
}

.popup-notification .notification-header .btn-close {
    position:absolute;
    top:50%;
    right:0.5rem;
    transform: translateY(-50%);
}

.popup-notification .notification-content {
    padding:1rem;
}

/**
HEADER
 */
#primary-navigation-menu {
    border-bottom: 2px solid var(--primary-color);
}

#primary-navigation-menu .logo-image {
    height:50px;
    width: auto;
}

#primary-navigation-menu .menu-item {
    font-family: var(--heading-font);
    margin-left: 1.5em;
}

#primary-navigation-menu .dropdown-item.active, .dropdown-item:active {
    background-color: var(--primary-color);
}

#primary-navigation-menu .dropdown-menu .menu-item {
    margin-left: 0;
}

#whatsapp-button {
    position: fixed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    bottom:2rem;
    right:2rem;
    z-index: 9998;
    background-color: #25D366;
    color: #FFFFFF;
    width: 70px;
    height: 70px;
    border-radius: 70px;
    border: 3px solid #FFFFFF;
    font-size: 2rem;
    box-shadow: 0 0 5px #000;
    transition: scale 250ms ease;
}

#whatsapp-button:hover {
    scale:1.1;
    transition: scale 250ms ease;
}

@media screen and (max-width: 1024px) {
    #primary-navigation-menu .menu-item {
        padding:0.2em 0;
    }

    #whatsapp-button {
        width:60px;
        height:60px;
        border-radius: 60px;
        font-size: 1.75rem;
        right:1rem;
        bottom:1rem;
    }
}

/**
FOOTER
 */
footer {
    border-top: 2px solid var(--primary-color);
}

.social-icon {
    background-color: var(--bg-color-dark);
    color:var(--bg-color);
    border-radius: 10px;
    font-size: 1.5rem;
    margin-right: 0.5em;
    width:40px;
    height:40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.social-icon:hover {
    color: var(--bg-color-dark-lighter);
}

footer .customer-experience-container .customer-mark {
    background-color: var(--review-star-color);
    color:var(--heading-color);
    width:50px;
    height:50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5em;
    border-radius: 10px;
    font-family: var(--heading-font);
    font-size: 1.5rem;
}

.booking-search-form {
    box-shadow: 0 0 0 7px rgba(85, 119, 52, 0.5);
    border-radius: 10px;
}

/**
SECTIES
 */

.hero-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    color:var(--bg-color);
}

.hero-section-large {
    min-height: 50vh;
}

.hero-section h1 {
    color:var(--bg-color);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.background_overlay {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: var(--bg-overlay-color);
    opacity: 0.5;
    z-index: 0;
}

.bg-dark {
    background-color: var(--bg-color-dark)!important;
    color: var(--bg-color-dark-text);
}

.bg-darker {
    background-color: var(--bg-color-dark-lighter);
    color: var(--bg-color-dark-text);
}


.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-darker h1,
.bg-darker h2,
.bg-darker h3 {
    color:var(--bg-color-dark-heading);
}

.bg-light {
    background: url("./assets/images/Patroon achtergrond.png"), var(--bg-color-light)!important;
}

.section-divider {
    position: relative;
    width:100%;
    height:30px;
    background: url("./assets/images/Houten balk achtergrond.png") repeat-x;
    background-size: contain;
    z-index: 1;
    margin-bottom: -10px;
}

/**
UNIEKE KENMERKEN
 */
.unique-features-section {
    font-size: 1.125rem;
}

.unique-features-section i {
    color:var(--primary-color);
}

.unique-features-section h2 {
    font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
    .unique-features-section h2 {
        font-size:1.125rem;
    }
}
/**
CAROUSEL
 */
.carousel-inner {
    height:60vh;
}

.carousel-inner .carousel-item {
    height:100%;
}

.carousel-inner .carousel-item img {
    height:100%;
    object-fit: cover;
}

/**
REVIEWS
 */
.reviews-section {
    font-size: 1.125rem;
}
.reviews-section .icon-wrapper {
    background-color: var(--bg-color-dark-lighter);
    color:var(--primary-color);
}

.reviews-container .review {
    background-color: var(--bg-color-dark-lighter);
    border-radius: 10px;
}

.reviews-container .review .star-count i {
    color: var(--review-star-color);
}

.reviews-container .author {
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-style: normal;
}
/**
FAQ SECTIE
 */
.faq-questions-container {
    background-color: var(--bg-color);
    border-radius: 10px;
}

.faq-questions-container .faq-question-container {
    border-bottom: 2px solid var(--bg-color-light);
    padding:1em;
}

.faq-questions-container .faq-question-container:hover {
    cursor:pointer;
}

.faq-questions-container .faq-question-container i {
    color:var(--primary-color);
    margin-right: 0.5em;
}

.faq-questions-container .answer {
    padding:1em;
    display: none;
}
/**
LOCATIE
 */
.embedded-location-frame {
    width:100%;
    border-radius: 10px;
}

/**
KNOPPEN EN FORMULIEREN
 */
.form-label {
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-weight: bold;
}

.form-label.form-required::after {
    content: "*";
    color: #a00;
}

.btn {
    padding:0.5em 1em;
    font-family: var(--heading-font);
    font-size: 1.25rem;
}

.btn.btn-primary {
    background-color: var(--primary-color);
    border:none;
    transition: all 250ms ease;
}

.btn.btn-primary:hover, .btn.btn-primary:focus {
    background-color: var(--bg-color-dark-lighter);
    scale:1.1;
    transition: all 250ms ease;
}

.btn.btn-secondary {
    padding:0;
    background-color: transparent;
    border:none;
    color: var(--heading-color);
    transition: 250ms all ease;
}

.btn.btn-secondary i {
    color:var(--primary-color);
    margin-left: 0.5em;
}

.btn.btn-secondary:hover, .btn.btn-secondary:focus {
    color:var(--primary-color);
    background-color: transparent;
    transition: 250ms all ease;
}

/**
ACTIVITEITEN PAGINA
 */
.featured-activity {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding:1em;
    border-radius: 10px;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    transition: all 250ms ease;
}

.featured-activity .activity-header {
    position: relative;
    z-index: 1;
}

.featured-activity h3 {
    color:var(--bg-color);
}

.featured-activity i {
    font-size: 1.5rem;
}

a:hover .featured-activity {
    scale:1.1;
    transition: all 250ms ease;
}

/**
CHECKOUT FORMULIER
 */
.period-selector-popup .calendar-heading {
    font-family: var(--heading-font);
    font-weight:bold;
    font-size:1.5rem;
    text-align:center;
}
.period-selector-popup .dwf-calendar-header {
    font-weight:bold;
}

.form-steps-container .step.step .step-number {
    font-family: var(--heading-font);
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
}
.form-steps-container .step.passed.passed .step-number {
    color: var(--bg-color);
    background-color: var(--primary-color);
}

.booking-summary {
    border-radius: 10px;
}

.booking-summary-container .icon-wrapper {
    background-color: var(--bg-color);
    color: var(--primary-color);
}

.booking-summary-table-wrapper {
    background-color: var(--bg-color);
    padding: 1rem;
    border-radius: 10px;
}

.dwf-booking-summary-totals {
    margin-top:1em;
}

#booking-total-price {
    font-size: 2rem;
    font-family: var(--heading-font);
    color: var(--heading-color);
}

.booking-summary-responsive {
    border-top: 2px solid var(--primary-color);
    background-color: var(--bg-color);
}

.booking-summary-responsive .booking-price-responsive {
    font-size: 1.75rem;
    font-family: var(--heading-font);
    color: var(--heading-color);
    text-align: right;
}

#show-details-button {
    text-align: right;
    color: var(--primary-color);
}
#show-details-button:hover {
    cursor:pointer;
}

#booking-summary-details-responsive {
    display: none;
}

@media screen and (max-width: 768px) {
    .booking-summary {
        display: none;
    }
    .form-steps-container .step-name {
        font-size:1rem;
    }
}
/**
ANIMATIES
 */
.animation-slide-in {
    opacity: 0;
    transform: translateY(100px);
}

.animation-slide-in.animate {
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 0.5s ease-in-out;
}

.animation-fade-in {
    opacity: 0;
}

.animation-fade-in.animate {
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        translateY(0);
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}