@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Orbitron:wght@400..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Crimson Text', sans-serif;
}

/* Wp admin bar don't show */
#wpadminbar {
    display: none;
}

html {
    margin-top:0px!important;
}

/* Theme Color Palette */
:root {
    --primary-color: #1C1C2D; /* Deep Cosmos */
    --secondary-color: #D4AF37; /* Antique Gold */
    --accent-color: #00E0FF; /* Electric Cyan */
    --primary-background: #F1ECE1; /* Time Dust */
    --secondary-background: #4C4C57; /* Iron Gray */
    --text-color: #1C1C2D;
    --text-color-light: #F1ECE1;
    --border-color: #4C4C57;
    --highlight-color: #A63929; /* Oxide Red */
    --muted-color: #4C4C57;
    --surface-light: rgba(241, 236, 225, 0.85);
    --surface-dark: rgba(28, 28, 45, 0.85);
    --accent-glow: rgba(0, 224, 255, 0.4);
}

body {
    background-color: var(--primary-background);
    color: var(--text-color);
}

.tour-content h1 {
    color: var(--text-color);
    font-size: 28px;
}

.tour-content-info p:first-of-type {
    font-size: 16px;
    font-weight: 500;
    line-height: 160%; /* 25.6px */
}

.tour-content-info p {
    color: var(--text-color);
    font-family: 'Crimson Text', serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 25.2px */
    margin-bottom: 20px;
}

.tour-content-info .tour-content-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tour-content-info .tour-content-next-prev {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.tour-content-next-prev .btn {
    font-size: 14px;
    padding: 15px 15px;
}

h1, h2 {
    font-family: 'Orbitron', sans-serif;
}

h2 {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 24px */
}

p {
    color: var(--text-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 15px */
}

.secundary-p {
    opacity: 0.5;
    margin-left: 10px;
}

.container {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.container.menu-container {
    max-width: 100%;
    padding: 20px;
    position: fixed;
    z-index: 20;
}

.sub-page .container.menu-container {
    position: absolute;
}

.container.menu-container .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu__back-link {
    display:flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
}

/* Hamburger */
.hamburger svg {
    cursor: pointer;
}

.header-image {
    width: 100%;
    height: 250px;
    background-position: center;
}

.content {
    background-color: var(--primary-color);
    padding: 20px;
    color: var(--text-color-light);
    text-align: center;
    position: relative;
}

.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.title {
    margin-top: 20px;
    font-size: 18px;
}

.subtitle {
    margin-top: 10px;
    font-size: 24px;
    font-weight: bold;
}

.fingerprint {
    position: absolute;
    top: -50px;
    right: 10px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, transparent 50%, white 50%);
    border-radius: 50%;
    opacity: 0.5;
}

.btn {
    margin-top: 20px;
    padding: 15px 20px;
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-background), var(--primary-color));
    color: var(--text-color-light);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width:100%;
    font-family: 'Inter', sans-serif;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 6px 16px rgba(28, 28, 45, 0.35);
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 8px 22px var(--accent-glow);
}

.btn.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.35);
}

.btn.btn-primary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 10px 28px var(--accent-glow);
}



/* Museum Digital Tour Styling */
.hero-section {
    position: relative;
    height: 100dvh;
    width: 100%;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    text-align: center;
    height: 100%;
}

.logo img {
    width: 120px;
    margin-bottom: 20px;
}

.fingerprint-light {
    position: absolute;
    top: 37.5dvh;
    right: 20px;
    width: 96px;
    z-index: 40;
}

