/*
==========================================
Table of Contents
==========================================

• Root Styles, Branding Definitions, Design Elements
• Layout Containers and General Styling (Rows, Columns, Panels)
• Row specific Styles ....
• Responsive Styles
    • @media (max-width: 960px)
    • @media (max-width: 760px)
    • @media (max-width: 540px)
    • @media (max-width: 480px)
*/
/* root styles, branding definitions, design elements */

@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tapas Sans';
  src: url('../assets/fonts/TapasSans.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-darkgrey: #231D1D;
  --color-darkbrown: #2D1E1E;
  --color-lightred: #D85636;
  --color-darkred: rgba(162, 51, 37, 1);
  --color-darkred-opacity: rgba(162, 51, 37, 1);
  --color-lila: #9DA3C4;
  --color-beige: #DDCDB6;
  --color-lightbeige: #E8E2D5;
  --color-lightbeige-opacity: #FAF9F7;
  --color-gray: #444;
  --color-lightgray: #a1a1a1;
  --font-text: 'Playfair Display', serif;
  --font-alt: 'Tapas Sans', sans-serif;
  --pane-radius: 8px;
  --panel-spacing: 1.25rem;
  --p-line-height: 1.7rem;
  --nav-height: 50px;
  --filter-bar-height: 50px;
}

html {
  scroll-behavior: smooth;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-text);
  font-weight: 400;
  color: var(--color-darkgrey);
  min-height: 100vh;
  padding: 0;

}

button:disabled {
  /* styles for disabled button */
  opacity: 0.6;
  cursor: default;
}

button:disabled:hover {
  transform: none;
}

.btn {
  display: inline-block;
  font-family: var(--font-alt);
  font-size: 10px;
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.1s ease;
  margin: 1em 0;
  /* Default appearance */
  background: var(--color-darkred);
  color: white;
}

