/*Reset Styling*/
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }
  
  html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, a, abbr, em, img, i, center, ol, ul, li, fieldset, form, label, figure, figcaption, footer, header, nav, section, button {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
  }

ol, ul {
    list-style: none;
    text-decoration: none;
}

a, a:hover, a:focus, a:active, a:visited {
    text-decoration: none;
    color: inherit;
}

button {
    outline: 0;
    color: inherit;
    cursor: pointer;
}



/*Constants*/
:root {
    --title-text-color: #daa92c;
    --main-accent-color: #8b0000;
    
}


/*General Styling*/
body {
    background-image: url(../img/achtergrond.png);
    font-family: 'Lora', serif;
}

.navigation, .about, .menuKaart, .reviews, .contact {
    max-width: 1200px;
    margin: 0 auto;
}

.about, .menuKaart, .reviews, .contact {
    margin-top: 40px;
    padding: 15px;
}

h1 {
    font-size: 3em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--title-text-color);
}

h2 {
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--title-text-color);
    text-align: center;
    margin-bottom: 15px;
}

h4 {
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--title-text-color);
}



/*Block Styling*/
/*Header*/
header {
    position: fixed;
    width: 100%;
    z-index: 3;
    background-color: var(--main-accent-color);
    color: var(--title-text-color);
    text-transform: uppercase;
    box-shadow: 0px 3px 8px 5px rgba(0, 0, 0, 0.65);
}

.navigation {
    padding: 15px;
}

.navigation--mobile #nav-icon {
    position: relative;
    width: 30px;
    height: 25px;
    z-index: 3;
    background-color: inherit;
    cursor: pointer;
}

.navigation--mobile span {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    left: 0;
    background-color: var(--title-text-color);
    border-radius: 10px;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.navigation--mobile span:nth-child(1) {
    top: 0px;
}

.navigation--mobile span:nth-child(2), .navigation--mobile span:nth-child(3) {
    top: 10px;
}

.navigation--mobile span:nth-child(4) {
    top: 20px;
}

.navigation--mobile .expanded-button span:nth-child(1), .navigation--mobile .expanded-button span:nth-child(4) {
    top: 10px;
    left: 50%;
    width: 0%;
}

.navigation--mobile .expanded-button span:nth-child(2) {
    transform: rotate(45deg);
}

.navigation--mobile .expanded-button span:nth-child(3) {
    transform: rotate(-45deg);
}

.navigation-mobile__dropdown {
    position: absolute;
    top: 0px;
    right: 15px;
    margin-right: -15px;
    padding: 15px;
    width: 0px;
    height: 0px;
    opacity: 0;
    
}

.navigation-mobile__dropdown nav {
    text-align: right;
}

.navigation-mobile__dropdown nav li {
    padding: 5px 0px;
}

.navigation-mobile__dropdown.expanded-dropdown {
    width: 100%;
    height: fit-content;
    opacity: 1;
    background-color: var(--main-accent-color);
    box-shadow: 0px 3px 8px 5px rgba(0, 0, 0, 0.65);
    transition: opacity 0.3s ease-in;
}

.navigation--desktop {
    display: none;
}

.navigation--desktop ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/*Hero*/
.hero {
    height: calc(100vh - 48.5px);
    padding: 30px 15px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(../img/hero.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 30%;
    border-bottom: 6px solid var(--title-text-color);
}

.hero h1 {
    padding: 15px 0px;
    text-align: center;
}

.hero span {
    font-size: 1.2em;
    color: var(--title-text-color);
    font-style: italic;
    text-align: center;
}

.hero button {
    background-color: unset;
    font-size: 2em;
    color: var(--title-text-color);
    padding-top: 30px;
}

.hero strong {
    padding-top: 15px;
    font-size: 0.9em;
    font-family: 'Lora', serif;
    color: var(--title-text-color);
    font-style: italic;
    text-decoration: underline;
    text-align: center;
    font-weight: uppercase;
}


/*About*/
#overOns {
    margin: 0px 15px;
}

.about {
    background-color: rgba(88,0,0,0.95);
    border: 2px solid var(--title-text-color);
    color: var(--title-text-color);
    border-radius: 6px;
    padding: 30px 15px;
}

.about h2, .about p, .about span {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about span {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;

}

.carousel {
    position: relative;
}

.carousel-items__holder {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.carousel__item {
    display: none;
    flex: 0 0 30%;
    min-width: 250px;
    height: 200px;
    margin: 0 10px;
    background-size: cover;
    border-radius: 6px;
    border: 2px solid #221b1e;
}

.carousel__item:nth-child(2) {
    height: 275px;
}
  
.carousel__item.visible {
    display: block;
}

.carousel__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    background-color: unset;
}

.carousel__button--prev {
    left: 0;
}

.carousel__button--next {
    right: 0;
}



/*MenuKaart*/
.menuKaart__holder {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 75px;
}

.menuKaart__button {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 250px;
    width: 100%;
    background-size: cover;
    color: var(--title-text-color);
    border-radius: 6px;
    border: 2px solid var(--title-text-color);
}

.menuKaart__button h3 {
    width: 100%;
}

.menuKaart__button a {
    display: block;
    padding: 20px 10px;
    background-color: rgba(88,0,0,0.95);
    border-radius: 4px;
    width: 100%;
    text-align: center;
}




/*Reviews*/
.reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--title-text-color);
    color: var(--main-accent-color);
    padding: 50px 15px;
    border-radius: 6px;
    border: 2px solid var(--main-accent-color);
}



/*Contact*/
.contact__holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 50px;
}

.contact__info {
    display: flex;
    flex-direction: column;
}

.contact__section--time {
    width: 100%;
    max-width: 400px;
}

.contact__title {
    font-size: 2em;
    font-weight: bold;
    color: var(--title-text-color);
    text-align: center;
    display: block;
}

.contact__info span, .contact__info a {
    color: var(--title-text-color);
}

.contact__form {
    padding: 25px 15px;
    background-color: rgba(88,0,0,0.95);
    border: 2px solid var(--title-text-color);
    border-radius: 6px;
    color: var(--title-text-color);
    max-width: 500px;
    margin-top: 15px;
}

.contact__form span {
    font-size: 0.7em;
    margin-bottom: 15px;
    display: block;
}

.contact__form input, .contact__form textarea {
    font-family: inherit;
    width: 100%;
    background-color: unset;
    color: var(--title-text-color);
    border: 1px solid var(--title-text-color);
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 3px 5px;
}

.button__contact {
    border: 1px solid var(--title-text-color);
    background-color: var(--main-accent-color);
    border-radius: 6px;
    padding: 2px 5px;
}

input:focus-visible, textarea:focus-visible {
    outline: unset;
}

.contact__form input::placeholder, .contact__form textarea::placeholder {
    color: var(--title-text-color);
}

.contact__times {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: rgba(88,0,0,0.95);
    border: 2px solid var(--title-text-color);
    border-radius: 6px;
    color: var(--title-text-color);
    
}

.contact__times--day {
    font-weight: 700;
}

.contact__times--time:not(:last-of-type) {
    margin-bottom: 5px;
}

.contact__times--time {
    font-size: 0.9em;
}

.contact__section iframe {
    max-width: 300px;
    height: 300px;
    width: 100%;
    border-radius: 6px;
    border: 2px solid var(--title-text-color);
}