/* Standard Style Definitions: Defined with extra large screens in mind */
/* refer to extraLarge.css for portrait / landscape specific content on extra large screens */

/* Basic element attributes */
* {
    box-sizing: border-box;
}

html { 
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw !important;
    overscroll-behavior: none;
    touch-action: manipulation;
}

mark {
    background-color: #A3A3CD;
}

body {
    font-family: 'BarlowRegular';
    margin: 0;
    background-color: #010100;
    overflow: auto;
    font-size: 15px;
    overflow-x: clip !important;
    overflow-y: hidden;
    z-index: 1;
    overscroll-behavior: none;
    touch-action: manipulation;
}

h1 {
    font-family: 'BarlowBold';
    font-size: 2.5vw;
    text-align: center;
}

h2 {
    font-family: 'BarlowBold';
    font-size: 28px;
}

h3 {
    font-family: 'BarlowBold';
    font-size: 16px;
}

a {
    color: rgb(236, 236, 236);
}

a:hover {
    color: #d5dbe0
}

@font-face {
    font-family: 'BarlowBold';
    src: url('/static/fonts/Barlow-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'BarlowRegular';
    src: url('/static/fonts/Barlow-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'BarlowLight';
    src: url('/static/fonts/Barlow-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'MultiBlack';
  src: url('/static/fonts/Multi-Black.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'HandMeDownS';
  src: url('/static/fonts/handmeds.ttf') format('truetype');
}

@font-face {
  font-family: 'Horizon';
  src: url('/static/fonts/Horizon.otf') format('truetype');
}

/* Bot Styles */
.visually-hidden {
  position: absolute !important;
  width: 1px; 
  height: 1px; 
  margin: -1px; 
  padding: 0; 
  border: 0; 
  clip: rect(0, 0, 0, 0); 
  overflow: hidden;
  white-space: nowrap;
}

.bot-link {
    position: fixed;
    top: 22px;
    right: 12px;
    opacity: 0.9;
    background: #f2d732; 
    color: #171c1f;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    z-index: 1000;

    /* Flex for vertical centering */
    display: flex;
    align-items: center;   /* vertical centering */
    justify-content: center; /* optional: center horizontally */
    gap: 8px;              /* space between icon and text */
}

.bot-link:hover {
    background: #e6c800;
    color: #171c1f;
}

.bot-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block; /* prevents weird baseline shifts */
}

/* Background & Foreground */

.foreground {
    z-index: 20; 
    position:absolute;
    width: 100vw;
    max-width: 100vw;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow-x: unset;
}

.foreground-image {
    top: -2.5vw;
    position: absolute;
    width: 100%;
    pointer-events: none;
    overflow-x: unset;
}

.background {
    position:absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 120vh;
    z-index: -500;
    pointer-events: none;
    background-color: black;
    overflow-x: clip !important;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    overflow-x: clip !important;
}

.foreground,
.background,
.foreground-image,
.background-image {
    max-width: 100vw;
}

/* Portfolio Heading */

.sky-limit-text-horizon,
.sky-limit-subheading {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sky-limit-text {
    position: absolute;
    pointer-events: none;
    overflow: hidden;
    z-index: -400;
    height: 178px;
    top: 45vh;
    left: 50%;                 
    transform: translateX(-50%);
    background-attachment: fixed;
    animation: neonPulse 2.5s steps(1, end) infinite;
}

.sky-limit-text-horizon {
    font-family: 'Horizon', sans-serif;
    font-size: 2.6vw;
    color: #f46060;
    display: block;
    text-align: center;
}

.sky-limit-subheading {
    font-family: 'Horizon', sans-serif;
    font-size: 0.8vw;
    color: #f46060;
    display: block;
    text-align: center;
    margin-top: 0vw;
}

@keyframes neonPulse {
    0%, 100% {
        filter: 
            brightness(1.1)
            contrast(1.2)
            drop-shadow(0px 0px 8px #ff0000)
            drop-shadow(0px 0px 14px #ff0000);
    }

    50% {
        filter: 
            brightness(1.0)
            contrast(1.1)
            drop-shadow(0px 0px 4px #ff000080)
            drop-shadow(0px 0px 8px #ff000080);
    }
}

/* Parallax Clouds */

.clouds {
  position: relative;
  z-index: -3;
  opacity: 75%;
  pointer-events: none;
}

.clouds img {
  position: absolute;
  overflow-x: clip;
  overflow-y: hidden;
  max-height: 332.5px;
  height: 332.5px;

  transform: translate3d(
    calc(var(--baseX, 0) + var(--dx, 0)),
    calc(var(--baseY, 0) + var(--dy, 0)),
    0
  );

  transition: opacity 0.5s ease-out;

  will-change: transform;
}

#cloud1 { --baseX: -10vw;        --baseY: 47.5px; }
#cloud2 { --baseX: 10vw;        --baseY: 0px; }
#cloud3 { --baseX: 56.55vw;  --baseY: 351px; }
#cloud4 { --baseX: -11vw;     --baseY: 359px; }
#cloud5 { --baseX: 60vw;     --baseY: 50px; }
#cloud6 { --baseX: 31.93vw;  --baseY: 446px; }
#cloud8 { --baseX: 39.24vw;  --baseY: 0px; height: 250.15px; }

/* Clickable planes & helicopters for project categories */

.main-background {
    position: relative;
    top: -95px;
    width: 100%;
    height: 902.5px;
    align-items: center;
    justify-content: center;
    margin-bottom: -650px;
}

.marquee-helicopter1 { 
  margin-top: 63vh;
  overflow: hidden;
  position: absolute;
  animation: MarqueeHelicopterLeft linear 40s infinite;
}

.marquee-helicopter2 { 
  margin-top: 80vh;
  overflow: hidden;
  position: absolute;
  animation: MarqueeHelicopterLeft linear 45s infinite;
}

.marquee-plane1 { 
  margin-top: 42vh;
  overflow: hidden;
  position: absolute;
  animation: MarqueePlaneLeft linear 27s infinite;
}

.marquee-plane2 { 
  margin-top: 19vh;
  overflow: hidden;
  position: absolute;
  animation: MarqueePlaneLeft linear 25s infinite;
}

.marquee-plane3 { 
  margin-top: 8vh;
  overflow: hidden;
  position: absolute;
  animation: MarqueePlaneLeft linear 23s infinite;
}

.marquee-plane4 { 
  margin-top: 15vh;
  overflow: hidden;
  position: absolute;
  animation: MarqueePlaneLeft linear 20s infinite;
}

.marquee-plane5 { 
  margin-top: 38vh;
  overflow: hidden;
  position: absolute;
  animation: MarqueePlaneLeft linear 21s infinite;
}

.category-button {
    top: 0;
    border: transparent;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background-color: transparent;
    color: #000;
    transition: transform 0.2s, color 0.2s;
}

.category-button:hover .category-text {
    text-align: center;
    background-color: #70809081;
    color: #e8eaeb;
}

.category-text {
    text-align: center;
    width: 110px;
    padding: 0px;
    margin-top: 10px;
    line-height: 1.5;
    color: #70809081;
    background-color: transparent;
    transition: background-color 0.2s;
}

.helicopter-text-1 {
    height: 18vh;
    margin-top: -5vh;
}

.helicopter-text-2 {
    height: 18vh;
    margin-top: -5vh;
}

.plane-text-1 {
    height: 18vh;
    margin-top: -8vh;
}

.plane-text-2 {
    height: 18vh;
    margin-top: -8vh;
}

.plane-text-3 {
    height: 18vh;
    margin-top: -8vh;
}

.plane-text-4 {
    height: 18vh;
    margin-top: -8vh;
}

.plane-text-5 {
    height: 18vh;
    margin-top: -8vh;
}

.category-icon {
    width: 150px;
    transition: transform 0.2s;
    padding-top: 12px;
}

.category-button:hover .category-icon {
    transform: translateY(-12px);
}

@keyframes MarqueeHelicopterLeft
{
  0% { right: -2% }
  100% { right: 100% }
}

@keyframes MarqueePlaneLeft
{
  0% { right: -30% }
  100% { right: 100% }
}

/* Sidebar / Help Desk */

.sidebar {
    height: 90vh;
    min-width: 30%;
    position: fixed;
    top: 5%;
    right: 0;
    background-color: transparent;
    overflow-x: hidden;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    color: white;
    z-index: 990;
}

.sidebar-bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 90vh;
    width: auto;
    z-index: -1;
    pointer-events: none;
}

.sidebar-inner {
    position: relative;
    height: 90vh;
    width: 45vh;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);  
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-open-button {
    cursor: pointer;
    background: none;
    border: none;
    position: fixed;
    display: flex;
    top: 25%;
    z-index: 900;
    height: 91px;
    right: -1%;
}

.sidebar-close-button {
    bottom: 8vh;
    align-self: center;
    position: absolute;
    cursor: pointer;
    text-decoration: none;
    height: 10vh;
    z-index: 990;
    background: none;
    left: 50%;
    transform: translateX(-50%);
}

.sidebar h2, .sidebar p {
    padding-left: 6vh;
    color: black;
    margin: 0.5rem 0;
    text-align: center;
    z-index: 1;
}

.sidebar h2 {
    padding-top: 8.2vh;
    font-family: 'BarlowBold';
    font-size: 3.7vh;
}

.sidebar p {
    font-size: 1.9vh;
}

.sidebar-row {
    display: flex;
    align-items: center;
    padding: 1.3vh 7vh;
    gap: 2vh;
}

.sidebar-row img {
    max-width: 8vh;
    height: 6vh;
    object-fit: contain;
}

#sidebar-row-3-img {
    width: 9vh;
}

#sidebar-row-3-text {
    flex: 1;
    max-width: calc(100% - 80px);
}

.sidebar-row p {
    margin: 0;
    color: black;
    font-family: 'BarlowRegular';
    text-align: left;
}

/* Project navigation using the navbar / projects tab */

.navbar {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 85px;
    height: 60px;
    z-index: 1000;
}

.navbar-open-button {
    position: fixed;
    width: 165px;
    margin-top: 22px;
    margin-left: 12px;
    opacity: 90%;
    cursor: pointer;
    border: transparent;
    background: none;
    display: flex;
}

.navbar-close-button {
    position: fixed;
    width: 130px;
    background:none;
    border: transparent;
    cursor: pointer;
    top: -1vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1300;
    display: none;
}

.dropdown-content {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
    background-color: rgba(0, 0, 0, 0.322);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1300;
    text-align: center;
    justify-content: flex-start;
    flex-direction: column;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown-item {
    position: relative;
    width: 100%;
    max-width: 80%;
    cursor: pointer;
    align-self: center;
    }

.dropdown-item img {
    height: auto;
    display: block;
    opacity: 1;
    height: 56.5px;
    justify-self: center;
    box-shadow: #000 0px 0px 0px;
}

.dropdown-text {
    text-align: left;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    font-family: 'BarlowBold';
    font-size: 22px;
    margin-left: -140px;
    color: #f2d732;
    pointer-events: none;
}

.dropdown-item:hover img {
    filter: brightness(1.5);
}

.dropdown-item:hover .dropdown-text {
    color: rgb(255, 255, 142);
}

/* Overview */

.overview {
    margin-top: 80vw;
    margin-bottom: -60vw;
    z-index: 100;
    height: 58vw;
    width: 70vw;
    padding: 10vw;
    box-sizing: border-box;
    display: none;
    position: relative;
    justify-self: center;
    align-items: center;
    color: #ffffff;
    flex-direction: column;
    object-fit: contain;
    text-align: center;
    justify-content: space-around;
}

.airport-background {
    position: absolute;
    align-self: center;
    width: 80%;
    height: auto;
    bottom: -600px;
    left: 0%;
    opacity: 0.8;
    transform: translateY(-35%) translateX(-25%);
    z-index: -5;
}

.airport-background-image {
    z-index: -5;
}

/* Departures Sign */

.departures-signs {
    position: absolute;
    top: 90px;
    right: -120px;
    height: 545px;
    z-index: 150;
}

.departures-signs-image {
    height: 100%;
    width: auto;
    z-index: 150;
}

.departures-signs .tables {
    position: absolute;
    padding-left: 1%;
    padding-right: 1%;
    top: 18px;
    left: 14.4%;
    width: 73.8%;
    height: 100%;
    z-index: 160;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: top;
    text-align: left;
    font-size: 9px;
    line-height: 1.77;
}

.departures-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  padding-left: 1%;
  padding-right: 1%;
  bottom: 62px;
  left: -5%;
  width: 108%;
  margin-top: 1rem;
  padding: 0 1rem;
  font-size: 9px;
  color: rgb(205, 206, 207);
}

.footer-left {
  text-align: left;
  flex: 1;
}
.footer-center {
  text-align: center;
  flex: 1;
}
.footer-right {
  text-align: right;
  flex: 1;
}

.departures-signs .table {
    color: rgb(205, 206, 207);
    margin: 0;
    padding: 0;
    border-collapse: collapse;
}

.departures-signs .table a {
  text-decoration: none;
  color: rgb(205, 206, 207);
}

.departures-signs .table th,
.departures-signs .table td {
  padding: 0;
  vertical-align: middle;
  text-align: left;
}

.departures-signs .table .table-title {
  font-family: 'MultiBlack', sans-serif;
  font-size: 18px;                 /* independent from table body size */
  letter-spacing: 0.5px;
  text-align: center;              /* centered across all columns */
}

.departures-signs .table tbody {
  font-size: 9px;                  /* matches your .tables font-size */
}

.table-column-titles {
    font-size: 8px !important;
    font-weight: bold !important;
    margin-bottom: -1% !important;
}

.departures-signs .table {
    display: none;
}
.departures-signs .table.active {
    display: table;
}

.clickable-row {
  cursor: pointer;
}
.clickable-row:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Airport Table & Backpack */

.airport-table {
    position: absolute;
    left: -15vw;
    top: 650px;
    height: 350px;
    z-index: 200;
}

.airport-table-image {
    height: 100%;
    width: auto;
    z-index: 200;
}

.backpack-trigger-wrap {
  position: absolute;
  bottom: 39%;
  left: 53.7%;
  transform: translate(-50%, 0);
  width: 40px;
  height: 32px;
  z-index: 310;
}

.backpack-trigger {
  position: absolute;
  bottom: 39%;
  left: 53.7%;
  transform: translate(-50%, 0);
  width: 40px;
  height: 32px;
  z-index: 310;
  cursor: pointer;
  outline: none;
  transition: background 0.2s ease, border-color 0.2s ease;
  background: transparent;
  border-color: transparent;
}

.trigger-coach {
  position: absolute;
  right: 100%;
  margin-right: -10px;
  margin-top:10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.9));
}

.coach-arrow {
  width: 200px;
  height: auto;
  opacity: 0.7;
}

.overview-arrow-text {
  text-anchor: middle;
  color: rgba(255,255,255,0.7);
  font-size: 40px;
  font-family: 'HandMeDownS', sans-serif;
}

.backpack-trigger:hover ~ .trigger-coach,
.backpack-trigger:focus-visible ~ .trigger-coach {
  opacity: 0.6;
}

.backpack-trigger:hover,
.backpack-trigger:focus-visible {
  background: rgba(255, 255, 255, 0);
  border-color: rgba(255, 255, 255, 0);
}

.backpack-front {
    position: absolute;
    bottom: 43%;
    left: 50.5%;
    transform: translateX(-50%);
    height: 110px;
    z-index: 300;
}

.backpack-items {
  position: absolute;
  bottom: 70%;
  left: 48%;
  transform: translateX(-50%);
  width: max-content;
  height: max-content;
  z-index: 250;
  pointer-events: none;
}

:root {
  --bp-move-delay: 0ms;
  --bp-size-delay: 0ms;
}

.backpack-item-wrap {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;

  /* default properties */
  --item-translate-x: 0;
  --item-translate-y: 0;
  --item-rotate: 0deg;
  --item-active-translate-x: -120px;
  --item-active-translate-y: -400px;

  transform: translateX(var(--item-translate-x))
             translateY(var(--item-translate-y))
             rotate(var(--item-rotate));
  transform-origin: bottom center;
  transition: transform 400ms ease var(--bp-move-delay);
  will-change: transform;
  pointer-events: auto;
  z-index: 1;
}

.backpack-item-wrap.is-active {
  --item-translate-x: var(--item-active-translate-x);
  --item-translate-y: var(--item-active-translate-y);
  z-index: 5;
}

.backpack-item-wrap.is-active .backpack-item {
  width: var(--item-active-width, 300px);
}

.backpack-item {
  width: var(--item-inactive-width, 11px);
  height: auto;
  transition: width 400ms ease var(--bp-size-delay), filter 180ms ease;
  will-change: width, filter;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.backpack-item-wrap:hover .backpack-item {
  filter: 
          brightness(0.7)
          drop-shadow(0 0 1px rgba(255, 255, 255, 0.40))
          drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.40));
}

.backpack-item-wrap::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  white-space: pre-line;
  margin-bottom:0.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  color: rgba(255, 255, 255, 1);
  font-family: 'BarlowBold', sans-serif;
  font-size: 2vh;
  text-align: center;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.72), 0 0 10px rgba(255, 255, 255, 0.72);
  transition: opacity 0.18s ease;
  transform: scale(calc(1 / var(--item-scale)));
  transform-origin: center;
}

