@font-face {
    font-family: "Bello Script";
    src: url("../fonts/Bello\ Script.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
}


.site-header {
    width: 100%;
    box-sizing: border-box;
    padding: 18px 24px;
    background: #fffaf0;
    border-bottom: 2px solid #e7d7b4;
}

.site-nav {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-brand,
.site-nav-link {
    color: #1f2a2e;
    text-decoration: none;
    font-family: "Luckiest Guy", cursive;
    letter-spacing: 0.04em;
}

.site-brand {
    font-size: 1.5rem;
}

.site-nav-link {
    padding: 10px 18px;
    color: #fff;
    background: #c99a2c;
    border-radius: 6px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
    color: #fff;
    background: #b48821;
    transform: translateY(-2px);
}

.over-text-container {
    max-width: 860px;
    margin: 56px auto 64px;
    padding: 0 28px;
    text-align: left;
}

.over-text-container h1 {
    display: inline-block;
    margin: 0 0 22px;
    padding-bottom: 8px;
    border-bottom: 5px solid #c99a2c;
    font-size: clamp(2rem, 5vw, 3.4rem);
    transform: rotate(-2deg);
}

.over-text-container p {
    margin: 0 0 38px;
    padding: 28px 30px;
    background: #fffaf0;
    border-left: 6px solid #c99a2c;
    box-shadow: 0 8px 24px rgba(73, 55, 26, 0.1);
    border-radius: 6px;
}

.over-text-container br {
    display: none;
}

.ctc-banner {
    border-top: 2px solid #e7d7b4;
}

@media (max-width: 600px) {
    .site-header {
        padding: 14px 16px;
    }

    .site-brand {
        font-size: 1.2rem;
    }

    .site-nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .over-text-container {
        margin: 38px auto 44px;
        padding: 0 18px;
    }

    .over-text-container p {
        padding: 22px 20px;
    }
}


.about-chips-header {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: none;
}

.about-chips-header h2 {
    font-size: clamp(2rem, 8vw, 50px) !important;
    font-weight: 200 !important;
    margin-bottom: 5px !important;
    margin-top: 0 !important;
    padding: 0;
}

.about-chips-divider {
    width: min(320px, 80vw);
    height: 5px;
    background: #000000;
    margin-top: 10px;
    margin: 0 auto;
    transform: rotate(-3deg);
}

.about-chips {
    max-width: 900px;
    margin: 50px auto 0px auto;
    font-family: "Luckiest Guy";
    text-align: center;
    padding: 0 20px;
}

.about-chips h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;

}

.about-chips p {
    font-size: 1.15rem;
    font-weight: 400 !important;
    line-height: 1.2;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    color: #333;
}

.about-chips .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: #C99A2C;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: .3s;
}

.about-chips .btn:hover {
    background: #b48821;
}

.quote {
    font-family: "Bello Script";
    color: #C99A2C;
    font-size: 2.5rem;
    font-weight: 400;
    transform: rotate(-3deg);
    margin: 0 0;
}


.chips-container {
    width: 100%;
    padding: 0px;
    align-items: center;
    text-align: center;
}

.chips-image {
    width: 85vw;
    max-width: 800px;
    padding-left: auto;
    padding-right: auto;
}




.map-section {
    width: 100%;
    box-sizing: border-box;

    font-family: "Luckiest Guy", sans-serif;

    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;

    padding: 20px 0px 50px 0px;

    background-color: #f5f5f5;
}

.map-section p {
    font-size: 1.15rem;
    font-weight: 400 !important;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: #333;
}

.text-container {
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    text-align: center;
}

.text-container h2 {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.map-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.map-button {
    font-family: "Luckiest Guy";
    letter-spacing: 0.05em;
    font-weight: 100;
    margin: 20px auto 0 auto;
    padding: 14px 32px;
    background: #C99A2C;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: .3s;
    border: none;
    cursor: pointer;
}





.footer {
    background: #c9982b;
    color: white;
    padding: 20px 20px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
}

.footer h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 35px;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.contact {
    text-align: center;
}

.contact h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
}

.contact p {
    margin-top: 5px;
    font-size: 1.4rem;
    font-weight: bold;
}

.email {
    display: block;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 5px;
}

.bottom {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 2px solid rgba(255, 255, 255, 0.55);
}

.slogan {
    font-family: "Pacifico", cursive;
    font-size: 4rem;
    line-height: 1;
}

.logo {
    width: 180px;
    max-width: 260px;
    height: auto;
    border: 3px solid white;
    border-radius: 50%;
}

.maker-mark {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-family: "Luckiest Guy", cursive;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-align: center;
}

.footer h2,
.contact h3,
.contact p,
.email {
    font-family: "Luckiest Guy", cursive;
    letter-spacing: 0.05em;
    font-weight: 100;
}

.slogan {
    font-family: "Bello Script", cursive;
    transform: rotate(-3deg);
}


/* ==========================================
   NETHERLANDS MAP
========================================== */

#netherlands-map {
    width: 100%;
    max-width: 950px;
    min-width: 300px;
    aspect-ratio: 3 / 2;

    margin: 0px auto 0px auto;

    background: transparent;
    overflow: visible !important;
}

#netherlands-map .leaflet-pane {
    overflow: visible !important;
}

#netherlands-map .leaflet-popup-pane {
    overflow: visible !important;
}

#netherlands-map .leaflet-popup {
    margin-bottom: 0 !important;
}

#netherlands-map.leaflet-container {
    outline: none;
    background: transparent;
}


/* ==========================================
   QR CODE CONTAINER
========================================== */

.map-container {
    width: 33%;
    max-width: 400px;
    min-width: 250px;
    margin: 0 auto;

    box-sizing: border-box;

    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.ctc-qr {
    font-family: "Luckiest Guy";
    letter-spacing: 0.05em;
    font-weight: 100;
    margin-bottom: 20px;
    text-align: center;
}

.map-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* ==========================================
   CUSTOM MARKERS
========================================== */

.custom-marker {
    background: transparent;
    border: none;
}

.marker-pin {
    width: 18px;
    height: 27px;
    position: relative;
}

.marker-pin::before {
    content: "";
    position: absolute;
    top: -13px;
    left: 0;
    width: 100%;
    height: 39px;
}

.marker-head {
    width: 14px;
    height: 14px;

    position: absolute;
    top: 2px;
    left: 2px;

    border-radius: 50%;

    z-index: 3;

    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.2);
    border:#00000046 solid 1px;

    overflow: hidden;
}

.marker-head::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(rgba(255, 255, 255, 0.7),
            rgba(0, 0, 0, 0));

    transform: rotate(-45deg);
    transform-origin: center;

    pointer-events: none;
}

.marker-stem {
    width: 3px;
    height: 8px;

    position: absolute;

    top: 16px;
    left: 8px;

    background: #b7c0c4;

    border-radius: 0 0 5px 5px;
}


/** Over Ons **/
.over-text-container {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    text-align: left;
}

.over-text-container h1 {
    font-size: 2rem;
    font-family: "Luckiest Guy", cursive;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.over-text-container p {
    font-size: 1.15rem;
    font-family: "Luckiest Guy", cursive;
    font-weight: 400 !important;
    line-height: 1.2;
    letter-spacing: 0.04em;
    color: #333;
}

.ctc-banner {
    background-color: #f0f0f0;
    font-family: "Luckiest Guy", cursive;
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-bottom: 50px;
}

.ctc-text {
    padding: 20px 0 0 0;
    width: 70%;
    text-align: center;
}

.ctc-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}