/* ==================================================
   BASIS
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #4a2926;
    background: #f5eadc;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==================================================
   HEADER
================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: #670d0d;
    color: white;

    box-shadow:
        0 5px 25px rgba(60, 20, 10, 0.15);
}

.header-container {
    width: min(1400px, calc(100% - 50px));

    min-height: 112px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;

    gap: 18px;
}

.logo {
    width: 135px;
    height: 135px;

    position: relative;
    z-index: 2;
}

.logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.brand-content {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Cinzel', serif;

    color: #d9ae52;

    font-size: 22px;
    font-weight: 700;

    letter-spacing: 1px;
}

.brand-line {
    width: 100%;
    max-width: 360px;

    height: 1px;

    background: #d9ae52;

    margin: 5px 0 7px;
}

.brand-slogan {
    font-size: 11px;

    color: #f6e7cf;

    letter-spacing: 0.3px;
}


/* ==================================================
   NAVIGATIE
================================================== */

.navigation {
    display: flex;
    align-items: center;

    gap: 26px;
}

.navigation a {
    font-size: 13px;
    font-weight: 600;

    color: #fff7eb;

    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #d9ae52;
}

.booking-button {
    padding: 13px 20px;

    border: 1px solid #d9ae52;
    border-radius: 30px;

    color: #fff !important;

    transition: all 0.3s ease;
}

.booking-button:hover {
    background: #d9ae52;

    color: #670d0d !important;
}


/* ==================================================
   MOBIEL MENU
================================================== */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 27px;
    height: 2px;

    background: #fff;

    margin: 5px auto;
}

.mobile-menu {
    display: none;
}


/* ==================================================
   HERO
================================================== */

.hero {
    min-height: 0;

    display: grid;

    grid-template-columns: 48% 52%;

    background: #670d0d;

    color: white;
}

.hero-content {
    display: flex;

    align-items: center;
    justify-content: center;

    padding: 60px 60px;

    transform: none;
}

.hero-inner {
    width: 100%;
    max-width: 610px;
}

.hero-label {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #d9ae52;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 22px;
}

.hero-label-line {
    width: 42px;
    height: 1px;

    background: #d9ae52;
}

.hero h1 {
    font-family: 'Cinzel', serif;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.05;

    font-weight: 600;

    margin-bottom: 28px;
}

.hero h1 span {
    color: #d9ae52;
}

.hero-text {
    max-width: 560px;

    color: #f5e8d8;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 15px 23px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.button-gold {
    background: #d9ae52;

    color: #670d0d;
}

.button-gold:hover {
    background: #efca7b;

    transform: translateY(-2px);
}

.button-light {
    border: 1px solid rgba(255, 255, 255, 0.65);

    color: white;
}

.button-light:hover {
    background: white;

    color: #670d0d;
}

.arrow {
    font-size: 18px;
}

.hero-usp {
    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 45px;
}

.usp-item {
    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 11px;

    color: #f3dfc5;
}

.usp-icon {
    color: #d9ae52;
}

.hero-image {
    position: relative;

    min-height: 0;

    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(103, 13, 13, 0.15),
            transparent 45%,
            rgba(0, 0, 0, 0.15)
        );
}

.hero-gold-line {
    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 5px;

    background: #d9ae52;
}

.hero-photo-label {
    position: absolute;

    bottom: 30px;
    right: 30px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px 17px;

    background: rgba(103, 13, 13, 0.9);

    color: #fff;

    font-size: 11px;

    letter-spacing: 0.5px;
}

.photo-label-icon {
    color: #d9ae52;
}


/* ==================================================
   ALGEMENE SECTIES
================================================== */

.section-heading {
    max-width: 700px;

    margin-bottom: 55px;
}

.section-kicker {
    color: #b27d21;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 14px;
}

.section-heading h2,
.about-content h2,
.placeholder-section h2 {
    font-family: 'Cinzel', serif;

    color: #670d0d;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.15;

    font-weight: 600;
}