#dl.backpack-item-wrap::after {
  padding: 10px 30px;
}

#bt.backpack-item-wrap::after {
  padding: 10px 80px;
}

#tb.backpack-item-wrap::after {
  padding: 10px 50px;
}

#note.backpack-item-wrap::after {
  padding: 10px 60px;
}

#passport.backpack-item-wrap::after {
  padding: 10px 40px;
}

#zb.backpack-item-wrap::after {
  padding: 10px 40px;
}

.backpack-item-wrap:hover::after {
  opacity: 1;
}

/* Slideshows */

.slideshow-ticket {
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    top: -50vw;
    height: 60vw;
    z-index: 200;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    transition:
        transform 1s ease-in-out,
        height 1s ease-in-out,
        top 1s ease-in-out;
}

.slideshow-ticket img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 1s ease-in-out;
}

.slideshow-ticket.animate {
    height: 15.75vw;
    top: 50%;
}

#slideshow11 .slideshow-ticket.animate {
    transform: translateX(183.5%) translateY(-15%) rotate(90deg);
}

#slideshow10 .slideshow-ticket.animate {
    transform: translateX(187.5%) translateY(-15%) rotate(90deg);
}

#slideshow9 .slideshow-ticket.animate {
    transform: translateX(180%) translateY(-20%) rotate(90deg);
}