.tour-info {
    position: relative;
    background-image: 
    
    radial-gradient(circle farthest-corner at center top, transparent 45dvh, rgba(28, 28, 45, 0.9) 45dvh);
    background-size: cover, auto; 
    background-repeat: no-repeat, repeat; 
    background-position: center, center; 
    -webkit-mask-image: radial-gradient(circle farthest-corner at center top, transparent 45dvh, black 45dvh);
    -webkit-mask-composite: destination-in;
    mask-image: radial-gradient(circle farthest-corner at center top, transparent 45dvh, black 45dvh);
    mask-composite: intersect;

    padding: 40px 20px 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tour-info h1 {
    color: var(--text-color-light);
}

span.dot-span {
    color: var(--Wit, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 32px */
    display:flex;
    /* justify-content: center; */
    align-items: center;
    gap:5px;
    margin-bottom:20px;
}

span.dot-span.green {
    color: var(--accent-color);
    font-size: 15px;
}

.tour-info span {
    justify-content: center;
}

.tour-featured-image {
    margin-bottom: 10px;
    border-radius: 8px;
    width: 100%;
}

/* Navigate page */
.navigatie-section {
    position: relative;
    height: 100svh;
    width: 100%;
    overflow: hidden;
    /* background-image: 
    url('https://tour.nvmoudenbosch.nl/wp-content/themes/NVMOTour/assets/content/images/nvmo-pattern.png'),
    linear-gradient(180deg, rgba(28, 28, 45, 0.95) 0%, rgba(76, 76, 87, 0.95) 100%); */
    background-color: var(--primary-color);
}

.navigatie-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* align-items: center; */
    height: 100%;
}

.navigatie-info h1 {
    padding: 0 20px;
    color: var(--text-color-light);
}

.navigatie-info p {
    margin-bottom: 15px;
    padding: 0 20px;
    color: var(--text-color-light);
}

/* Language switcher */
.language-switcher {
    margin: 10px 0 20px 0;
    display: flex;
    gap: 10px;
    width: 100%;
    min-width: 100%;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.language-switcher .language-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: var(--text-color-light);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 14px */
    text-transform: uppercase;
    cursor: pointer;
}

.language-switcher .language-item:first-of-type {
    margin-left: 20px;
}

.language-switcher .language-item:hover .flag-container {
    background: rgba(0, 224, 255, 0.2);
}

.language-switcher .flag-container {
    border-radius: 50%;
    border: 1px solid rgba(0, 224, 255, 0.3);
    padding: 10px;
    display:flex;
    justify-content: center;
    align-items: center;
}

.language-switcher .language-item.active .flag-container {
    border-color: var(--accent-color);
}

.language-switcher .flag-container img {
    width: 38px;
    height: 38px;
    cursor: pointer;
    object-fit: cover;
    border-radius: 50%;
    margin: 0;
}

.nummer-navigatie-container {
    border-radius: 30px 30px 0px 0px;
    background: var(--surface-light);
    padding: 30px 0px;
    display:flex;
    flex-direction: column;
    gap:30px;
}

.nummer-navigatie-container .btn-start {
    margin: 0px 20px;
    width: auto;
}

/* Expositie switcher */
.expositie-switcher {
    display: flex;
    gap: 10px;
    width:100%;
    min-width:100%;
    overflow: auto; /* Enable scrolling */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    scrollbar-width: none; /* For Firefox */
}

.expositie-switcher::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

.expositie-item {
    background: rgba(76, 76, 87, 0.85);
    border-radius: 90px;
    display: flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    text-wrap: nowrap;
    border: 1px solid rgba(212, 175, 55, 0.35);
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.expositie-item:first-of-type {
    margin-left: 20px;
}

.expositie-item:last-of-type, .nummer-item:last-of-type {
    margin-right: 20px;
}

.expositie-item.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.45);
}

.expositie-item:active,
.expositie-item:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 8px 24px var(--accent-glow);
    transform: translateY(-2px);
}

/* Nummer items */
.nummer-item {
    cursor: pointer;
    opacity: 0.3;
    transition: opacity 0.2s;
    display: flex!important; 
    align-items: center; 
    justify-content: center;
    gap: 15px; /* space between dot, number, dot */
}

/* Hover feedback */
.nummer-item:hover {
    opacity: 0.6;
}

/* Active item styles + show dot images */
.nummer-item.active {
    color: var(--primary-color);
    font-size: 200%;
    line-height:100%;
    font-weight: 700;
    opacity: 1;
}

/* Dot images: hidden by default, shown on .active */
/* .dot-active-nummer {
    display: none;
} */

.nummer-navigatie-swiper {
    position: relative;
}

/* Center dots container */
.nummer-dots-container {
    display: flex;
    gap: 35px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

}

.nummer-item.active .dot-active-nummer {
    display: inline-block;
}

/* Audio module */
.audio-module {
    position: fixed;
    bottom: 0;
    left:0;
    width:100%;
    background: var(--surface-light);
    padding: 5px 20px 30px 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 -12px 24px rgba(28, 28, 45, 0.25);
}

