* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
  --brand-orange: #FF6200;
  --brand-purple: #7724FD;
  --brand-fuscha: #D40199;
  --brand-white: #FFF;
  --bg-white: #FFF;
  --text-dark: #4D0021;
  --text-white: #FFF;
}
/* Fonts definiëren */
@font-face {
    font-family: 'ING Display';
    src: url('../font/INGdisplay-VAR.woff') format('woff');
    font-weight: normal;
}
.fixed-nav ul .flex li{
    display: block;
}
@font-face {
    font-family: 'ING Display';
    src: url('../font/INGdisplay-Bold.woff') format('woff');
    font-weight: bold;
}

@font-face {
    font-family: 'ING Display';
    src: url('../font/INGdisplay-ExBold.woff') format('woff');
    font-weight: 900;
}

@font-face {
    font-family: 'ING Display';
    src: url('../font/INGdisplay-Medium.woff') format('woff');
    font-weight: 500;
}

@font-face {
    font-family: 'ING MeCy';
    src: url('../font/INGMeCyWeb-Regular.woff') format('woff');
    font-weight: normal;
}

body {
    font-family: 'ING MeCy', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
    max-width: 1920px;
    margin: 0 auto;
}

/* Fixed Navigation */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
    z-index: 999;
    background-color: white;
}

.fixed-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}
span {
    color: #EBEBEB;
}
.flex{
    display: flex;
    gap: 10px;
    align-items: center;
}
.language-toggle {
    display: flex;
    align-items: center;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'ING MeCy', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95em;
    color: #666;
    padding: 5px 8px;
    transition: color 0.3s ease;
}

.lang-btn.active {
    color: #55eace;
    font-weight: 900;
}

.lang-btn:hover {
    color: #55eace;
}

.logo-ing {
    width: 200px;
    cursor: pointer;
}

/* Scroll Container */
.scroll-container {
    position: relative;
    width: 100%;
}

/* Hero Sections */
.hero {
    height: calc(100vh - 100px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .empty {
    flex: 1;
}
.hero-content-fixed {
    position: fixed;
    padding-left: 7%;
    padding-right: 7%;
    right: 0;
    top: 100px;
    width: 45%;
    height: calc(100vh - 100px);
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 100;
    pointer-events: none;
    opacity: 1;
    max-height: calc(100vh - 100px);
    overflow: hidden;
    transition: opacity 0.8s ease-in-out;
}
.hero-content-fixed h1,
.hero-content-fixed h3,
.hero-content-fixed p,
.hero-content-fixed .button-group {
    pointer-events: auto;
}
.hero-content-fixed h1,
.hero-content-fixed h3,
.hero-content-fixed p[data-i18n*="subtitle"] {
    transition: opacity 1s ease-in-out;
}
.hero-content-fixed.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 100;
}

.hero-content-fixed:not(.active) {
    opacity: 0;
    pointer-events: none;
}
.hero-content {
    position: fixed;
    padding-left: 7%;
    padding-right: 7%;
    right: 0;
    top: 100px;
    width: 45%;
    height: calc(100vh - 100px);
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: none;
    flex-direction: column;
    justify-content: center;
    z-index: 100;
    pointer-events: none;
}
.hero-content h1,
.hero-content h3,
.hero-content p,
.hero-content .button-group {
    pointer-events: auto;
}
.hero-content.active {
    display: flex;
}

/* Red Hero */
.first-hero {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    margin-right: 45%;
}

/* Blue Hero */
.second-hero {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-right: 45%;
}

/* Green Hero */
.third-hero {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-right: 45%;
}

/* Map Section */
.map-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    z-index: 200;
}

.map-left-column {
    flex: 1;
    position: relative;
}

.map-left-column #map {
    width: 100%;
    height: 100%;
}

.map-right-column {
    width: 50%;
    flex-shrink: 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 5%;
}
.map-right-column h1 {
    color: #FF6600;
    font-size: 5em;
}
.map-right-column h3 {
    color: #000000;
    font-size: 2em;
}
.map-right-column p {
    width: 60%;
    margin-bottom: 2rem;
}
.map-right-column .search-input-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px;
    display: flex;
    align-items: center;
}

/* Typography */
h1 {
    font-size: 6em;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'ING Display', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: 'ING Display', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
}

.description {
    font-size: 1em;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 40px;
}

p {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
}

/* Button Styling */
.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 8px 32px;
    font-size: 1em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'ING MeCy', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #FF6600;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #ff6600ae;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #003F87;
}

/* Search Input Wrapper */
.search-input-wrapper {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 35%;
    max-width: 400px;
    display: flex;
    align-items: center;
}

