@import url("https://fonts.googleapis.com/css?family=Raleway");

:root {
  --glow-color: #FFB658;
}

*{
  margin: 0px;
  text-decoration: none;
  list-style: none;
}
body{
  font-family: Montserrat;
  height: min-content;
  width: 100%;
}
/* styles.css */

nav {
  background-color: #1B1616;
  height: 70px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 2px 5px 0 #fccd67c9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

label.Logo {
  color: #fcf7f3;
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
}

.menu-icon, #close-menu-icon {
  display: none;
  font-size: 30px;
  color: #fcf7f3;
  cursor: pointer;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin: 0 5px;
}

nav ul li a {
  color: #fcf7f3;
  font-size: 17px;
  padding: 20px;
  text-decoration: none;
}

nav a.active, nav a:hover {
  background: rgb(54, 52, 51);
  transition: 1s;
  border-radius: 7px;
  padding: 10px;
}

.mobile-menu {
  display: none;
}


.fb{
  height: 30px;
  width: auto;
  align-self: center;
  justify-self: center;
  margin-top: 7px;
}

.ig{
  margin-top: 7px;
  height: 30px;
  width: auto;
  align-self: center;
  justify-self: center;
}

.footer-col .adresa{
  font-size: 20px;
  color: #e6a900;
}
/* Responsive styles */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
    color: #f2f2f2;
  }

  #close-menu-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
  }
  nav ul {
    display: none;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1B1616;
    z-index: 2;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 20px;
    width: 100%;
  }

  .mobile-menu ul li {
    width: 100%;
  }

  .mobile-menu ul li a {
    display: block;
    padding: 20px;
    font-size: 20px;
    color: #fcf7f3;
    text-decoration: none;
  }

  .mobile-menu.active {
    display: flex;
  }
}


#flash{
  background-color: #080707;
  height: 50px;
  width: 100%;
}
#hero{
  background-image: url(../images/home/hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 50vh;
}
#slogan{
  display: flex;
  height: 50vh;
  width: 100%;
  align-items: last baseline;
  justify-content: center;
  padding-bottom: 1.5vh;
  font-family: 'Homemade Apple', cursive;
  font-size: 1.8vw;
  color: #ffffff;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px rgb(234, 185, 118), 0 0 40px #e6bc00, 0 0 50px #e6a900, 0 0 60px #e6ad00, 0 0 70px #e69600;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px rgba(252, 205, 103, 0.788), 0 0 40px #ffc14d, 0 0 50px rgb(250, 176, 49, 211, 77), 0 0 60px #ffca4d, 0 0 70px #ffc44d, 0 0 80px #fdd360;
  }
}

.herobutton {
  display: flex;
  align-items: center;
  width: min-content;
  height: min-content;
  padding: 20px;
}

.glowing-btn {
  display: inline-block;
  height: min-content;
  width: min-content;
  align-self: center;
  position: relative;
  color: var(--glow-color);
  cursor: pointer;
  padding: 0.35em 1em;
  border: 0.15em solid var(--glow-color);
  border-radius: 0.45em;
  background: none;
  perspective: 2em;
  font-family: "Raleway", sans-serif;
  font-size: 2em;
  font-weight: 900;
  letter-spacing: 1em;

  -webkit-box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
    0px 0px 0.5em 0px var(--glow-color);
  -moz-box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
    0px 0px 0.5em 0px var(--glow-color);
  box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
    0px 0px 0.5em 0px var(--glow-color);
  animation: border-flicker 2s linear infinite;
}

.glowing-txt {
  float: left;
  margin-right: -0.8em;
  -webkit-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),
    0 0 0.45em var(--glow-color);
  -moz-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),
    0 0 0.45em var(--glow-color);
  text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--glow-color);
  animation: text-flicker 3s linear infinite;
}

.faulty-letter {
  opacity: 0.5;
  animation: faulty-flicker 2s linear infinite;
}

.glowing-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.7;
  filter: blur(1em);
  transform: translateY(120%) rotateX(95deg) scale(1, 0.35);
  background: var(--glow-color);
  pointer-events: none;
}

.glowing-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  background-color: var(--glow-color);
  box-shadow: 0 0 2em 0.2em var(--glow-color);
  transition: opacity 100ms linear;
}

.glowing-btn:hover {
  color: rgba(0, 0, 0, 0.8);
  text-shadow: none;
  animation: none;
}

.glowing-btn:hover .glowing-txt {
  animation: none;
  color: #f2f2f2;
}