.audio-module .audio-module-content {
    display: grid;
    /* Display 1fr 3fr 1fr */
    grid-template-columns: 1fr 3fr 1fr;
    gap: 15px;
    align-items: center;
    margin: 10px 0;
}

.audio-module .audio-module-content.no-audio {
    margin-top: 20px;
    grid-template-columns: 1fr 4fr;
}

.audio-module .audio-module-content p.audio-module-no-audio {
    color: var(--text-color);
    opacity: 0.5;
    font-size: 14px;
    margin-top: 5px;
}

.audio-module-content .audio-module-left {
    display: flex;
    align-items: center;
}

.audio-module-content .audio-module-left img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.audio-module-content p.audio-module-title {
    color: var(--text-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 25.6px */
}

.audio-module-content .audio-module-right {
    justify-self: end;
}

.audio-module hr {
    border: 1px solid var(--accent-color);
    width:100%;
}

#audio-module-file, .pause-btn {
    display: none;
}

.audio-timeline {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.audio-timeline-bar {
    position: relative;
    height: 2px;
    background-color: rgba(241, 236, 225, 0.55);
    width: 100%;
    /* margin: 10px 0 0 0; */
    overflow: hidden;
    border-radius: 2px;
}

.audio-timeline-progress {
    position: absolute;
    height: 100%;
    background-color: var(--accent-color);
    width: 0%;
}

.audio-module-time-text {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    line-height: 100%;
    opacity: 0.7;
    color: var(--text-color);
}

.audio-module-slideup hr {
    border: 0px;
    border-radius: 100px;
    opacity: 0.1;
    height: 4px;
    width: 40px;
    margin: 0 auto;
    background: var(--border-color);
}

/* Tour content */
.tour-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-background);
}

.tour-section.rtl {
    direction: rtl;
}

.tour-content {
    padding: 20px;
    margin-top: 75px;
    margin-bottom: 20vh;
}

/* Hamburger menu */
.hamburger-menu {
    position:absolute;
    top:0;
    display:none;
    height: 100svh;
    z-index: 30;
}

.close-hamburger-menu {
    z-index: 31;
}

/* Full page slide up */
.audio-module-fullpage {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('https://tour.nvmoudenbosch.nl/wp-content/themes/NVMOTour/assets/content/images/nvmo-pattern.png'),
    linear-gradient(180deg, rgba(28, 28, 45, 0.95) 0%, rgba(76, 76, 87, 0.95) 100%); */
    transition: top 0.3s ease-in-out;
    z-index: 9000;
    background-position: center center!important;
    background-size: cover!important;
}

.audio-module-fullpage .fullpage-section {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.audio-module-fullpage .fullpage-header {
    margin-bottom: 50px;
}

.audio-module.fullpage {
    position: relative;
}

.audio-module.fullpage .audio-timeline {
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:5px;
}

.audio-module.fullpage .audio-timeline .audio-timeline-bar {
    width: 100%;
    /* Entire flex */
    flex: 1 1 auto;
}

.audio-module-fullpage.open {
    top: 0;
}

.controll-btn {
    /* display: flex; */
    width: 64px;
    height: 64px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    position: relative;
}

.controll-btn svg {
    height: 28px;
    width: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.audio-module-fullpage .fullpage-content {
    padding: 20px;
    background-color: var(--surface-light);
    border-radius: 30px 30px 0px 0px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -12px 32px rgba(28, 28, 45, 0.35);
}

.audio-module-fullpage .fullpage-content h2 {
    color: var(--text-color);
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 26.4px */
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

#close-fullpage-slideup {
    z-index: 30;
}

.audio-module-fullpage .audio-module-under {
    margin-bottom: 20px;
}

.audio-module-fullpage .audio-module-content {
    display:flex;
    justify-content: center;
}

.audio-module-fullpage .audio-module-controls {
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.footer-info {
    display:flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: flex-end;
}

.footer-info p {
    margin:0;
    color: var(--text-color-light);
}

.footer-info a {
    color: var(--accent-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 14px */
}

/* Misc */
#language-notice {
    display:none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: var(--surface-dark);
    color: var(--secondary-color);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 20px var(--accent-glow);
    z-index: 1000;
}