#slideshow8 .slideshow-ticket.animate {
    transform: translateX(175%) translateY(-30%) rotate(90deg);
}

#slideshow0 .slideshow-ticket.animate {
    transform: translateX(167.5%) translateY(-30%) rotate(90deg);
}

#slideshow1 .slideshow-ticket.animate {
    transform: translateX(182.5%) translateY(-15%) rotate(90deg);
}

#slideshow2 .slideshow-ticket.animate {
    transform: translateX(180%) translateY(-30%) rotate(90deg);
}

#slideshow3 .slideshow-ticket.animate {
    transform: translateX(177.5%) translateY(-20%) rotate(90deg);
}

#slideshow4 .slideshow-ticket.animate {
    transform: translateX(180%) translateY(-30%) rotate(90deg);
}

#slideshow5 .slideshow-ticket.animate {
    transform: translateX(175%) translateY(-20%) rotate(90deg);
}

#slideshow6 .slideshow-ticket.animate {
    transform: translateX(170%) translateY(-30%) rotate(90deg);
}

#slideshow7 .slideshow-ticket.animate {
    transform: translateX(175%) translateY(-20%) rotate(90deg);
}

.slideshow-background,
.overview {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: flex;
}

.slideshow-background {
    left: 50%;
    transform: translateX(-50%);
    margin-top: 80vw;
    height: 52vw;
    padding-top: 65vw;
    padding-bottom: 70vw;
    margin-bottom: -100vw;
    background-size: 65%;
    background-position-y: 67.5vw;
    box-sizing: border-box;
    display: none;
    position: relative;
    z-index: 100;
    overflow: visible !important;
}