.map-right-column .search-input-wrapper {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 15px;
    width: 20px;
    height: 20px;
    stroke: #999;
    pointer-events: none;
}

#searchBar {
    width: 100%;
    padding: 12px 15px 12px 45px;
    font-size: 1em;
    border: none;
    font-family: 'ING MeCy', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: box-shadow 0.3s ease;
    border-radius: 100px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
}

#searchBar:focus {
    outline: none;
    box-shadow: 0 0px 13px rgba(255, 102, 0, 0.4);
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.modal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
    flex-shrink: 0;
}

.modal-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.modal-content {
    flex: 1;
    overflow-y: auto;
    margin: 0 auto;
    width: 100%;
}

.modal-content.starter-modal-content {
    display: flex;
}

.starter-image-column {
    width: 40%;
    flex-shrink: 0;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#bannerFrame {
    position: relative;
    height: auto;
    aspect-ratio: 1080 / 1960;
    border: none;
    border-radius: 0;
}

.starter-content-column {
    width: 60%;
    overflow-y: auto;
    padding-left: 5%;
    padding-top: 2rem;
    padding-bottom: 2rem ;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.modal-content h2 {
    color: #000000;
    font-family: 'ING Me', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5em;
}

.modal-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'ING MeCy', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1em;
    color: #666;
    padding: 0;
    transition: color 0.3s ease;
}
.back-btn{
    font-size: 2.5em;
}
/* InfoWindow styling */
.infowindow-container {
    padding: 10px;
    font-family: Arial, sans-serif;
}

.infowindow-title {
    margin: 0 0 5px 0;
    color: #003f87;
}

.infowindow-img {
    width: 300px;
    height: auto;
    margin-bottom: 10px;
}

.infowindow-description {
    margin: 0;
    color: #666;
}
.replaybutton{
    position: absolute;
    right: 15px;
    bottom: 15px;
    padding: 6px 20px;
    font-size: 1em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'ING MeCy', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    transition: all 0.3s 
ease;
    background-color: #FF6600;
    color: white;
}
.replaybutton:hover{
    background-color: #e65500;
}
#map {
    width: 100%;
}
.download-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #dadada;
    padding-bottom: 10px 0;
}
.downloadAll{
    padding: 8px 26px;
    font-size: 1em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'ING MeCy', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #FF6600;
    color: white;
}
.download{
    padding: 4px 18px;
    font-size: .8em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'ING MeCy', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    background-color: #FF6600;
    color: white;
}
[data-i18n="subtitle_1"]{
    font-size: 1.2rem;
    height: 16vh !important;
}
/* Hero Subtitle Heights */
[data-i18n="subtitle_2"],
[data-i18n="subtitle_3"] {
    height: 16vh !important;
    font-size: .9rem !important;
}