.section-heading p {
    margin-top: 20px;

    max-width: 650px;

    color: #795a55;

    font-size: 14px;
}


/* ==================================================
   BEZOEKEN
================================================== */

.visits {
    padding: 110px 0 100px;

    background: #f5eadc;
}

.visit-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.visit-card {
    padding: 30px;

    background: #fff;

    border-radius: 22px;

    border: 1px solid rgba(103, 13, 13, 0.06);

    box-shadow:
        0 10px 30px rgba(80, 35, 20, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.visit-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(80, 35, 20, 0.1);
}

.visit-card-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;
}

.visit-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff6e7;

    border-radius: 14px;

    font-size: 23px;
}

.card-number {
    color: #c89c43;

    font-family: 'Cinzel', serif;

    font-size: 13px;
}

.visit-card h3 {
    font-family: 'Cinzel', serif;

    color: #670d0d;

    font-size: 24px;

    margin-bottom: 12px;
}

.visit-card p {
    color: #795a55;

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 20px;
}

.visit-card a {
    color: #9b1717;

    font-size: 12px;

    font-weight: 700;
}

.visit-card a:hover {
    color: #c18d29;
}

.visits-cta {
    margin-top: 35px;

    padding: 24px 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 25px;

    background: #670d0d;

    color: white;

    border-radius: 20px;
}

.visits-cta-content {
    display: flex;

    align-items: center;

    gap: 15px;
}

.visits-cta-icon {
    font-size: 25px;

    color: #d9ae52;
}

.visits-cta-content strong,
.visits-cta-content span {
    display: block;
}

.visits-cta-content strong {
    font-size: 13px;

    margin-bottom: 4px;
}

.visits-cta-content span {
    color: #e9d5c1;

    font-size: 11px;
}