.slideshow-background img.bg-rotatable {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    pointer-events: none;
    width: 100%;
    height: auto;
    display: none; 
}

.slideshow-container {
    position: relative;
    place-self: center;
    min-height: 40vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    overflow: visible !important;
}

.slides {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-items: center;
    width: 87%;
    margin-top: 5vw;
    margin-bottom: 2.2vw;
    z-index: 100;
}

.slideshow-image {
    display: block; 
    z-index: 100;
    border-radius: 15px;
    cursor: pointer;
}

.slideshow-video {
    display: block; 
    z-index: 100;
    background: #000;
    border-radius: 8px;
}

.slideshow-image,
.slideshow-video {
    width: 43%;
    object-fit: contain;
}

.slideshow-text,
.overview-slideshow-text {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: auto;
    scrollbar-color: #999 #333;
    scrollbar-gutter: stable;
}

.slideshow-text::-webkit-scrollbar,
.overview-slideshow-text::-webkit-scrollbar {
    width: 8px;
}

.slideshow-text::-webkit-scrollbar-thumb,
.overview-slideshow-text::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 5px;
}

.slideshow-text::-webkit-scrollbar-track,
.overview-slideshow-text::-webkit-scrollbar-track {
    background-color: #222;
}

.slideshow-text {
    width: 43%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 100;
    border-radius: 15px;
    padding: 1vw 1vw;
}