.glowing-btn:hover .faulty-letter {
  animation: none;
  text-shadow: none;
  opacity: 1;
}

.glowing-btn:hover:before {
  filter: blur(1.5em);
  opacity: 1;
}

.glowing-btn:hover:after {
  opacity: 1;
}

@keyframes faulty-flicker {
  0% {
    opacity: 0.1;
  }
  2% {
    opacity: 0.1;
  }
  4% {
    opacity: 0.5;
  }
  19% {
    opacity: 0.5;
  }
  21% {
    opacity: 0.1;
  }
  23% {
    opacity: 1;
  }
  80% {
    opacity: 0.5;
  }
  83% {
    opacity: 0.4;
  }

  87% {
    opacity: 1;
  }
}

@keyframes text-flicker {
  0% {
    opacity: 0.1;
  }

  2% {
    opacity: 1;
  }

  8% {
    opacity: 0.1;
  }

  9% {
    opacity: 1;
  }

  12% {
    opacity: 0.1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0.3;
  }
  30% {
    opacity: 1;
  }

  70% {
    opacity: 0.7;
  }
  72% {
    opacity: 0.2;
  }

  77% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.9;
  }
}

@keyframes border-flicker {
  0% {
    opacity: 0.1;
  }
  2% {
    opacity: 1;
  }
  4% {
    opacity: 0.1;
  }

  8% {
    opacity: 1;
  }
  70% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 600px) {
  .glowing-btn{
    font-size: 1em;
  }
}

.row0 {
  display: flexbox;
  float: left;
  width: 100%;
  height: 50vh;
  flex-direction: row;
}
.row1-0{
  display: flex;
  height: min-content;
  justify-content: center;
  align-items: center;
  background: #110e0e;
}

.row {
  margin-top: 3.5vw;
}

.row:after{
  content: "";
  display: table;
  clear: both;
  flex-direction: row;
}

#faq{
  flex-direction: row;
  margin: 0%;
}

.row2{
  height: 25vw;
  background-image: url(../images/home/header.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.column3 {
  float: left;
  width: 20%;
  height: 100%;
  margin-left: 0;
  background-color: #1B1616;
  z-index: 0.5;
}
.column3 h2{
  color: #fcf7f3;
  font-size: 3vw;
  padding: 10%;
  font-style: italic;
  text-align: center;
}
.column3 p{
  color: #fcf7f3;
  font-size: 1vw;
  padding: 10%;
  text-align: center;
}
.column4{
  float: left;
  width: 20%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: transparent;
  background: none;
}

.column4 p{
  padding: 0.8vw;
  font-size: 0.9vw;
}

.column4 h1{
  padding: 1vw;
  font-size: 1.3vw;
}

.column4 img{
  border: transparent;
  border-radius: 4%;
  margin-top: 6%;
}

.column5{
  float: left;
  width: 20%;
  height: 100%;
  background: transparent;
  background: none;
}

.column5 h1{
  padding: 1vw;
  font-size: 1.3vw;
}

.column5 p{
  padding: 0.8vw;
  font-size: 0.9vw;
}

.column5 img{
  border: transparent;
  border-radius: 4%;
  margin-top: 6%;
}

.column6{
  float: left;
  width: 20%;
  height: 100%;
  background: transparent;
  background: none;
}

.column6 p{
  padding: 0.8vw;
  font-size: 0.9vw;
}

.column6 h1{
  padding: 1vw;
  font-size: 1.3vw;
}


.column6 img{
  border: transparent;
  border-radius: 4%;
  margin-top: 6%;
}


.row2:after{
  content: "";
  display: table;
  clear: both;
  flex-direction: row;
}

.flip-card {
  background-color: transparent;
  background: none;
  width: 85%;
  height: 85%;
  border: transparent;
  border-radius: 7px;
  perspective: 100%; /* Remove this if you don't want the 3D effect */
  margin: 10%;
}

.flipcardimg{
  width:100%;
  height:100%;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #1B1616;
  color: black;
  border: transparent;
  border-radius: 10px;
}


.flip-card-front-background1{
  display: inline-block;
  height: 80%;
  width: 80%;
  margin: 10%;
  border: transparent;
  border-radius: 10%;
  background-image: url(../images/home/1.png);
  background-size: cover;
  background-position: center;
}

.flip-card-front-background2{
  display: inline-block;
  height: 80%;
  width: 80%;
  margin: 10%;
  border: transparent;
  border-radius: 10%;
  background-image: url(../images/home/2.png);
  background-size: cover;
  background-position: center;
}

.flip-card-front-background3{
  display: inline-block;
  height: 80%;
  width: 80%;
  margin: 10%;
  border: transparent;
  border-radius: 10%;
  background-image: url(../images/home/3.png);
  background-size: cover;
  background-position: center;
}

/* Style the back side */
.flip-card-back {
  background-color: rgb(255, 255, 255);
  color: rgb(30, 25, 25);
  border: transparent;
  border-radius: 10px;
  transform: rotateY(180deg);
  box-shadow: #1B1616;
}

.column7{
  background-color: #1B1616;
  float: right;
  width: 20%;
  height: 100%;
  margin-right: 0px;
}

.column7 h2{
  color: #fcf7f3;
  font-size: 2.7vw;
  padding: 10%;
  font-style: italic;
  text-align: center;
}
.column7 p{
  color: #fcf7f3;
  font-size: 1vw;
  padding: 10%;
  text-align: center;
}

#O_nama{
  background-color: #110e0e;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: max-content;}

#naslov{
  display: flex;
  align-items: center;
  justify-content: center;
}

.row4{
  height: auto;
  width: 100%;
}

.column8{
  display: flex;
  float: left;
  width: 33%;
}


.column9{
  width: 33%;
  height: auto;
  float: left;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}

* {box-sizing:border-box}

.column10{
  width: 33%;
  flex-wrap: nowrap;
  display: flex;
  flex-direction: column;
  height: auto;
}


.slideshow-container{
  width: 29vw;
  height: 15vw;
  position: relative;
}

.slideshow-photo {
  width: 100%; /* Makes photo take full width of the container */
  height: 250px;
  border: transparent;
  border-radius: 7px;
  opacity: 0; /* Hide all initially */
  position: absolute; /* Overlay slides on top of each other */
  transition: opacity 3s linear; /* Use transition for fading effect */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Ensures no overflow if image is larger than the container */
}

.slideshow-photo img {
  max-width: 100%;  /* Scale images to fit the container */
  max-height: 100%; /* This will keep the image within the container's height */
  border-radius: 7px;
}

/* Initial visible photo */
.slideshow-photo.active {
  opacity: 1; /* Only the active class will show the image */
}



#paragraf p{
  color: #fcf7f3;
  display: flex;
  align-items: center;
  padding: 5%;
  justify-content: center;
  text-align: center;
  font-size: 0.85vw;
}
#paragraf h2{
  color: #fcf7f3;
  text-align: center;
  padding: 5%;
  font-size: 2vw;
  font-family: Montserrat;
  margin-top: 7%;
}