@media (min-width: 1600px) {
    [data-i18n="subtitle_1"],
    [data-i18n="subtitle_2"],
    [data-i18n="subtitle_3"] {
        height: 10vh !important;
    }

    body[data-language="nl"] [data-i18n="main_title_1"]{
        font-size: 6.25em;
    }
    body[data-language="nl"] [data-i18n="main_title_2"]{
        font-size: 6.25em;
    }
    body[data-language="nl"] [data-i18n="main_title_3"]{
        font-size: 4.5em;
    }

    body[data-language="fr"] [data-i18n="main_title_1"] {
        font-size: 5em !important;
    }
    body[data-language="fr"] [data-i18n="main_title_2"] {
        font-size: 5em !important;
    }
    body[data-language="fr"] [data-i18n="main_title_3"] {
        font-size: 3.5em !important;
    }
}
/* Responsive design */
@media (max-width: 1600px) {
    .logo-ing {
        width: 150px;
    }

    body[data-language="nl"] [data-i18n="main_title_1"]{
        font-size: 5.2em;
        line-height: .855;
    }
    body[data-language="nl"] [data-i18n="main_title_2"]{
        font-size: 4.5em;
    }
    body[data-language="nl"] [data-i18n="main_title_3"]{
        font-size: 3em;
    }

    body[data-language="fr"] [data-i18n="main_title_1"] {
        font-size: 4.1em !important;
        line-height: .9 !important;
    }
    body[data-language="fr"] [data-i18n="main_title_2"] {
        font-size: 3.7em !important;
    }
    body[data-language="fr"] [data-i18n="main_title_3"] {
        font-size: 2.7em !important;
    }

    h3 {
        font-size: 1.5em;
    }

    #searchBar {
        padding: 10px 15px 10px 45px;
        font-size: .9em;
    }

    .search-input-wrapper {
        width: 40%;
    }

    .infowindow-img {
        width: 200px;
    }
    .map-right-column h1 {
        font-size: 4em;
    }
    .map-right-column h3 {
        font-size: 1.5em;
    }
    .map-right-column p {
        width: 90%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 1200px) {
    .hero-content-fixed {
        padding-left: 4%;
        padding-right: 4%;
    }

    .hero-content {
        padding-left: 4%;
        padding-right: 4%;
    }
    .map-right-column h1 {
        font-size: 3em;
    }
}
@media (max-width: 1024px) {
    h1 {
        font-size: 3.5em;
    }
    .first-hero {
        background-position: left;
    }
    h3 {
        font-size: 1em;
    }

    .description {
        font-size: 0.9em;
    }

    .button-group {
        gap: 15px;
    }

    .hero-btn {
        padding: 10px 25px;
        font-size: 0.9em;
    }

    .search-input-wrapper {
        width: 50%;
    }

    .modal-content {
        padding: 30px;
    }

    .modal-content h2 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .first-hero {
        background-position: center;
        background-size: cover;
        background-attachment: scroll;
        margin-right: 0;
        height: 100vh;
    }
    .second-hero {
        background-position: center;
        background-size: cover;
        background-attachment: scroll;
        margin-right: 0;
        height: 100vh;
    }
    .third-hero {
        background-position: center;
        background-size: cover;
        background-attachment: scroll;
        margin-right: 0;
        height: 100vh;
    }
    .fixed-nav ul .flex li{
        display: none;
    }
    .hero-content-fixed{
        left: 0;
        width: 100%;
        height: auto;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .fixed-nav {
        width: 100%;
        padding: 8px 5%;
    }

    h1 {
        font-size: 4em;
    }
    p {
        font-size: 0.8em;
    }
    h3 {
        font-size: 1.3em;
    }

    .description {
        font-size: 0.85em;
    }

    .hero {
        height: 100vh;
    }

    .button-group {
        gap: 10px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 0.85em;
    }

    .search-input-wrapper {
        width: 70%;
    }

    .search-icon {
        width: 18px;
        height: 18px;
    }

    #searchBar {
        padding: 10px 12px 10px 40px;
        font-size: 0.85em;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-content-wrapper {
        width: 100% !important;
    }

    .images-gallery {
        flex-direction: column !important;
        width: 80% !important;
        margin: 0 auto !important;
        margin-top: 3rem !important;
    }

    .modal-content h2 {
        font-size: 1.5em;
    }

    .infowindow-img {
        width: 150px;
    }
    .map-section {
        height: calc(100vh - 100px);
        flex-direction: column-reverse;
        height: 100vh;
    }
    .map-right-column {
        width: 100%;
    }
    .map-right-column h1 {
        font-size: 2.5em;
    }
    .map-right-column h3 {
        font-size: 1.2em;
    }
    body[data-language="nl"] [data-i18n="subtitle_1"],
    body[data-language="nl"] [data-i18n="subtitle_2"],
    body[data-language="nl"] [data-i18n="subtitle_3"] {
        height: 11vh !important;
    }
    body[data-language="nl"] [data-i18n="main_title_1"]{
        font-size: 4em;
        line-height: 1;
    }
    body[data-language="nl"] [data-i18n="main_title_2"]{
        font-size: 4em;
    }
    body[data-language="nl"] [data-i18n="main_title_3"]{
        font-size: 3em;
    }

    body[data-language="fr"] [data-i18n="main_title_1"] {
        font-size: 3.3em !important;
        line-height: 1 !important;
    }
    body[data-language="fr"] [data-i18n="main_title_2"] {
        font-size: 3.3em !important;
    }
    body[data-language="fr"] [data-i18n="main_title_3"] {
        font-size: 2.5em !important;
    }
    body[data-language="fr"] [data-i18n="subtitle_1"],
    body[data-language="fr"] [data-i18n="subtitle_2"],
    body[data-language="fr"] [data-i18n="subtitle_3"] {
        height: 11vh !important;
    }
    .modal-content.starter-modal-content {
        display: block;
    }
    .starter-image-column {
        width: 100%;
    }
    .starter-content-column {
        width: 100%;
        padding-right: 5%;
    }
    .download-section {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;

    }
}

/* Sticky Logo */
.sticky-logo {
    position: fixed;
    bottom: 0px;
    right: 5px;
    height: 80px;
    z-index: 999;
    transition: opacity 0.6s ease-in-out;
}