.slideshow-vertical-image-container {
  display: contents;
}

#slideshow11 .slideshow-container {
    width: 67%; 
    color: #fffdf5;
} 

#slideshow11 .slideshow-video, 
#slideshow11 .slideshow-image, 
#slideshow11 .slideshow-text {
    max-height: 35vw;
    margin-top: 7vw;
} 

#slideshow10 .slideshow-container {
    width: 67%; 
    color: #fffdf5;
} 

#slideshow10 .slideshow-video, 
#slideshow10 .slideshow-image, 
#slideshow10 .slideshow-text {
    max-height: 35vw;
    margin-top: 7vw;
} 

#slideshow9 .slideshow-container {
    width: 67%; 
    color: #fffdf5;
} 

#slideshow9 .slideshow-video, 
#slideshow9 .slideshow-image, 
#slideshow9 .slideshow-text {
    max-height: 35vw;
    margin-top: 7vw;
} 

#slideshow8 .slideshow-container {
    width: 64%; 
    color: #d788ac;
} 

#slideshow8 .slideshow-video, 
#slideshow8 .slideshow-image, 
#slideshow8 .slideshow-text {
    max-height: 38vw;
    margin-top: 5vw;
}

#slideshow0 .slideshow-container {
    width: 60%;
    color: #f3fef5;
} 

