 /* Reset & full viewport */


 html, body {

    margin: 0;

    /* height: 100%; */

    font-family: Arial, sans-serif;
    color: var(--text-color);
    padding:0;
    background-color: var(--bg-color);

}

#header{
  height: var(--header-height);
  width:100%;
  top:0;
  display:flex;
  

}

  /* Page wrapper for vertical centering */

  .page-wrapper {

    display: flex;

    flex-direction: column;

    justify-content: center;  /* vertical center */

    align-items: center;      /* horizontal center */

    min-height: 80vh;

    padding: 0 40px;          /* left/right padding */

    box-sizing: border-box;

    /* background-color: var(--bg-content-color); */

    position: relative;

  

  }

  .page-wrapper ul a, .page-wrapper p a {
    color: var(--darkened-text-col);
    text-decoration: none;
}

  .page-wrapper > div{
   margin-bottom: 5vh; 
  }



  h1 {

    text-align: center;

    margin-bottom: 20px;

  }




  /* Banner */

  .banner {

    width: 90%;

    max-width: 1200px;

    /* margin-bottom: 30px; */

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 4px 10px rgba(0,0,0,0.2);

  }



  .banner img {

    width: 100%;

    height: auto;

    display: block;

  }



  /* Feature section */

  .feature-section {

    width: 90%;

    max-width: 1200px;

    /* margin-bottom: 30px; */

    /*border: 2px solid #fff;   /* sharp-edged box */

    /*border-radius: 5px;

    /*padding: 20px;

    /*background-color: #40E0DF; /*fdfdfd f4f4f4*/

  }



  .feature-boxes {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 20px;

  }



  .feature-box {

	display: flex;

    align-items: center;

    justify-content: space-around;

    background-color: var(--bg-color);

    text-align: center;

    padding: 10px 30px;

	  border: 2px solid var(--border-color);   /* sharp-edged box */

    border-radius: 5px;

    box-shadow: 0 2px 5px var(--box-hover-shadow);

    text-decoration: none;

    color: var(--text-color);

    font-size: 1.2rem;

    font-weight: bold;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

  }



  .feature-box:hover {

    transform: translateY(-5px);

    box-shadow: 0 6px 15px var(--box-hover-shadow);

    color: var(--text-color);

  }

  .feature-icon{
    filter: invert(1);

  }

  .light-theme .feature-icon{
    filter: invert(0);

  }

  .feature-icon img {

	width: 40px; /* adjust as needed */

	height: 40px;


  }

  

  /* Responsive: stack icon below text on small screens */

@media (max-width: 600px) {
/* 
  .feature-box {

    flex-direction: column;

    align-items: flex-start; 

  } */



  .feature-icon {

    margin-top: 10px;

  }

}

.feature-text{
  flex-grow: 2;
}

  

  /* Gallery */

  .gallery {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));

    gap: 15px;

    width: 90%;

    max-width: 1200px;

    /* margin-bottom: 10vh;
    margin-top:10vh; */

    margin:auto;

  }



  .gallery img {

    width: 100%;

    border-radius: 12px;

    box-shadow: 0 4px 8px rgba(0,0,0,0.15);

    cursor: pointer;

    transition: transform 0.3s ease;

    display: block;

    aspect-ratio: 1.5;

    object-fit: cover;

  }



  @media(min-width:768px){

    .gallery img:hover {

      transform: scale(1.05);

    }

  }


  /* Lightbox overlay */

  .lightbox {

    display: none;

    position: fixed;

    z-index: 1000;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(0,0,0,0.9);

    justify-content: center;

    align-items: center;

    flex-direction: column;



  }



  .lightbox img {

    max-width: 90%;

    max-height: 80%;

    border-radius: 12px;

    box-shadow: 0 0 20px rgba(0,0,0,0.5);

  }



  /* Navigation buttons */

  .nav-btn {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    font-size: 40px;

    color: var(--text-color);

    cursor: pointer;

    user-select: none;

    padding: 20px;

  }



  .prev { left: 10px; }

  .next { right: 10px; }



  /* Close button */

  .close {

    position: absolute;

    top: 20px;

    right: 30px;

    font-size: 40px;

    color: var(--text-color);

    cursor: pointer;

  }



  /* Disable lightbox on small screens */

  @media(max-width: 767px) {

    .lightbox { display: none !important; }

    .gallery img { cursor: default; }

  }


.video-product-page {
  margin: auto;

  position: relative;

  z-index: 1;

  /* width: 80%; */

  /* max-width: 900px; */

  aspect-ratio: 16 / 9;

  /*margin-top: 10vh;*/

  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);

  border-radius: 12px;

  overflow: hidden;

  animation: fadeIn 1s ease-out;

}



.video-product-page iframe {

  width: 100%;

  height: 100%;

}



/* Fade-in animation */

@keyframes fadeIn {

  from { opacity: 0; transform: scale(0.95); }

  to { opacity: 1; transform: scale(1); }

}



/* Hide background video on small screens to save data */

@media (max-width: 768px) {

  .video-background {

    display: none;

  }

}


h1, h2, h3, h4, h5, p, #specs {
  scroll-margin-top: var(--header-height);
}

.page-wrapper > div{
  width:90%;
  max-width: 1200px;
}

@media(max-width:768px){

    /* .page-wrapper{
      padding: 0px;
    } */

    .page-wrapper {
      padding:0;
    }
  }

.blured-background{
  position:fixed;
  top:0;
  left: 0;
  width: 100% !important;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.blured-background img{
     width: 100vw;
    height: 100vh;
    filter: blur(20px) brightness(0.6);
    transform: scale(1.1);
    pointer-events: none;
}

.transparent{
  background: transparent !important;
}

#faq p{
  padding-left: 2vh;
}

  .locations {
    display: grid;
    gap: 16px;
    max-width: 500px;
    font-family: Arial, sans-serif;
  }

  .location {
    border-radius: 12px;
    padding: 16px;
    padding-left:0px;
    padding-top:0px;
  }


  .location p {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
  }

  .location a {
    display: inline-block;
    text-decoration: none;
    padding: 8px 14px;
    color:var(--text-color);
    border: 2px solid var(--box-hover-shadow);
    border-radius: 8px;
    font-size: 14px;
    transition: background 0.2s ease;
  }

  .location a:hover {
    background: var(--box-hover-shadow);
  }

  .instagram-button {
  display: inline-block;
  padding: 12px 24px;
  padding-left:0px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
  font-family: Arial, sans-serif;
}

.instagram-button:hover {
  transform: scale(1.05);
}

.section-banner {
  text-align: center;
  margin: 30px 0;
}

.section-banner-img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

div#lightbox{
  inset: 0;
  width: 100%;
  max-width: none;
}


.sajamnaslov {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
    display: inline-block;
}
.sajam {
    gap: 20px;
    margin-bottom: 3rem;
    margin-top:3rem;
}

.sajam img {
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.contact ul {
  padding-inline-start: 20px;
}

.kontakt{
  padding: 1rem 0 2rem 0;
}