#paragraf h3{
  color: #fcf7f3;
  text-align: center;
  padding: 1%;
  font-size: 1vw;
  font-family: Montserrat;
  margin-top: 10px;
}

#paragraf{
  margin: 20px;
  margin-top: 35px;
  border-color: #FFB658;
  border-width: 2px;
  border-style: solid;
  border-radius: 7px;
  margin-left: 35px;
}


.čelo{
  height: auto; 
  width: 100%;
  align-self: center;
}


footer{
  display: flex;
  flex-wrap: wrap;
  background-color: #1B1616;
  padding: 25px;
  width: 100%;
  height: max-content;
  justify-content: space-around;
}

.footer-col ul{
  list-style: none;
}

.footer-col-logo{
  max-width: 350px;
  min-width: 150px;
  padding-left: 3%;
  min-height: 150px;
  max-height: 350px;
}

.footerlogo{
  width: auto;
  height: 100%;
}

.footer-col h4{
  position: relative;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 30px;
  color: #f1bc0d;
  text-transform: capitalize;
}

.footer-col{
  width: 20%;
  padding-left: 5%;
}

.footer-col h4::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  background-color: #e69600;
  height: 2px;
  width: 40px;
}

.footer-col ul{
  padding: 0%;
}

.footer-col ul li{
  margin-bottom: 10px;
  padding: none;
}

.footer-col ul li a{
  display: block;
  font-size: 20px;
  text-transform: capitalize;
  color: #bdb6b6;
  text-decoration: none;
  transition: 0.4s;
}

.footer-col ul li a:hover{
  color: white;
  padding-left: 2px;
}

.links a{
  display: inline-block;
  height: 44px;
  width: 44px;
  color: white;
  background-color: #e69600;
  margin: 0 8px 8px 0;
  text-align: center;
  line-height: 44px;
  border-radius: 50%;
  transition: 0.4s;
}

.links a:hover{
  color: #4d4f55;
  background-color: white;
}