.visits-cta-button {
    padding: 11px 18px;

    border: 1px solid #d9ae52;

    border-radius: 25px;

    color: #fff;

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.visits-cta-button:hover {
    background: #d9ae52;

    color: #670d0d;
}


/* ==================================================
   PAKKETTEN
================================================== */

.packages {
    padding: 110px 0;

    background: #eee0d0;
}

.packages-heading {
    margin-bottom: 50px;
}

.package-feature {
    display: grid;

    grid-template-columns: 1fr 360px;

    background: #fff;

    border-radius: 22px;

    overflow: hidden;

    margin-bottom: 26px;

    box-shadow:
        0 10px 30px rgba(80, 35, 20, 0.05);
}

.package-info {
    padding: 38px 42px;
}

.package-icon {
    width: 50px;
    height: 50px;

    background: #fff6e7;

    border-radius: 14px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 22px;

    margin-bottom: 16px;
}

.package-kicker {
    color: #b27d21;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.package-info h3,
.package-small-content h3 {
    font-family: 'Cinzel', serif;

    color: #670d0d;

    font-size: 28px;

    margin-bottom: 12px;
}

.package-info p {
    color: #795a55;

    font-size: 13px;

    line-height: 1.75;

    max-width: 720px;
}

.package-list {
    list-style: none;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px 40px;

    margin-top: 24px;
}

.package-list li {
    color: #795a55;

    font-size: 12px;
}

.package-list li span {
    color: #c08b22;

    font-weight: 700;

    margin-right: 8px;
}

.package-price {
    padding: 32px;

    background: #fcfaf7;

    border-left: 1px solid #eee2d6;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}

.price-location {
    color: #9c6d20;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.price {
    color: #850f0f;

    font-family: 'Cinzel', serif;

    font-size: 42px;

    line-height: 1.1;

    margin: 3px 0;
}

.price-note {
    color: #8a6d66;

    font-size: 10px;
}

.price-divider {
    width: 45px;

    height: 1px;

    background: #d9ae52;

    margin: 16px 0;
}

.package-button {
    margin-top: 20px;

    padding: 11px 20px;

    border: 1px solid #c48d28;

    border-radius: 25px;

    color: #670d0d;

    font-size: 11px;

    font-weight: 700;

    transition: all 0.3s ease;
}

.package-button:hover {
    background: #670d0d;

    color: white;
}

.package-card-row {
    display: grid;

    grid-template-columns: 70px 1fr 150px;

    align-items: center;

    gap: 20px;

    padding: 28px 35px;

    margin-bottom: 18px;

    background: #fff;

    border-radius: 20px;

    box-shadow:
        0 8px 25px rgba(80, 35, 20, 0.04);
}

.package-small-icon {
    width: 50px;
    height: 50px;

    border-radius: 14px;

    background: #fff6e7;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 21px;
}

.package-small-content h3 {
    font-size: 22px;

    margin-bottom: 5px;
}

.package-small-content p {
    color: #795a55;

    font-size: 12px;
}

.package-small-action {
    text-align: right;
}

.package-small-action span {
    display: block;

    color: #9d752c;

    font-size: 10px;

    font-weight: 700;

    margin-bottom: 5px;
}

.package-small-action a {
    color: #670d0d;

    font-size: 11px;

    font-weight: 700;
}

.package-note {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 28px;

    color: #795a55;
}

.package-note-icon {
    color: #b47f20;
}

.package-note p {
    font-size: 11px;
}


/* ==================================================
   OVER ONS
================================================== */

.about-section {
    padding: 115px 0;

    background: #f8efe4;

    position: relative;

    overflow: hidden;
}

.about-section::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(217, 174, 82, 0.08);

    top: -200px;

    right: -150px;
}

.about-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(103, 13, 13, 0.04);

    bottom: -150px;

    left: -120px;
}

.about-grid {
    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 70px;

    align-items: center;
}

.about-content {
    max-width: 680px;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-intro {
    color: #670d0d;

    font-size: 17px;

    font-weight: 600;

    line-height: 1.8;

    margin-bottom: 20px;
}

.about-text {
    color: #795a55;

    font-size: 14px;

    line-height: 1.85;
}

.about-text p {
    margin-bottom: 17px;
}

.about-highlight {
    display: flex;

    align-items: center;

    gap: 15px;

    margin: 30px 0;

    padding: 20px 22px;

    background: #fff;

    border-left: 4px solid #d9ae52;

    box-shadow:
        0 8px 25px rgba(80, 35, 20, 0.05);
}

.about-highlight-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #670d0d;

    color: #d9ae52;

    border-radius: 50%;

    font-size: 19px;
}

.about-highlight strong,
.about-highlight span {
    display: block;
}

.about-highlight strong {
    color: #670d0d;

    font-family: 'Cinzel', serif;

    font-size: 15px;

    margin-bottom: 3px;
}

.about-highlight span {
    color: #8a6d66;

    font-size: 11px;
}

.about-button {
    margin-top: 5px;
}

.about-visual {
    display: flex;

    justify-content: center;

    align-items: center;
}

.about-photo {
    width: 100%;

    max-width: 500px;

    position: relative;

    padding: 10px;

    background: #fff;

    border: 1px solid #d9ae52;

    box-shadow:
        0 18px 45px rgba(70, 25, 15, 0.15);

    transform: rotate(1deg);
}

.about-photo img {
    width: 100%;

    height: 540px;

    object-fit: cover;

    border-radius: 4px;
}

.about-photo-label {
    position: absolute;

    left: 25px;

    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 11px 17px;

    background: rgba(103, 13, 13, 0.93);

    color: white;

    font-size: 11px;

    font-weight: 600;
}

.about-photo-icon {
    color: #d9ae52;

    font-size: 15px;
}


/* ==================================================
   ONZE MOMENTEN
================================================== */

.moments-section {
    padding: 115px 0;

    background: #670d0d;

    color: white;
}

.moments-heading {
    max-width: 720px;
}

.moments-heading .section-kicker {
    color: #d9ae52;
}

.moments-heading h2 {
    color: white;
}

.moments-heading p {
    color: #ead8c6;
}

.photo-gallery {
    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr;

    grid-auto-rows: 250px;

    gap: 18px;

    margin-top: 50px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    background: #4f0808;

    border-radius: 18px;

    border: 1px solid rgba(217, 174, 82, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-large {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-note {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 35px;
}

.gallery-note span {
    color: #d9ae52;
}

.gallery-note p {
    color: #e7d4c1;

    font-size: 11px;
}


/* ==================================================
   BOEKEN
================================================== */

.booking-section {
    padding: 115px 0;

    background: #f5eadc;
}

.booking-heading {
    max-width: 760px;

    margin-bottom: 55px;
}

.booking-heading h2 {
    font-family: 'Cinzel', serif;

    color: #670d0d;

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1.15;

    font-weight: 600;
}

.booking-heading p {
    max-width: 700px;

    margin-top: 20px;

    color: #795a55;

    font-size: 14px;

    line-height: 1.8;
}


/* ==================================================
   BOEKINGS LAYOUT
================================================== */

.booking-layout {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 45px;

    align-items: start;
}


/* ==================================================
   LINKER INFORMATIE
================================================== */

.booking-intro {
    position: sticky;

    top: 140px;

    padding: 35px;

    background: #670d0d;

    border-radius: 22px;

    color: white;

    box-shadow:
        0 15px 40px rgba(80, 35, 20, 0.12);
}

.booking-intro-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(217, 174, 82, 0.12);

    border: 1px solid rgba(217, 174, 82, 0.45);

    border-radius: 16px;

    font-size: 28px;

    margin-bottom: 22px;
}

.booking-intro h3 {
    font-family: 'Cinzel', serif;

    color: #d9ae52;

    font-size: 24px;

    line-height: 1.3;

    margin-bottom: 15px;
}

.booking-intro > p {
    color: #ead8c6;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 30px;
}


/* ==================================================
   STAPPEN
================================================== */

.booking-steps {
    display: flex;

    flex-direction: column;

    gap: 22px;
}

.booking-step {
    display: flex;

    align-items: flex-start;

    gap: 14px;
}

.booking-step > span {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #d9ae52;

    border-radius: 50%;

    color: #d9ae52;

    font-family: 'Cinzel', serif;

    font-size: 10px;
}

.booking-step strong {
    display: block;

    color: white;

    font-size: 12px;

    margin-bottom: 3px;
}

.booking-step p {
    color: #d9c0a9;

    font-size: 10px;

    line-height: 1.6;
}


/* ==================================================
   OPMERKING
================================================== */

.booking-note {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-top: 30px;

    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-note span {
    color: #d9ae52;

    flex-shrink: 0;
}

.booking-note p {
    color: #d9c0a9;

    font-size: 10px;

    line-height: 1.6;
}


/* ==================================================
   BOEKINGSFORMULIER
================================================== */

.booking-form-wrapper {
    background: #fff;

    border-radius: 22px;

    box-shadow:
        0 12px 35px rgba(80, 35, 20, 0.07);

    overflow: hidden;
}

.booking-form {
    padding: 40px;
}


/* ==================================================
   FORMULIER SECTIES
================================================== */

.form-section {
    padding-bottom: 35px;

    margin-bottom: 35px;

    border-bottom: 1px solid #eee2d6;
}

.form-section:last-of-type {
    margin-bottom: 0;

    border-bottom: 0;
}

.form-section-title {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 24px;
}

.form-section-title > span {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #670d0d;

    color: #d9ae52;

    font-family: 'Cinzel', serif;

    font-size: 11px;
}

.form-section-title strong {
    display: block;

    color: #670d0d;

    font-family: 'Cinzel', serif;

    font-size: 17px;

    margin-bottom: 2px;
}

.form-section-title small {
    display: block;

    color: #8a6d66;

    font-size: 10px;
}


/* ==================================================
   BEZOEK OPTIES
================================================== */

.visit-options {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}

.visit-option {
    position: relative;

    cursor: pointer;
}

.visit-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.visit-option-content {
    min-height: 68px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px;

    background: #fcfaf7;

    border: 1px solid #eadfd3;

    border-radius: 13px;

    color: #670d0d;

    font-size: 12px;

    font-weight: 600;

    transition: all 0.25s ease;
}

.visit-option:hover .visit-option-content {
    border-color: #d9ae52;

    transform: translateY(-1px);
}

.visit-option input:checked + .visit-option-content {
    background: #fff7e9;

    border-color: #c48d28;

    box-shadow:
        0 0 0 2px rgba(217, 174, 82, 0.12);
}

.visit-option-icon {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff;

    border-radius: 10px;

    font-size: 18px;
}


/* ==================================================
   FORM ROW
================================================== */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin-bottom: 18px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;

    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    color: #670d0d;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #ded0c3;

    border-radius: 10px;

    background: #fff;

    color: #4a2926;

    font-size: 12px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b3a29a;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c48d28;

    box-shadow:
        0 0 0 3px rgba(217, 174, 82, 0.12);
}

.form-group textarea {
    resize: vertical;

    min-height: 125px;

    line-height: 1.6;
}


/* ==================================================
   SUBMIT
================================================== */

.form-submit {
    padding-top: 5px;

    text-align: center;
}

.booking-submit-button {
    width: 100%;

    padding: 16px 25px;

    border: 0;

    border-radius: 30px;

    background: #d9ae52;

    color: #670d0d;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.booking-submit-button:hover {
    background: #efca7b;

    transform: translateY(-2px);
}

.form-submit p {
    margin-top: 12px;

    color: #9a8179;

    font-size: 10px;
}


/* ==================================================
   CONTACT
================================================== */

.contact-section {
    padding: 115px 0;

    background: #eee0d0;
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 0.85fr;

    gap: 80px;

    align-items: center;
}

.contact-content {
    max-width: 650px;
}

.contact-content h2 {
    font-family: 'Cinzel', serif;

    color: #670d0d;

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1.15;

    font-weight: 600;

    margin-bottom: 25px;
}

.contact-intro {
    color: #670d0d;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.8;

    margin-bottom: 18px;
}

.contact-text {
    color: #795a55;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 30px;
}

.contact-booking-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 22px;

    border-radius: 30px;

    background: #670d0d;

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    border: 1px solid #670d0d;

    transition: all 0.3s ease;
}

.contact-booking-button:hover {
    background: #d9ae52;

    border-color: #d9ae52;

    color: #670d0d;

    transform: translateY(-2px);
}


/* ==================================================
   CONTACTKAART
================================================== */

.contact-card {
    padding: 35px;

    background: #670d0d;

    border-radius: 22px;

    color: white;

    box-shadow:
        0 15px 40px rgba(80, 35, 20, 0.12);
}

.contact-card-title {
    display: flex;

    align-items: center;

    gap: 15px;

    padding-bottom: 25px;

    margin-bottom: 25px;

    border-bottom: 1px solid rgba(217, 174, 82, 0.3);
}

.contact-card-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(217, 174, 82, 0.12);

    border: 1px solid rgba(217, 174, 82, 0.45);

    border-radius: 50%;

    color: #d9ae52;

    font-size: 18px;
}

.contact-card-title strong,
.contact-card-title span {
    display: block;
}

.contact-card-title strong {
    font-family: 'Cinzel', serif;

    color: #d9ae52;

    font-size: 17px;

    margin-bottom: 3px;
}

.contact-card-title span {
    color: #ead8c6;

    font-size: 10px;
}

.contact-item {
    display: grid;

    grid-template-columns: 42px 1fr;

    align-items: center;

    gap: 13px;

    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(217, 174, 82, 0.12);

    color: #d9ae52;

    font-size: 17px;

    font-family: Arial, sans-serif;
}

.contact-facebook-icon {
    font-size: 15px;

    font-weight: 700;
}

.contact-item small {
    display: block;

    color: #cba875;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 3px;
}

.contact-item a {
    color: #fff;

    font-size: 12px;

    line-height: 1.5;

    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #d9ae52;
}


/* ==================================================
   CONTACTFORMULIER
================================================== */

.contact-form-wrapper {
    margin-top: 75px;

    padding: 45px;

    background: #fff;

    border-radius: 22px;

    box-shadow:
        0 12px 35px rgba(80, 35, 20, 0.07);
}

.contact-form-heading {
    max-width: 650px;

    margin-bottom: 35px;
}

.contact-form-heading h3 {
    font-family: 'Cinzel', serif;

    color: #670d0d;

    font-size: 32px;

    line-height: 1.2;

    margin-bottom: 10px;
}

.contact-form-heading p {
    color: #795a55;

    font-size: 13px;

    line-height: 1.7;
}

.contact-form {
    width: 100%;
}

.contact-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin-bottom: 18px;
}