#slideshow0 .slideshow-video, 
#slideshow0 .slideshow-image, 
#slideshow0 .slideshow-text {
    max-height: 30vw;
    margin-top: 5vw;
}

#slideshow1 .slideshow-container {
    width: 66%;
    color: #120b00;
} 

#slideshow1 .slides {
    margin-top: 9vw;
}

#slideshow1 .slideshow-video, 
#slideshow1 .slideshow-image, 
#slideshow1 .slideshow-text {
    max-height: 32vw;
    margin-top: 5vw;
}

#slideshow2 .slideshow-container {
    width: 65%;
    margin-right: 1vw;
    color: #ffffff;
} 

#slideshow2 .slideshow-video, 
#slideshow2 .slideshow-image, 
#slideshow2 .slideshow-text {
    max-height: 33vw;
    margin-top: 7vw;
}

#slideshow3 .slideshow-container {
    width: 63%;
    margin-right: 1vw;
    color: #c37539;
}

#slideshow3 .slideshow-text {
    width: 37%;
    margin-right: 1.75vw;
}

#slideshow3 .slideshow-video, 
#slideshow3 .slideshow-image, 
#slideshow3 .slideshow-text {
    max-height: 36vw;
    margin-top: 6vw;
}

#slideshow4 .slideshow-container {
    width: 65%;
    margin-right: 1vw;
    color: #fffaec;
}