@media(max-width: 1024px){

  .row0 {
    display: flexbox;
    float: left;
    width: 100%;
    height: 40vh;
    flex-direction: row;
  }

  #hero{
    background-image: url(../images/home/hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
    height: 40vh;
  }

  #slogan{
    display: flex;
    height: 40vh;
    width: 100%;
    align-items: last baseline;
    justify-content: center;
    padding-bottom: 2vh;
    font-family: 'Homemade Apple', cursive;
    font-size: 2vw;
    color: #ffffff;
    animation: glow 3s ease-in-out infinite alternate;
  }
  

  .row2{
    height: 32vw;
    background-image: url(../images/home/header.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .column3 {
    float: left;
    width: 20%;
    height: 100%;
    margin-left: 0;
    background-color: #1B1616;
    z-index: 0.5;
  }
  .column3 h2{
    color: #fcf7f3;
    font-size: 3vw;
    padding: 10%;
    font-style: italic;
    text-align: center;
  }
  .column3 p{
    color: #fcf7f3;
    font-size: 13px;
    padding: 10%;
    text-align: center;
  }
  .column4{
    float: left;
    width: 20%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: transparent;
    background: none;
  }
  
  .column4 p{
    padding: 0.8vw;
    font-size: 13px;
  }
  
  .column4 h1{
    padding: 10px;
    font-size: 15px;
  }
  
  .column4 img{
    border: transparent;
    border-radius: 4%;
    margin-top: 6%;
  }
  
  .column5{
    float: left;
    width: 20%;
    height: 100%;
    background: transparent;
    background: none;
  }
  
  .column5 h1{
    padding: 10px;
    font-size: 15px;
  }
  
  .column5 p{
    padding: 0.8vw;
    font-size: 12px;
  }
  
  .column5 img{
    border: transparent;
    border-radius: 4%;
    margin-top: 6%;
  }
  
  .column6{
    float: left;
    width: 20%;
    height: 100%;
    background: transparent;
    background: none;
  }
  
  .column6 p{
    padding: 0.8vw;
    font-size: 12px;
  }
  
  .column6 h1{
    padding: 1vw;
    font-size: 15px;
  }
  
  
  .column6 img{
    border: transparent;
    border-radius: 4%;
    margin-top: 6%;
  }
  
  .column7{
    background-color: #1B1616;
    float: right;
    width: 20%;
    height: 100%;
    margin-right: 0px;
  }
  
  .column7 h2{
    color: #fcf7f3;
    font-size: 2.7vw;
    padding: 10%;
    font-style: italic;
    text-align: center;
  }
  .column7 p{
    color: #fcf7f3;
    font-size: 13px;
    padding: 10%;
    text-align: center;
  }


  .row4{
    height: min-content;
    width: 100%;
  }
  
  .column8{
    display: flex;
    flex-direction: row;
    float: left;
    width: 100%;
  }
  
  
  .column9{
    width: 50%;
    height: 500px;
    float: left;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }
  
  * {box-sizing:border-box}
  
  .čelo{
    height: auto; 
    width: 80%;
    align-self: center;
  }

  .column10{
    width: 50%;
    flex-wrap: nowrap;
    display: flex;
    flex-direction: column;
    height: auto;
  }
  
  
  .slideshow-container{
    width: 29vw;
    height: 15vw;
    position: relative;
  }
  
  .slideshow-photo {
    width: 100%; /* Makes photo take full width of the container */
    height: 270px;
    border: transparent;
    border-radius: 7px;
    opacity: 0; /* Hide all initially */
    position: absolute; /* Overlay slides on top of each other */
    transition: opacity 3s linear; /* Use transition for fading effect */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensures no overflow if image is larger than the container */
  }
  
  .slideshow-photo img {
    max-width: 100%;  /* Scale images to fit the container */
    max-height: 100%; /* This will keep the image within the container's height */
    border-radius: 7px;
  }
  
  /* Initial visible photo */
  .slideshow-photo.active {
    opacity: 1; /* Only the active class will show the image */
  }
  
  
  
  #paragraf p{
    color: #fcf7f3;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: center;
    text-align: center;
    font-size: 13px;
  }
  #paragraf h2{
    color: #fcf7f3;
    text-align: center;
    padding: 0%;
    font-size: 3vw;
    font-family: Montserrat;
    margin-top: 10px;
  }
  
  #paragraf h3{
    color: #fcf7f3;
    text-align: center;
    padding: 1%;
    font-size: 17px;
    font-family: Montserrat;
    margin-top: 10px;
  }
  
  #paragraf{
    margin: 20px;
    margin-top: 35px;
    border-color: #FFB658;
    border-width: 2px;
    border-style: solid;
    border-radius: 7px;
    margin-left: 35px;
  }
  .footer-col{
    width: 20%;
    padding-left: 0%;
  }
  .footer-col-logo{
    padding: 0%;
  }
}