.btn:hover {
  transform: scale(1.01);
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

.btn:disabled:hover,
.btn[disabled]:hover {
  transform: none;
}

.btn-empty {
  background-color: white;
  color: var(--color-darkred);
  font-weight: 300;
  text-decoration: underline;
}

.btn-inverted {
  background-color: var(--color-lightbeige);
  color: var(--color-darkred);
  border: 1px solid var(--color-darkred);
  font-size: 0.7em;
  font-weight: 300;
}

/* Navigation context - no variant class needed! */
nav .btn {
  margin: 0;
  font-size: 0.6rem;
  color: white;
}

nav .btn:visited {
  color: white;
}

/* Audio quotes context */
.audio-quotes .btn,
.audio-quotes .btn-empty,
.audio-quotes .btn-inverted {
  margin: 0rem auto 0.5rem;
  width: 100%;
}

/* Headings and Paragraphs */

h1,
h2 {
  font-family: var(--font-text);
  color: var(--color-darkgrey);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;

}

h1 {
  font-size: 2.5rem;
  margin-top: 1.5em;
}

h2 {
  margin-top: 1.2em;
  font-size: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin-left: 5px;
  margin-right: 5px;
}

p {
  font-size: 1.1rem;
  color: var(--color-darkgrey);
  line-height: var(--p-line-height);
  margin-bottom: 0.9rem;
}

a {
  color: var(--color-darkred);
}

ul {
  list-style: none;
}

li {
  margin: 0.5rem 0;
}

/* Background color utility classes */

.background-darkbrown {
  background-color: var(--color-darkbrown);
}

.background-lightbeige {
  background-color: var(--color-lightbeige);
}

.background-beige {
  background-color: var(--color-beige);
}

.background-lila {
  background-color: var(--color-lila);
}

.background-darkred,
.background-darkred p,
.background-darkred h2 {
  background-color: var(--color-darkred);
  color: white;
}


/** ICONS and SYMBOLS **/


[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  width: 20px;
  height: 20px;
}

span[class^="icon-"] {
  margin-right: 0.3rem;
}

.icon-person {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12C14.21 12 16 10.21 16 8C16 5.79 14.21 4 12 4C9.79 4 8 5.79 8 8C8 10.21 9.79 12 12 12ZM12 14C9.33 14 4 15.34 4 18V20H20V18C20 15.34 14.67 14 12 14Z' fill='%23A23325'/%3E%3C/svg%3E");
}

.icon-person-light {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12C14.21 12 16 10.21 16 8C16 5.79 14.21 4 12 4C9.79 4 8 5.79 8 8C8 10.21 9.79 12 12 12ZM12 14C9.33 14 4 15.34 4 18V20H20V18C20 15.34 14.67 14 12 14Z' fill='%23D85636'/%3E%3C/svg%3E");
}

.icon-person-white {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12C14.21 12 16 10.21 16 8C16 5.79 14.21 4 12 4C9.79 4 8 5.79 8 8C8 10.21 9.79 12 12 12ZM12 14C9.33 14 4 15.34 4 18V20H20V18C20 15.34 14.67 14 12 14Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.icon-location {
  background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 24 24" fill="blue"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}

.icon-play {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5v14l11-7z' fill='%23A23325'/%3E%3C/svg%3E");
}

.icon-editor {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z' fill='%23A23325'/%3E%3C/svg%3E");
}

.icon-sounddesign {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z' fill='%23A23325'/%3E%3C/svg%3E");
}

.icon-voiceover {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z' fill='%23A23325'/%3E%3C/svg%3E");
}

.icon-web {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z' fill='%23A23325'/%3E%3C/svg%3E");
}

.icon-location {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='%23A23325' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5S13.38 11.5 12 11.5z'/%3E%3C/svg%3E");
}

.icon-duration {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='%23A23325' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6.605 4.61A8.502 8.502 0 0112 20.5a8.5 8.5 0 01-6.605-13.89L12 12l6.605-6.39z'/%3E%3C/svg%3E");
}

.icon-info {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z' stroke='%23A23325' stroke-width='1.5' fill='none'/%3E%3Ctext x='12' y='16' text-anchor='middle' font-family='Arial, sans-serif' font-size='12' font-weight='bold' fill='%23A23325'%3Ei%3C/text%3E%3C/svg%3E");
}

.icon-facebook {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23A23325'/%3E%3Cpath d='M13.5 17v-5h1.5l.5-2.5h-2V8.5c0-.552.448-1 1-1h1V5.5h-1c-1.657 0-3 1.343-3 3V9.5H9V12h1.5v5h3z' fill='white'/%3E%3C/svg%3E");
}

.icon-instagram {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23A23325'/%3E%3Crect x='8' y='8' width='8' height='8' rx='2' fill='white'/%3E%3Ccircle cx='12' cy='12' r='2' fill='%23A23325'/%3E%3Ccircle cx='15' cy='9' r='0.7' fill='%23A23325'/%3E%3C/svg%3E");
}

.icon-email {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23A23325'/%3E%3Crect x='7' y='9' width='10' height='6' rx='2' fill='white'/%3E%3Cpolyline points='7,9 12,13 17,9' fill='none' stroke='%23A23325' stroke-width='1.5'/%3E%3C/svg%3E");
}

.icon-tag {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23A23325'/%3E%3Cpath d='M9 8.5h4.5l2.7 2.7L10.5 16.9H9V8.5z' fill='white'/%3E%3Ccircle cx='13.2' cy='10.4' r='1.1' fill='%23A23325'/%3E%3C/svg%3E");
}


/* Content Row Base Styles */

.content-row {
  width: 100%;
  padding: 1.5rem 0;
}

.content-wrapper-960 {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--panel-spacing);
}

.content-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: var(--pane-radius);
  padding: 1.5rem;
}

.content-split {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.content-split-left {
  flex: 2;
}

footer .content-split-right {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}


/* NAVIGATION */


section:has(nav) {
  position: sticky;
  top: 0;
  z-index: 10000;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

nav {
  background: var(--color-darkbrown);
  color: white;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.nav-menu {
  display: flex;
  justify-content: left;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav button {
  padding: 0.5rem 0.1rem;
  margin: 0;
  color: white;
}

nav ul li a {
  text-decoration: none;
  color: inherit;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0.7rem;
}

nav button a,
nav button a:visited {
  color: white;
  ;
  font-size: 0.6rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
}

.nav-monogram::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 2rem;
  height: 2rem;
  /* margin-left: 0.75rem; */
  background: url('../assets/lp-logo-monogram.svg') center center/contain no-repeat;
}

/* Bottom Navigation */
nav.bottom-nav {
  position: fixed !important;
  top: auto !important;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-darkbrown);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
  z-index: 99999;
  height: 50px;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.25rem;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.2s ease;
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.bottom-nav-item:last-child {
  border-right: none;
}

.bottom-nav-item:hover,
.bottom-nav-item:active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-lightred);
}

.bottom-nav-text {
  text-align: center;
  line-height: 1.2;
}


/* Row Specific Styles */

.splash-row {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
  min-height: 26rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  filter: grayscale(1);
}

.splash-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
  vertical-align: middle;
}

.splash-monogram {
  width: 6rem;
}

.splash-row h2 {
  display: block;
  color: white;
  max-width: 400px;
  font-size: 2rem;
  margin-top: 1rem;
}


/** Carousel Styles */
.carousel-row {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 40px;
  transition: transform 0.3s ease-in-out;
  width: max-content;
  margin-left: calc(50vw - 460px);
}

.carousel-row h2,
.carousel-row h3 {
  font-family: var(--font-alt);

}

.carousel-row h2 {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  font-size: 1.5rem;
}

.carousel-row h3 {
  color: var(--color-lightred);
  font-size: 0.6rem;
  font-weight: 600;
}

.audio-quotes {
  position: relative;
  text-align: left;
  padding: var(--panel-spacing);
  min-height: 200px;
  z-index: 1;
}


/* .audio-quotes::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/lp-logo-monogram-light-red.svg") center/75% no-repeat;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
} */

.audio-quotes p {
  display: flex;
  align-items: flex-start;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 0;

}

.audio-quotes button {
  margin: 0rem auto 0.5rem;
}

.audio-quotes span.carousel-quote-author {
  display: block;
  margin: 0.5rem 0;
}

.carousel-panel-review {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  text-align: left;
  padding: var(--panel-spacing);
  height: 100%;
}

/* Leaflet Map Attribution - Minimal Styling */
.leaflet-control-attribution {
  font-size: 9px !important;
  background: rgba(255, 255, 255, 0.6) !important;
  padding: 1px 4px !important;
  opacity: 0.7;
}

.leaflet-control-attribution a {
  color: #666 !important;
  text-decoration: none;
}

/* Extra minimal for aside map */
#map-aside .leaflet-control-attribution {
  font-size: 7px !important;
  padding: 0px 3px !important;
  opacity: 0.5;
}