.contact-form-group {
    display: flex;

    flex-direction: column;

    margin-bottom: 18px;
}

.contact-form-row .contact-form-group {
    margin-bottom: 0;
}

.contact-form-group label {
    color: #670d0d;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 7px;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #ded0c3;

    border-radius: 10px;

    background: #fff;

    color: #4a2926;

    font-size: 12px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #b3a29a;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: #c48d28;

    box-shadow:
        0 0 0 3px rgba(217, 174, 82, 0.12);
}

.contact-form-group textarea {
    resize: vertical;

    min-height: 140px;

    line-height: 1.6;
}

.contact-form-submit {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 10px;
}

.contact-submit-button {
    padding: 14px 25px;

    border: 0;

    border-radius: 30px;

    background: #d9ae52;

    color: #670d0d;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.contact-submit-button:hover {
    background: #efca7b;

    transform: translateY(-2px);
}

.contact-form-submit p {
    color: #9a8179;

    font-size: 9px;

    line-height: 1.5;
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {
    background: #670d0d;

    color: #fff7eb;

    padding: 70px 0 20px;

    border-top: 1px solid rgba(217, 174, 82, 0.35);
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr 0.8fr 1fr;

    gap: 80px;

    align-items: start;

    padding-bottom: 55px;
}


/* ==================================================
   FOOTER MERK
================================================== */

.footer-brand {
    display: grid;

    grid-template-columns: 70px 1fr;

    column-gap: 18px;

    align-items: center;

    max-width: 470px;
}

.footer-logo {
    width: 65px;
    height: 65px;

    object-fit: contain;

    grid-column: 1;
    grid-row: 1 / span 3;
}

.footer-brand-name {
    grid-column: 2;

    font-family: 'Cinzel', serif;

    color: #d9ae52;

    font-size: 21px;

    font-weight: 700;

    letter-spacing: 0.8px;

    line-height: 1.2;

    margin-bottom: 7px;
}

.footer-brand-line {
    grid-column: 2;

    width: 100%;
    max-width: 300px;

    height: 1px;

    background: #d9ae52;

    margin-bottom: 8px;
}

.footer-brand p {
    grid-column: 2;

    color: #f6e7cf;

    font-size: 11px;

    line-height: 1.6;

    max-width: 330px;
}


/* ==================================================
   FOOTER KOLOMMEN
================================================== */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-column h3 {
    font-family: 'Cinzel', serif;

    color: #d9ae52;

    font-size: 16px;

    font-weight: 600;

    margin-bottom: 20px;
}

.footer-column > a {
    color: #f6e7cf;

    font-size: 11px;

    line-height: 1.5;

    margin-bottom: 10px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-column > a:hover {
    color: #d9ae52;

    transform: translateX(3px);
}


/* ==================================================
   FOOTER CONTACT
================================================== */

.footer-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-contact h3 {
    margin-bottom: 20px;
}

.footer-contact a {
    display: grid;

    grid-template-columns: 22px 1fr;

    align-items: center;

    width: 100%;

    gap: 8px;

    margin-bottom: 12px;

    color: #f6e7cf;

    font-size: 11px;

    line-height: 1.5;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-contact a:hover {
    color: #d9ae52;

    transform: translateX(3px);
}

.footer-contact-icon {
    width: 22px;

    display: flex;

    align-items: center;
    justify-content: flex-start;

    color: #d9ae52;

    font-family: Arial, sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1;
}

.footer-facebook-icon {
    font-size: 14px;

    font-weight: 700;
}

.footer-contact a span:last-child {
    min-width: 0;
}


/* ==================================================
   FOOTER ONDERSTE GEDEELTE
================================================== */

.footer-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding-top: 20px;

    border-top: 1px solid rgba(217, 174, 82, 0.3);
}

.footer-bottom p {
    color: #d9c0a9;

    font-size: 9px;

    line-height: 1.5;
}

.footer-bottom p:last-child {
    text-align: right;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1100px) {

    .navigation {
        gap: 15px;
    }

    .navigation a {
        font-size: 11px;
    }

    .hero-content {
        padding: 70px 40px;

        transform: none;
    }

    .about-grid {
        gap: 45px;
    }

    .booking-layout {
        grid-template-columns: 1fr 1.4fr;

        gap: 30px;
    }

}


/* ==================================================
   TABLET / MOBIEL
================================================== */

@media (max-width: 900px) {

    .header-container {
        min-height: 90px;
    }

    .logo {
        width: 105px;
        height: 105px;
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-slogan {
        font-size: 9px;
    }

    .navigation {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu {
        display: none;

        padding: 15px 25px 25px;

        background: #670d0d;
    }

    .mobile-menu.active {
        display: flex;

        flex-direction: column;
    }

    .mobile-menu a {
        padding: 13px 0;

        color: white;

        font-size: 13px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-booking-button {
        margin-top: 10px;

        padding: 13px 18px !important;

        border: 1px solid #d9ae52;

        border-radius: 25px;

        text-align: center;
    }


    /* HERO */

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 75px 30px;
    }

    .hero-image {
        min-height: 450px;
    }


    /* BEZOEKEN */

    .visit-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* PAKKETTEN */

    .package-feature {
        grid-template-columns: 1fr;
    }

    .package-price {
        border-left: 0;

        border-top:
            1px solid #eee2d6;
    }


    /* OVER ONS */

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        max-width: 100%;
    }

    .about-visual {
        margin-top: 20px;
    }

    .about-photo {
        max-width: 650px;
    }


    /* GALERIJ */

    .photo-gallery {
        grid-template-columns: 1fr 1fr;

        grid-auto-rows: 230px;
    }

    .gallery-large {
        grid-row: span 2;
    }

    .gallery-wide {
        grid-column: span 2;
    }


    /* BOEKEN */

    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-intro {
        position: static;
    }


    /* CONTACT */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-content {
        max-width: 100%;
    }

    .contact-form-wrapper {
        margin-top: 60px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;

        max-width: 500px;
    }

}


/* ==================================================
   MOBIEL
================================================== */

@media (max-width: 650px) {

    .container {
        width: min(100% - 30px, 1200px);
    }

    .header-container {
        width: calc(100% - 25px);
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .brand {
        gap: 10px;
    }

    .brand-name {
        font-size: 13px;
    }

    .brand-slogan {
        max-width: 220px;

        font-size: 7px;
    }


    /* HERO */

    .hero-content {
        padding: 60px 20px;

        transform: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-text {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-usp {
        gap: 12px;

        flex-direction: column;
    }

    .hero-image {
        min-height: 350px;
    }


    /* SECTIES */

    .visits,
    .packages,
    .about-section,
    .moments-section,
    .booking-section,
    .contact-section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2,
    .about-content h2 {
        font-size: 32px;
    }


    /* BEZOEKEN */

    .visit-grid {
        grid-template-columns: 1fr;
    }

    .visit-card {
        padding: 25px;
    }

    .visits-cta {
        flex-direction: column;

        align-items: flex-start;
    }

    .visits-cta-button {
        width: 100%;

        text-align: center;
    }


    /* PAKKETTEN */

    .package-info {
        padding: 30px 25px;
    }

    .package-list {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .package-price {
        padding: 28px 20px;
    }

    .package-card-row {
        grid-template-columns: 55px 1fr;

        padding: 25px;
    }

    .package-small-action {
        grid-column: 2;

        text-align: left;

        margin-top: 5px;
    }


    /* OVER ONS */

    .about-grid {
        gap: 40px;
    }

    .about-intro {
        font-size: 15px;
    }

    .about-text {
        font-size: 13px;
    }

    .about-photo {
        transform: none;
    }

    .about-photo img {
        height: 420px;
    }

    .about-photo-label {
        left: 20px;

        bottom: 20px;
    }


    /* GALERIJ */

    .photo-gallery {
        grid-template-columns: 1fr;

        grid-auto-rows: 280px;

        gap: 15px;

        margin-top: 35px;
    }

    .gallery-large {
        grid-row: span 1;
    }

    .gallery-wide {
        grid-column: span 1;
    }

    .gallery-note {
        text-align: center;
    }


    /* BOEKING */

    .booking-heading h2 {
        font-size: 34px;
    }

    .booking-heading p {
        font-size: 13px;
    }

    .booking-intro {
        padding: 28px 24px;
    }

    .booking-intro h3 {
        font-size: 21px;
    }

    .booking-form {
        padding: 25px 20px;
    }

    .form-section {
        padding-bottom: 28px;

        margin-bottom: 28px;
    }

    .visit-options {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-bottom: 15px;
    }

    .form-group-full {
        grid-column: auto;
    }

    .form-section-title strong {
        font-size: 15px;
    }

    .booking-submit-button {
        font-size: 12px;
    }


    /* CONTACT */

    .contact-content h2 {
        font-size: 34px;
    }

    .contact-intro {
        font-size: 14px;
    }

    .contact-text {
        font-size: 13px;
    }

    .contact-booking-button {
        width: 100%;

        text-align: center;
    }

    .contact-card {
        padding: 28px 22px;
    }

    .contact-item {
        gap: 13px;
    }

    .contact-item a {
        font-size: 13px;

        word-break: break-word;
    }

    .contact-form-wrapper {
        margin-top: 50px;

        padding: 28px 20px;
    }

    .contact-form-heading h3 {
        font-size: 25px;
    }

    .contact-form-heading p {
        font-size: 12px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;

        gap: 0;

        margin-bottom: 0;
    }

    .contact-form-row .contact-form-group {
        margin-bottom: 20px;
    }

    .contact-form-submit {
        flex-direction: column;

        align-items: stretch;

        gap: 12px;
    }

    .contact-submit-button {
        width: 100%;
    }

    .contact-form-submit p {
        text-align: center;
    }


    /* FOOTER */

    .site-footer {
        padding: 55px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 40px;
    }

    .footer-brand {
        grid-column: auto;

        max-width: 100%;
    }

    .footer-logo {
        width: 60px;
        height: 60px;
    }

    .footer-brand-name {
        font-size: 18px;
    }

    .footer-brand-line {
        max-width: 260px;
    }

    .footer-brand p {
        font-size: 10px;
    }

    .footer-column h3 {
        font-size: 15px;

        margin-bottom: 14px;
    }

    .footer-contact a {
        grid-template-columns: 22px 1fr;

        font-size: 10px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

    .footer-bottom p:last-child {
        text-align: left;
    }

}