@media(max-width: 768px){

  .row0 {
    display: flexbox;
    float: left;
    width: 100%;
    height: 40vh;
    flex-direction: row;
  }

  #hero{
    background-image: url(../images/home/hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
    height: 40vh;
  }

  #slogan{
    display: flex;
    height: 40vh;
    width: 100%;
    align-items: last baseline;
    justify-content: center;
    padding-bottom: 2vh;
    font-family: 'Homemade Apple', cursive;
    font-size: 3vw;
    color: #ffffff;
    animation: glow 3s ease-in-out infinite alternate;
  }
  

  .row2{
    height: 32vw;
    background-image: url(../images/home/header.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .column3 {
    float: left;
    width: 20%;
    height: 100%;
    margin-left: 0;
    background-color: #1B1616;
    z-index: 0.5;
  }
  .column3 h2{
    color: #fcf7f3;
    font-size: 3vw;
    padding: 10%;
    font-style: italic;
    text-align: center;
  }
  .column3 p{
    color: #fcf7f3;
    font-size: 11px;
    padding: 10%;
    text-align: center;
  }
  .column4{
    float: left;
    width: 20%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: transparent;
    background: none;
  }
  
  .column4 p{
    padding: 0.8vw;
    font-size: 11px;
  }
  
  .column4 h1{
    padding: 5px;
    font-size: 12px;
  }
  
  .column4 img{
    border: transparent;
    border-radius: 4%;
    margin-top: 6%;
  }
  
  .column5{
    float: left;
    width: 20%;
    height: 100%;
    background: transparent;
    background: none;
  }
  
  .column5 h1{
    padding: 5px;
    font-size: 12px;
  }
  
  .column5 p{
    padding: 0.6vw;
    font-size: 9px;
  }
  
  .column5 img{
    border: transparent;
    border-radius: 4%;
    margin-top: 6%;
  }
  
  .column6{
    float: left;
    width: 20%;
    height: 100%;
    background: transparent;
    background: none;
  }
  
  .column6 p{
    padding: 0.8vw;
    font-size: 10px;
  }
  
  .column6 h1{
    padding: 5px;
    font-size: 12px;
  }
  
  
  .column6 img{
    border: transparent;
    border-radius: 4%;
    margin-top: 6%;
  }
  
  .column7{
    background-color: #1B1616;
    float: right;
    width: 20%;
    height: 100%;
    margin-right: 0px;
  }
  
  .column7 h2{
    color: #fcf7f3;
    font-size: 2.7vw;
    padding: 10%;
    font-style: italic;
    text-align: center;
  }
  .column7 p{
    color: #fcf7f3;
    font-size: 11px;
    padding: 10%;
    text-align: center;
  }


  .row4{
    height: min-content;
    width: 100%;
  }
  
  .column8{
    display: flex;
    flex-direction: row;
    float: left;
    width: 100%;
  }
  
  
  .column9{
    width: 50%;
    height: 500px;
    float: left;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
  }
  
  * {box-sizing:border-box}
  
  .čelo{
    height: auto; 
    width: 100%;
    align-self: center;
    margin-left: 9%;
  }

  .column10{
    width: 50%;
    flex-wrap: nowrap;
    display: flex;
    flex-direction: column;
    height: auto;
  }
  
  
  .slideshow-container{
    width: 90%;
    height: 15vw;
    position: relative;
  }
  
  .slideshow-photo {
    width: 100%; /* Makes photo take full width of the container */
    height: 270px;
    border: transparent;
    border-radius: 7px;
    opacity: 0; /* Hide all initially */
    position: absolute; /* Overlay slides on top of each other */
    transition: opacity 3s linear; /* Use transition for fading effect */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensures no overflow if image is larger than the container */
  }
  
  .slideshow-photo img {
    max-width: 100%;  /* Scale images to fit the container */
    max-height: 100%; /* This will keep the image within the container's height */
    border-radius: 7px;
  }
  
  /* Initial visible photo */
  .slideshow-photo.active {
    opacity: 1; /* Only the active class will show the image */
  }
  
  
  
  #paragraf p{
    color: #fcf7f3;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: center;
    text-align: center;
    font-size: 13px;
  }
  #paragraf h2{
    color: #fcf7f3;
    text-align: center;
    padding: 0%;
    font-size: 3vw;
    font-family: Montserrat;
    margin-top: 10px;
  }
  
  #paragraf h3{
    color: #fcf7f3;
    text-align: center;
    padding: 1%;
    font-size: 17px;
    font-family: Montserrat;
    margin-top: 10px;
  }
  
  #paragraf{
    margin: 20px;
    margin-top: 35px;
    border-color: #FFB658;
    border-width: 2px;
    border-style: solid;
    border-radius: 7px;
    margin-left: 35px;
  }
  .footer-col{
      width: 50%;
      margin-bottom: 30px;
      text-align: center;
  }

  .footer-col h4::before{
      all: unset;
  }

}

