@charset "utf-8";
/* CSS Document */

body {
	
  padding-top: 70px;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0b3c2;
  color: #333;
}


header {
  
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  width: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #F5CCD6;
  z-index: 1000;
}

.logo {
  cursor: pointer;
  display: inline-block;
}


nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #a11d1d;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}


.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff0f0;
}

.hero h1 {
  font-size: 48px;
  color: #a11d1d;
  font-style: italic;
  margin: 10px
}

.hero p {
  font-size: 19px;
  margin: 20px 0;
}

.hero button {
  background-color: #a11d1d;
  color: #fdf6e3;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.hero button:hover {
  background-color: #8e1a1a;
}
	
.hero img {
  width: 40%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  
} 
	



#products {
  text-align: center;
  padding: 40px 20px;
  
}




.slider-track img {
  width: 270px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}




section h2 {
  color: #a11d1d; 
  margin-bottom: 10px;
  text-align: center;
}


#about {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: #FFF0F0;
}

.centered-box {
  background-color: #F0B3C2; 
  border-radius: 20px;
  padding: 30px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}


.contact-section {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  background-color: #fff0f0;
  padding: 40px 20px;
  text-align: center;
  gap: 20px;
}

.contact-box {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: #f0b3c2;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.contact-box h3 {
  color: #a11d1d;
  margin-bottom: 10px;
}

/* Responsive dizajn */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
  }

  .contact-box {
    max-width: 90%;
  }
}




.promo-video {
  text-align: center;
  padding: 40px 20px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 omjer */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}





footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #a11d1d;
  color: #fdf6e3;
  padding: 20px 30px;
  font-size: 14px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
}

.footer-left {
  text-align: left;
}

.footer-center {
  text-align: center;
}

.footer-right {
  text-align: right;
}