@media (max-width: 960px) {
  .carousel-track {
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .carousel-track {
    margin-left: 10px;
  }
}

.carousel-panel {
  width: 620px;
  max-width: 620px;
  min-width: 620px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  height: 660px;
}

.carousel-panel-image {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.carousel-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-panel-content {
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}



.carousel-btn {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: white;
  color: #333;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn-prev {
  left: 20px;
}

.carousel-btn-next {
  right: 20px;
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-btn:disabled:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

[class^="carousel-review-author-"] {
  width: 100%;
  display: inline-block;

}

.carousel-panel .carousel-review-author-label {
  color: var(--color-lightred);
  font-family: var(--font-alt);
  font-size: 0.6em;
}

.carousel-panel .carousel-review-author-name {
  color: white;
  font-family: var(--font-alt);
  font-size: 0.6em;
}

div.background-darkred span.carousel-review-author-label {
  color: white;
}

div.background-white span.carousel-review-author-name {
  color: var(--color-darkred);
}

div.background-white span.carousel-review-author-label {
  color: var(--color-lightred);
}

p:has(span.carousel-review-author-label) {
  line-height: 1rem;
}

.carousel-row .icon-person {
  vertical-align: bottom;
  padding-bottom: 2px;
}


.carousel-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 0;
}

.carousel-audio-preview {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

/* Styling for the steps panes */
/* Four Pane Responsive Grid */

.four-pane {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: 100%;
  margin: 2rem 0;
}

.pane {
  position: relative;
  background-repeat: no-repeat;
  min-height: 275px;
  border-radius: 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s;
}

.pane:hover {
  transform: translateY(-1px) scale(1.001);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.13);
}

.pane>* {
  position: relative;
  z-index: 2;
}

.four-pane span {
  font-family: var(--font-alt);
  display: block;
  font-size: 0.9rem;
}

.four-pane p {
  color: white;
  margin-top: 1rem;
}



footer {
  background-color: var(--color-darkred);
  clear: both;
  position: relative;
  z-index: 100;
}

footer * {
  color: white;
}

footer.content-row {
  padding-top: 5rem;
  min-height: 50vh;

}

footer p,
footer ul {
  margin-bottom: 0.5rem;
  margin-left: 5px;
}

footer .content-split-right ul,
footer .content-split-right li {
  font-size: 1.1rem;
}

#footer-logo {
  max-width: 275px;
  width: 275px;
  display: block;
  margin: 0 auto 3rem;
}

#disclaimer {
  background-color: var(--color-darkgrey);
  color: white
}