@media(max-width: 555px){
  .footer-col{
      width: 100%;
  }
}


@media(max-width: 430px){
  .row0 {
    display: flexbox;
    float: left;
    width: 100%;
    height: 30vh;
    flex-direction: row;
  }

  #hero{
    background-image: url(../images/home/hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
    height: 30vh;
  }

  #slogan{
    display: flex;
    height: 30vh;
    width: 100%;
    align-items: last baseline;
    justify-content: center;
    padding-bottom: 2vh;
    font-family: 'Homemade Apple', cursive;
    font-size: 4vw;
    color: #ffffff;
    animation: glow 3s ease-in-out infinite alternate;
  }

                                                                                                                      .row2{
    height: auto;
    background-image: url(../images/home/header.png);                                                                   background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0.5;
    justify-content: space-around;
  }
  #flash{
    height: 30px;
  }
  .column3 {
    float: left;
    width: 100%;
    height: 10vh;
    margin-left: 0;
    background-color: #1B1616;
  }
  .column3 h2{
    color: #fcf7f3;
    font-size: 4.6vw;
    padding: 3px;
    padding-top: 7px;
    font-style: italic;
    text-align: center;
  }
  .column3 p{
    color: #fcf7f3;
    font-size: 10px;
    padding: 3px;
    text-align: center;
  }
  .column4{
    float: left;
    width: 50%;
    height: 30vh;
    align-items: center;
    justify-content: center;
    background: transparent;
    background: none;
  }

  .column4 p{
    padding: 0.8vw;
    font-size: 10px;
  }

  .column4 h1{
    padding: 10px;
    font-size: 15px;
  }

  .column4 img{
    border: transparent;
    border-radius: 4%;
    margin-top: 6%;
  }

 .column5{
    float: left;
    width: 50%;
    height: 30vh;
    background: transparent;
    background: none;
  }

  .column5 h1{
    padding: 10px;
    font-size: 15px;
  }

  .column5 p{
    padding: 0.8vw;
    font-size: 10px;
  }

  .column5 img{
    border: transparent;
    border-radius: 4%;
    margin-top: 6%;
  }

  .column6{
    float: left;
    width: 50%;
    height: 30vh;
    background: transparent;
    background: none;
    margin-left: 23%;
  }

  .column6 p{
    padding: 0.8vw;
    font-size: 10px;
  }

  .column6 h1{
    padding: 1vw;
    font-size: 15px;
  }


  .column6 img{
    border: transparent;
    border-radius: 4%;
    margin-top: 6%;
  }

  .column7{
    background-color: #1B1616;
    float: right;
    width: 100%;
    height: auto;
    margin-right: 0px;
  }

  .column7 h2{
    color: #fcf7f3;
    font-size: 4.6vw;
    padding: 10px;
    font-style: italic;
    text-align: center;
  }
  .column7 p{
    color: #fcf7f3;
    font-size: 11px;
    padding: 10px;
    text-align: center;
  }


  .row4{
    height: min-content;
    width: 100%;
  }

  .column8{
    display: flex;
    flex-direction: row;
    float: left;
    width: 100%;
  }

 .column9{
    width: 100%;
    height: 550px;
    float: left;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }

  * {box-sizing:border-box}

  .čelo{
    height: auto;
    width: 80%;
    align-self: center;
    margin-right: 15px;
  }

  .column10{
    width: 100%;
    flex-wrap: nowrap;
    display: flex;
    flex-direction: column;
    height: auto;
  }


  .slideshow-container{
    width: 80%;
    height: auto;
    position: relative;
  }

  .slideshow-photo {
    width: 100%; /* Makes photo take full width of the container */
    height: auto;
    border: transparent;
    border-radius: 7px;
    opacity: 0; /* Hide all initially */
    position: absolute; /* Overlay slides on top of each other */
    transition: opacity 3s linear; /* Use transition for fading effect */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensures no overflow if image is larger than the container */
  }

  .slideshow-photo img {
    max-width: 100%;  /* Scale images to fit the container */
    max-height: 100%; /* This will keep the image within the container's height */
    border-radius: 7px;
  }

  /* Initial visible photo */
  .slideshow-photo.active {
    opacity: 1; /* Only the active class will show the image */
  }



  #paragraf p{
    color: #fcf7f3;
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: center;
    text-align: center;
    font-size: 10px;
  }
  #paragraf h2{
    color: #fcf7f3;
    text-align: center;
    padding: 0%;
    font-size: 4.6vw;
    font-family: Montserrat;
    margin-top: 10px;
  }

  #paragraf h3{
    color: #fcf7f3;
    text-align: center;
    padding: 1%;
    font-size: 13px;
    font-family: Montserrat;
    margin-top: 10px;
  }

  #paragraf{
    margin: 20px;
    margin-top: 35px;
    border-color: #FFB658;
    border-width: 2px;
    border-style: solid;
    border-radius: 7px;
    margin-left: 35px;
  }

  .footer-col-logo{
    padding: 0%;
  }

  .footer-col{
      width: 100%;
  }
  .footerlogo{
    max-width: 350px;
    min-width: 150px;
    height: auto;
    width: 100%;
    align-self: center;
  }
}