#slideshow4 .slideshow-background {
    margin-left: 0;
}

#slideshow4 .slideshow-video, 
#slideshow4 .slideshow-image, 
#slideshow4 .slideshow-text {
    max-height: 34vw;
    margin-top: 6.5vw;
}

#slideshow5 .slideshow-container {
    width: 64%;
    color: #ac0028;
    margin-right: 1vw;
}

#slideshow5 .slides {
    margin-top: 10vw;
}

#slideshow5 .slideshow-video, 
#slideshow5 .slideshow-image, 
#slideshow5 .slideshow-text {
    max-height: 40vw;
    margin-top: 4vw;
}

#slideshow6 .slideshow-container {
    width: 62%;
    color: #ddcab8;
}

#slideshow6 .slideshow-text {
    width: 38%;
    margin-right: 1.75vw;
}

#slideshow6 .slideshow-video, 
#slideshow6 .slideshow-image, 
#slideshow6 .slideshow-text {
    max-height: 36vw;
    margin-top: 6vw;
}

#slideshow7 .slideshow-container {
    width: 64%;
    color: #acb388;
    margin-right: 1vw;
}

#slideshow7 .slides {
    margin-top: 10vw;
}

#slideshow7 .slideshow-video, 
#slideshow7 .slideshow-image, 
#slideshow7 .slideshow-text {
    max-height: 40vw;
    margin-top: 4vw;
}

/* Slide navigation */

.button-container {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 58vw;
}

.prev, .next {
    background: none;
    border: none;
    padding: 0;
    margin: 5vw;
    color: inherit;
    font-weight: bold;
    cursor: pointer;
    height: 5.2vw;
}

.nav-icon {
    height: 100%;
    width: 100%;
    object-fit: contain;
    pointer-events: none;
}

.slide-navigation-text {
    position: relative;
    margin-left: 6vw;
    margin-right: 8vw;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9vw;
    font-family: 'BarlowLight';
    min-height: 10vw;
    z-index: 1;
    color: black;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
}

.slide-navigation-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 1.2vw;
    width: 14vw;
    height: 11vw;
    background-image: url('/static/slidenav/baggagetag.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    pointer-events: none;
}

#slideshow11 .slide-navigation-text::before {
    background-image: url('/static/slidenav/baggagetag11.png');
}

#slideshow10 .slide-navigation-text::before {
    background-image: url('/static/slidenav/baggagetag10.png');
}

#slideshow9 .slide-navigation-text::before {
    background-image: url('/static/slidenav/baggagetag9.png');
}

#slideshow8 .slide-navigation-text::before {
    background-image: url('/static/slidenav/baggagetag8.png');
}

#slideshow0 .slide-navigation-text::before {
    background-image: url('/static/slidenav/baggagetag0.png');
}

#slideshow1 .slide-navigation-text::before {
    background-image: url('/static/slidenav/baggagetag1.png');
}

#slideshow2 .slide-navigation-text::before {
    background-image: url('/static/slidenav/baggagetag2.png');
}

#slideshow3 .slide-navigation-text::before {
    background-image: url('/static/slidenav/baggagetag3.png');
}

#slideshow4 .slide-navigation-text::before {
    background-image: url('/static/slidenav/baggagetag4.png');
}

#slideshow5 .slide-navigation-text::before {
    background-image: url('/static/slidenav/baggagetag5.png');
}

#slideshow6 .slide-navigation-text::before {
    background-image: url('/static/slidenav/baggagetag6.png');
}

#slideshow7 .slide-navigation-text::before {
    background-image: url('/static/slidenav/baggagetag7.png');
}

/* Modal (expands slideshow images) */

.expanded-image-modal-image {
    transition: transform 0.3s ease, transform-origin 0.3s ease;
    cursor: zoom-in;
}

