@charset "utf-8";
/* CSS Document */
body {
	font: 92% 'Roboto', sans-serif;
	background-color: #0d0d0f;
	background-image: url("/img/layout/bg.png");
	background-repeat: repeat;
	margin: 0;
	padding: 0;
	color: #fff;
	max-width: 100%;
	height: 100%;
    overflow-x: hidden;
}

.hidden {
    display: none; /* Hides the section */
}

.divider {
	width: 100%;
	padding: 3em;
	margin: 4em 0;
	background-color: rgba(0, 0, 0, .2);
	border: solid rgba(0, 0, 0, .3);
	border-width: 1px 0;
	box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .2), inset 0 .125em .5em rgba(0, 0, 0, .3);
}

/* Navbar */
.navbar-brand img.logo {
	height: 40px;
}

.offcanvas {
	--bs-offcanvas-width: 300px; !important
}

.exlink {
    position: relative;
    background-color: #dee2e6;
    border-radius: 3px;
    width: 30px;
    height: 30px;
    margin: 0px 8px;
    padding: 0;
}

.exlink:hover {
    background-color: #41a7e4; !important
}
.nav-underline {
	text-transform: uppercase; !important
}

.nav-underline .nav-link {
 	color: rgba(255, 255, 255, 0.8);
	
}

.nav-underline .nav-link.active {
	color: #41a7e4; !important
    border-bottom: 2px solid #0d6efd; /* Bootstrap primary color */
}

/* Gallery container */
#gallery-container {
  display: flex;
  gap: 5px; /* Spacing between columns */
}

/* Individual columns */
.gallery-column {
  flex: 1; /* Columns are equally spaced */
  display: flex;
  flex-direction: column;
  gap: 5px; /* Spacing between thumbnails within the column */
}

/* Individual thumbnails */
.thumb {
  position: relative; /* Make this the positioning context for the .info-bar */
  display: block;
  width: 100%; /* Ensure thumbnails scale to fit */
  overflow: hidden; /* Prevent the info-bar from overflowing */
}

.thumb img {
  width: 100%; /* Fill container */
  height: auto; /* Maintain aspect ratio */
}


.thumb-luxe {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 1;
  cursor: pointer;
}

.thumb-luxe:hover {
  transform: scale(1.03);
  z-index: 10;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Dim overlay */
.thumb-luxe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
  pointer-events: none;
}

.thumb-luxe:hover::before {
  opacity: 1;
}

/* Glass info bubble */
.thumb-luxe .info-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  color: white;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.thumb-luxe:hover .info-bar {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/*Image-Slider*/
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1260px; /* Base max-width */
    height: 800px; /* Base height */
    overflow: hidden;
    margin: auto;
    user-select: none;
    -webkit-user-drag: none;
}

@media (max-width: 575.98px) {
    .slider-container {
        max-width: 630px;
        height: 250px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .slider-container {
        max-width: 756px;
        height: 300px;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .slider-container {
        max-width: 1008px;
        height: 400px;
    }
}

@media (min-width: 1200px) {
    .slider-container {
        max-width: 1260px;
        height: 500px;
    }
}

.slider-image {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
.slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slider-handle {
	position: absolute;
	top: 0;
	width: 2px; /* Black thin handle */
	height: 100%;
	background: #0d0d0f;
	z-index: 5;
}
.slider-button {
	position: absolute;
	transform: translate(-46%, 0%);
	width: 30px;
	height: 30px;
	background: #2d2d2d;
	border-radius: 50%;
	cursor: grab;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	color: lightgray;
}
.slider-button:active {
	cursor: grabbing;
}

/* Commission Marker */
.active-marker {
    position: absolute;
    left: -1.5em;
    width: 3px;
    height: 50px;
    background-color: #ffffff;
    display: hidden;
}

.marker-container {
    position: relative;
}

/* Only show marker on large screens */
@media (max-width: 991px) { 
    .active-marker {
        display: none;
    }
}

/*General Settings*/
.brand-zlide {
	font: 400% 'Impact', sans-serif;
	margin-bottom: 0px;
}
.title-zlide {
	font: 80% 'Roboto', sans-serif;
	color: rgba(255, 255, 255, 0.4);
}

.bg-zlide{
	background-color: #41a7e4;	
}

.text-zlide{
	color: #41a7e4;	!important
}

.table-zlide {
	  --bs-table-bg: #0d0d0f; !important
}

.bg-hidden {
	background-color: #0d0d0f;
	background-image: url("/img/layout/bg.png");
}

.w-40 {
  	width: 40% !important;
}

.w-30 {
  	width: 30% !important;
}

.textblock {
	max-width: 500px
}

/* Footer */
footer {
  font-size: 0.9em;
  color: #333;
}