@media(max-width: 425px){
  .row0 {
    display: flexbox;
    float: left;
    width: 100%;
    height: 30vh;
    flex-direction: row;
  }

  #hero{
    background-image: url(../images/home/hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
    height: 30vh;
  }

  #slogan{
    display: flex;
    height: 30vh;
    width: 100%;
    align-items: last baseline;
    justify-content: center;
    padding-bottom: 2vh;
    font-family: 'Homemade Apple', cursive;
    font-size: 4vw;
    color: #ffffff;
    animation: glow 3s ease-in-out infinite alternate;
  }
  

  .row2{
    height: auto;
    background-image: url(../images/home/header.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0.5;
    justify-content: space-around;
  }
  #flash{
    height: 30px;
  }
  .column3 {
    float: left;
    width: 100%;
    height: 10vh;
    margin-left: 0;
    background-color: #1B1616;
  }
  .column3 h2{
    color: #fcf7f3;
    font-size: 4.6vw;
    padding: 3px;
    padding-top: 7px;
    font-style: italic;
    text-align: center;
  }
  .column3 p{
    color: #fcf7f3;
    font-size: 10px;
    padding: 3px;
    text-align: center;
  }
  .column4{
    float: left;
    width: 50%;
    height: 30vh;
    align-items: center;
    justify-content: center;
    background: transparent;
    background: none;
  }
  
  .column4 p{
    padding: 0.8vw;
    font-size: 10px;
  }
  
  .column4 h1{
    padding: 10px;
    font-size: 15px;
  }
  
  .column4 img{
    border: transparent;
    border-radius: 4%;
    margin-top: 6%;
  }
  
  .column5{
    float: left;
    width: 50%;
    height: 30vh;
    background: transparent;
    background: none;
  }
  
  .column5 h1{
    padding: 10px;
    font-size: 15px;
  }
  
  .column5 p{
    padding: 0.8vw;
    font-size: 10px;
  }
  
  .column5 img{
    border: transparent;
    border-radius: 4%;
    margin-top: 6%;
  }
  
  .column6{
    float: left;
    width: 50%;
    height: 30vh;
    background: transparent;
    background: none;
    margin-left: 23%;
  }
  
  .column6 p{
    padding: 0.8vw;
    font-size: 10px;
  }
  
  .column6 h1{
    padding: 1vw;
    font-size: 15px;
  }
  
  
  .column6 img{
    border: transparent;
    border-radius: 4%;
    margin-top: 6%;
  }
  
  .column7{
    background-color: #1B1616;
    float: right;
    width: 100%;
    height: auto;
    margin-right: 0px;
  }
  
  .column7 h2{
    color: #fcf7f3;
    font-size: 4.6vw;
    padding: 10px;
    font-style: italic;
    text-align: center;
  }
  .column7 p{
    color: #fcf7f3;
    font-size: 11px;
    padding: 10px;
    text-align: center;
  }


  .row4{
    height: min-content;
    width: 100%;
  }
  
  .column8{
    display: flex;
    flex-direction: row;
    float: left;
    width: 100%;
  }
  
  
  .column9{
    width: 100%;
    height: 550px;
    float: left;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }
  
  * {box-sizing:border-box}
  
  .čelo{
    height: auto; 
    width: 80%;
    align-self: center;
    margin-right: 15px;
  }

  .column10{
    width: 100%;
    flex-wrap: nowrap;
    display: flex;
    flex-direction: column;
    height: auto;
  }
  
  
  .slideshow-container{
    width: 80%;
    height: auto;
    position: relative;
  }
  
  .slideshow-photo {
    width: 100%; /* Makes photo take full width of the container */
    height: auto;
    border: transparent;
    border-radius: 7px;
    opacity: 0; /* Hide all initially */
    position: absolute; /* Overlay slides on top of each other */
    transition: opacity 3s linear; /* Use transition for fading effect */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensures no overflow if image is larger than the container */
  }
  
  .slideshow-photo img {
    max-width: 100%;  /* Scale images to fit the container */
    max-height: 100%; /* This will keep the image within the container's height */
    border-radius: 7px;
  }
  
  /* Initial visible photo */
  .slideshow-photo.active {
    opacity: 1; /* Only the active class will show the image */
  }
  
  
  
  #paragraf p{
    color: #fcf7f3;
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: center;
    text-align: center;
    font-size: 10px;
  }
  #paragraf h2{
    color: #fcf7f3;
    text-align: center;
    padding: 0%;
    font-size: 4.6vw;
    font-family: Montserrat;
    margin-top: 10px;
  }
  
  #paragraf h3{
    color: #fcf7f3;
    text-align: center;
    padding: 1%;
    font-size: 13px;
    font-family: Montserrat;
    margin-top: 10px;
  }
  
  #paragraf{
    margin: 20px;
    margin-top: 35px;
    border-color: #FFB658;
    border-width: 2px;
    border-style: solid;
    border-radius: 7px;
    margin-left: 35px;
  }

  .footer-col-logo{
    padding: 0%;
  }

  .footer-col{
      width: 100%;
  }
  .footerlogo{
    max-width: 350px;
    min-width: 150px;
    height: auto;
    width: 100%;
    align-self: center;
  }
}
@media(max-width: 375px){
  .column3 h2{
    color: #fcf7f3;
    font-size: 4.6vw;
    padding: 3px;
    padding-top: 5px;
    font-style: italic;
    text-align: center;
  }
  .column3 p{
    color: #fcf7f3;
    font-size: 10px;
    padding: 4px;
    text-align: center;
  }
  .column4{
    float: left;
    width: 50%;
    height: 30vh;
    align-items: center;
    justify-content: center;
    background: transparent;
    background: none;
  }
  
  .column4 p{
    padding: 0.8vw;
    font-size: 10px;
  }
  
  .column4 h1{
    padding: 7px;
    font-size: 12px;
  }
  
  .column4 img{
    border: transparent;
    border-radius: 4%;
    margin-top: 6%;
  }
  
  .column5{
    float: left;
    width: 50%;
    height: 30vh;
    background: transparent;
    background: none;
  }
  
  .column5 h1{
    padding: 7px;
    font-size: 12px;
  }
  
  .column5 p{
    padding: 0.8vw;
    font-size: 9px;
  }
  
  .column5 img{
    border: transparent;
    border-radius: 4%;
    margin-top: 6%;
  }
  
  .column6{
    float: left;
    width: 50%;
    height: 30vh;
    background: transparent;
    background: none;
    margin-left: 23%;
  }
  
  .column6 p{
    padding: 0.8vw;
    font-size: 10px;
  }
  
  .column6 h1{
    padding: 7px;
    font-size: 12px;
  }
  
  
  .column6 img{
    border: transparent;
    border-radius: 4%;
    margin-top: 6%;
  }
  
  .column7{
    background-color: #1B1616;
    float: right;
    width: 100%;
    height: auto;
    margin-right: 0px;
  }
  
  .column7 h2{
    color: #fcf7f3;
    font-size: 4.6vw;
    padding: 10px;
    font-style: italic;
    text-align: center;
  }
  .column7 p{
    color: #fcf7f3;
    font-size: 11px;
    padding: 10px;
    text-align: center;
  }

}

@media(max-width: 320px){
  .column5 h1{
  padding: 4px;
  font-size: 12px;
}

.column5 p{
  padding: 0.8vw;
  font-size: 9px;
}
}