.expanded-image-modal-image.expanded-image-modal-zoomed-in {
    cursor: zoom-out;
}

.expanded-image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    overflow: auto;
}

.expanded-image-modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    max-width: 100%;
    max-height: 100%;
    background-color: rgba(0, 0, 0, 0.718);
}

.image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expanded-image-modal-image {
    max-width: 90%;
    max-height: 80vh;
    transition: transform 0.3s ease;
    cursor: zoom-in;
    box-shadow: -8px -8px 12px rgba(0, 0, 0, 0.1), 8px 8px 12px rgba(0, 0, 0, 0.1);
}

.expanded-image-modal-zoomed-in {
    transform: scale(2);
    cursor: zoom-out;
}

.close {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 1200;
    cursor: pointer;
}

.close-icon {
    width: 60px;
    height: auto;
    display: block;
    filter: brightness(.9);
    transition: filter 0.2s ease;
}

.close-icon:hover {
    filter: brightness(1.2);
}

/* End Contacts & Copyright */

.end-background {
    margin-top: 1400px;
    width: 100%;
    height: 800px;
    box-sizing: border-box;
    position: relative;
    background-image: url('/static/closing/closingbaggage.svg');
    background-size: 600px;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex;
    padding-bottom: 50px;
    z-index: 12;
}

.end-horizontal {
    display: flex;
    flex-direction:row;
}

.end-clickables {
    margin: 26px 0.5vw;
    height: 19px;
}

.end-copyright {
    margin-top: 19px;
    font-size: 8px;
    font-family: 'BarlowLight';
    display: block;
    text-align: center;
    color: #fffbf9;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background-color: transparent;
    color: #000;
    transition: transform 0.2s, color 0.2s;
}

.social-link:hover .social-text {
    text-align: center;
    background-color: #70809081;
    color: #e8eaeb;
}

.social-text {
    text-align: center;
    width: 110px;
    padding: 0px;
    margin-top: 10px;
    line-height: 1.5;
    color: #70809081;
    background-color: transparent;
    transition: background-color 0.2s;
}

.social-icon {
    width: 80px;
    transition: transform 0.2s;
    padding-top: 12px;
}

.social-link:hover .social-icon {
    transform: translateY(-12px);
}

.email-form {
    margin-top: 170px;
    margin-left: 1vw;
    background-color: transparent;
    padding: 15px;
    color: #e4d3ca81;
    width: 380px;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
}

.email-form form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-heading {
    line-height: 1;
    font-size: 25px;
}
.email-form label {
    font-size: 13px;
    color: #e4d3ca81;
}

.email-form input, .email-form textarea {
    padding: 8px;
    border: 1px solid #ccc;
    font-size: 13px;
    width: 100%;
    background-color: #ffffff;
    color: #72513d;
}

.email-form button {
    background-color: #6d5955;
    color: white;
    padding: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.email-form button:hover {
    background-color: #333;
}

.email-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 600;
}

.email-modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    text-align: center;
    z-index: 600;
}

.email-modal-close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: -10px;
    margin-top: -22.5px;
    z-index: 600;
}

.email-modal-close-button:hover,
.email-modal-close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/* CSS specific to iOS devices */ 
@supports (-webkit-touch-callout: none) {
    .dropdown-item {
        left: 10%;
        transform: translate(-10%);
    }

    .overview {
        left: 50%;
        transform: translateX(-50%);
    }

    .slideshow-container {
        left: 50%;
        transform: translate( -50%);
    }

    .end-background {
        margin-left: -1%;
    }

    .dropdown-text {
        margin-left: -31vw;
    }
}

/* CSS specific to macOS devices */ 
body.is-macos .dropdown-item {
    margin-left: auto;
    margin-right: auto;
    display: block; /* or inline-block */
    width: fit-content;
}

body.is-macos .overview {
    left: 50%;
    transform: translateX(-50%);
}

body.is-macos .slideshow-container {
    left: 0%;
    transform: translate(-0%);
}

body.is-macos .dropdown-text {
    margin-left: 110px;
    margin-right: auto;
    display: block;
    width: fit-content;
}