/* Mobile responsiveness */
@media (max-width: 960px) {

  .content-split {
    align-items: stretch;
  }

  .content-split-left,
  .content-split-right {
    width: 100%;
    padding: 0;
  }

  #intro-row h2,
  #intro-row p {
    width: 90%;
  }

  #intro-row p {
    margin-top: 0.2rem;

  }

  .intro-split {
    flex-direction: column;
    gap: 20px;
  }

  .intro-left,
  .intro-right {
    width: 100%;
    text-align: center;
  }

  .intro-left h2 {
    word-spacing: unset;
    margin-bottom: 0;
  }

  .intro-right {
    padding-right: unset;
  }

  #intro-button {
    width: 100%;
  }

  #intro-row div:has(> video) {
    margin-bottom: 0rem;
  }

  #button-avontuur {
    margin: 0 auto;
  }

  #splash-avontuur {
    min-height: 26rem;
  }

  .carousel-panel {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    min-width: calc(100vw - 40px);
  }

  .carousel-panel-content {
    padding: var(--panel-spacing);
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .carousel-btn-prev {
    left: 10px;
  }

  .carousel-btn-next {
    right: 10px;
  }

  .four-pane {
    grid-template-columns: repeat(2, 1fr);
  }


}

@media (max-width: 760px) {

  /* Hide main navigation items on tablet and mobile */
  .nav-menu {
    display: none;
  }

  /* Show bottom navigation on tablet and mobile */
  nav.bottom-nav {
    display: flex !important;
  }

  /* Add bottom padding to body to account for bottom nav */
  body {
    padding-bottom: 50px;
  }

  /* Add bottom padding to footer to prevent bottom nav overlap */
  footer.content-row {
    padding-bottom: calc(50px + 2rem);
  }

  footer .content-split-left {
    flex: 1;
  }


}

@media (max-width: 640px) {
  footer .content-split-right {
    flex-direction: column;
  }

}

@media (max-width: 540px) {

  #hero-logo {
    max-width: 250px;
  }

  #header-row h1 {
    font-size: 2rem
  }

  #header-usp {
    scroll-margin-top: 12rem;

  }

  .four-pane {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .four-pane p {
    margin-top: 1rem;
  }

  .pane {
    min-height: 250px;
    font-size: 1rem;
    padding: 1rem;
  }

  #previews-row {
    scroll-margin-top: 2rem;
  }

  .carousel-panel {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    min-width: calc(100vw - 20px);
    flex-direction: column;
  }

  .carousel-panel-image {
    width: 100%;
    height: 40%;
    overflow: unset;
  }

  .carousel-panel-content {
    width: 100%;
    height: 60%;
    padding: 15px;
  }

  .carousel-panel-content p {
    line-height: 1.45rem;

  }

  .carousel-btn {
    top: 35.5%;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .custom-popup .leaflet-popup-content-wrapper {
    min-width: 80vw;
  }

}

@media (max-width: 480px) {

  #process-row button {
    width: 100%
  }

  /* Stack main footer split */
  footer .content-split {
    flex-direction: column;
  }

  footer .content-split>div:nth-of-type(1)>div:nth-child(1),
  footer .content-split>div:nth-of-type(1)>div:nth-child(2) {
    flex: 1;
  }

  footer div img {
    margin: 0;
    display: block;
    max-width: 100%;
    height: auto;
  }

  footer .content-split-right div {
    padding-right: 0;
    width: 100%;
  }

  #splash-verhalen-bewandelen {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/photography/wandelende-vrouw-top-view.png');
    background-position: 0% 5%;
    background-size: 350%;
  }

  footer .content-split-right {
    flex-direction: row;
  }


}