/* Background image and blur effect */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 10;
}

/* Foreground overlay container */
.under-construction {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px 40px;
    border-radius: 8px;
    text-align: center;
    z-index: 11; /* Above the blur overlay */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* display:none; */
}
/* Email styling */
.email {
    margin-top: 20px;
    font-size: 1.2em;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.email:hover {
    text-decoration: underline;
}


body{
    font-family: "Barlow", serif;
    font-weight: 400;
    font-style: normal;
}


.barlow-thin {
  font-family: "Barlow", serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-extralight {
  font-family: "Barlow", serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-light {
  font-family: "Barlow", serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-medium {
  font-family: "Barlow", serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semibold {
  font-family: "Barlow", serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-bold {
  font-family: "Barlow", serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-extrabold {
  font-family: "Barlow", serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-black {
  font-family: "Barlow", serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-thin-italic {
  font-family: "Barlow", serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-extralight-italic {
  font-family: "Barlow", serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-light-italic {
  font-family: "Barlow", serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-regular-italic {
  font-family: "Barlow", serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-medium-italic {
  font-family: "Barlow", serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semibold-italic {
  font-family: "Barlow", serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-bold-italic {
  font-family: "Barlow", serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-extrabold-italic {
  font-family: "Barlow", serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-black-italic {
  font-family: "Barlow", serif;
  font-weight: 900;
  font-style: italic;
}
a.nav-link{
  color: white;
}
a.nav-link:focus, a.nav-link:hover, a{
  color: #A07501;
}
.navbar-scrolled {
  background-color: #000 !important; /* Dark background for example */
  transition: background-color 0.3s ease;
}
.btn.btn-primary{
  background: transparent;
  border-radius: 0;
  /* width: 80px; */
  height: 40px;
  border: 2px solid #A07501;
  color: #A07501;
  font-weight: bold;
}
.btn.btn-primary:hover{
  background-color: #A07501;
  color: white;
}
input, button, textarea{
  border-radius: 0 !important;
}
.form-control:focus {
  box-shadow:0 0 0.25rem #A07501;
}
ul.mounting {
    list-style: square; /* Remove default bullets */
    padding: 0;
}

ul.mounting li {
    position: relative;
}

.navbar-toggler-icon {
  background-image: url(../img/svg/menu.svg);
}

.main-hero{
    background: url(../img/png_jpeg/main_hero_background.jpg) 100% 100%;
    height: 100vh !important;
    max-height: 100%;
    background-size: cover;
    background-position: left;
}

#cart-total{
  color: #ffffff;
  font-size: 16px;
}

.logo{
  position: absolute;
  left: 20%;
  max-width: 370px;
  width: 100%;
  transform: translateY(-50%);
  top: 50%;
}

.image, .model{
    width:100%;
    max-width:100%;
    height: auto;
}

.made-in-eu{
  background: url('../img/png_jpeg/made-in-hero.jpg');
  width: 100%;
  height: 690px;
  background-size: cover;
}

.eu-map{
  max-width: 500px;
  position: absolute;
  right: 10%;
  transform: translateY(50%);
  background: #aaa;
  padding: 10px;
}

.accordion-button::after {
  background-image: url("../img/svg/right-c.svg");
}
.accordion-button:not(.collapsed)::after{
  background-image: url("../img/svg/right-c.svg");
}
.accordion-button:not(.collapsed){
  background: transparent;
}
button:focus:not(:focus-visible) {
  box-shadow: none;
}


@media (max-width: 768px){
  .navbar-collapse.show{
    background-color: #000;
  }

  .main-hero{
    background: url(../img/png_jpeg/main-hero-mobile.png) 100% 100% no-repeat;
    background-position: center;
    background-size: cover;
  }
  .logo{
    position: absolute;
    left: 50%;
    max-width: 150px;
    width: 100%;
    transform: translateX(-50%) translateY(0);
    top: unset;
  }
}
.disable-under-construction{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  padding-top:20px;
  z-index:12;
  color: #777
}

/* Video Container */
.video-container {
  position: relative;
  width: 100%;
  height: auto;
  display: inline-block;
}

/* Custom Play Overlay */
.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  cursor: pointer;
  z-index: 2;
}

/* Play Button Style */
.play-button {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Hide Default Controls */
#customVideo {
  width: 100%;
  height: auto;
}

#customVideo::-webkit-media-controls {
  display: none !important;
}