@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

body {
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

html, body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: black;
}

/* ===== NAVIGACIJA ===== */
.navbar {
  background: linear-gradient(135deg, #000000, #111111) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
  color: #ffffff !important;
  font-weight: 600;
}

.navbar-nav .nav-link {
  color: #f0f0f0 !important;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #f13939 !important;
}

/* ===== SLIDER POZADINA ===== */
.carousel-item {
  height: 50vh;
  background: url('assets/img/slider1') no-repeat center/cover;
  position: relative;

}

.carousel-item:nth-child(1) {
  background: url('../img/slider1.jpeg') no-repeat center/cover;
}

.carousel-item:nth-child(2) {
  background: url('../img/slider2.jpeg') no-repeat center/cover;
}

.carousel-item:nth-child(3) {
  background: url('../img/slider3.jpeg') no-repeat center/cover;
}

/* ===== TEKST BLOK U SLIDERU ===== */
.carousel-item {
  height: 70vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-item:nth-child(1) {
  background-image: url('../img/slider3.jpeg');
}
.carousel-item:nth-child(2) {
  background-image: url('../img/slider2.jpeg');
}
.carousel-item:nth-child(3) {
  background-image: url('../img/slider1.jpeg');
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-content {
 
  padding: 25px 40px;
  
  border-radius: 12px;
  text-align: center;
  color: #f0f0f0;
  max-width: 700px;
 text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 4px rgba(184, 178, 164, 0.4);
  margin-bottom: 10px;
}

.carousel-content p {
  font-size: 1.1rem;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-content {
    padding: 20px;
    max-width: 90%;
  }

  .carousel-content h1 {
    font-size: 1.6rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }
}


.section-dark {
  background: #ffffff;
  color: #f2f2f2;
  padding: 80px 20px;
}

.section-gold {
  background: #1a1a1a;
  color: #f2f2f2;
  padding: 80px 20px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 40px;
}

.lead-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.service-box {
  background: rgba(241, 240, 240, 0.03);
  border: 1px solid #baa25f22;
  border-radius: 10px;
  padding: 25px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.service-box:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.service-box h3 {
  color: #ffffff;
  margin-top: 15px;
  font-size: 1.1rem;
}

.service-box p {
  font-size: 0.95rem;
  margin-top: 10px;
  color: #ddd;
}

.icon-gold {
  font-size: 2.5rem;
  color: #ffffff;
}

.accordion-button {
  background-color: #111;
  color: #f2f2f2;
  border: none;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: #ffffff;
  color: #000;
}

.accordion-body {
  background-color: #1a1a1a;
  color: #ddd;
  border-top: 1px solid #baa25f55;
}

/* === Kontakt Sekcija === */
.section-dark {
  background-color: #e0e0e0;
  padding: 80px 20px;
  color: #000000;
}

/* Naslov ispod h2 */
.section-subtitle {
  color: #000000;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

/* Ikonice info reda */
.icon-small {
  font-size: 0.9rem;
  color: #000000;
}

/* Info stavke */
.contact-info {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  color: #000000;
}

/* Google mapa embed stil */
.map-responsive {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(246, 246, 246, 0.2);
  margin-bottom: 50px;
}

/* Kontakt forma */
.contact-form {
  background-color: #1a1a1a;
  padding: 40px 30px;
  border: 1px solid #baa25f44;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(186, 162, 95, 0.1);
}

/* Naslovi u formi */
.contact-form .form-label {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 6px;
}

/* Polja forme */
.contact-form .form-control {
  background-color: #111;
  border: 1px solid #333;
  color: #fff;
  border-radius: 5px;
  padding: 10px 14px;
}

.contact-form .form-control::placeholder {
  color: #999;
}

/* Fokus efekat */
.contact-form .form-control:focus {
  border-color: #a1a1a1;
  box-shadow: 0 0 0 0.2rem rgba(186, 162, 95, 0.15);
}

/* Dugme forma */
.contact-form button {
  margin-top: 15px;
  font-weight: 600;
  padding: 10px 20px;
  border-color: #ffffff;
  color: #ffffff;
}

.contact-form button:hover {
  background-color: #d1d1d1;
  color: #000;
}

.site-footer {
  background: linear-gradient(to bottom, #111111, #000000);
  color: #ccc;
  padding: 60px 20px 0;
  font-size: 0.95rem;
}

/* Sadržaj footera */
.footer-block {
  border-bottom: 1px solid #83838333;
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.site-footer .row > div {
  padding: 10px 25px;
}

/* Srednji stub - navigacija */
.border-footer {
  border-left: 1px solid #82828222;
  border-right: 1px solid #97979722;
}

/* Naslovi kolona */
.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

/* Opisni tekst */
.footer-text {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.6;
}

/* Navigacija */
.footer-nav li {
  margin: 8px 0;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #7a7a7a;
}

/* Ikonice u kontakt info */
.footer-text i {
  color: #ffffff;
  margin-right: 6px;
}

/* Donji deo */
.footer-bottom {
  background-color: #000;
  color: #aaa;
  font-size: 1rem;
  border-top: 1px solid #222;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.gallery-hero {

  background: url('../img/slider1.jpeg') no-repeat center/cover;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  padding-bottom: 40px;

}

.gallery-hero .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0; left: 0; 
  width: 100%; 
  height: 100%;
  z-index: 1;
}

.gallery-hero .container {
  z-index: 2;
  position: relative;
}

#galerija {
  background: linear-gradient(to border-top, #252525, #000);
  color: #f2f2f2;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 u redu na desktopu */
  gap: 12px;
  width: 100%;
  max-width: 1200px; /* usklađeno sa Bootstrap .container */
  margin: 30px auto;
  padding: 20px;
  border-radius: 10px;
  background: none !important;

}


.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1 / 1;
  transition: transform 0.3s ease;
}

/* Responsive: 2 kolone */
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


/* Lightbox */
/* LIGHTBOX */
.lightbox {
  position: fixed;
  display: none;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  width: 100%;
  max-height: 90%;
  margin: 5% auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  object-fit: contain;
}

/* Strelice */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.lightbox-prev {
  left: 10px;
}
.lightbox-next {
  right: 10px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #000;
}

@media (max-width: 768px) {
  .lightbox-content {
    width: 95%;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 2rem;
    padding: 8px;
  }
}

.title2 {
  color: white;
}

.bhs-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9;
  width: 100%; 
  width: 100%;
  margin: 0 auto 40px auto;
}


.bhs-contact-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #000;
  font-size: 17px;
  border-left: 3px solid #000;
  padding-left: 12px;
}

.bhs-icon {
  font-size: 20px;
  margin-top: 4px;
  color: #000;
}

.bhs-contact-box a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.bhs-contact-box a:hover {
  text-decoration: underline;
}

.bhs-call-link {
  font-weight: bold;
  text-decoration: underline;
}

.bhs-section-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0 20px;
}

.bhs-section-title {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
  white-space: nowrap;
}

.bhs-line {
  flex-grow: 1;
  height: 2px;
  background: #000;
  max-width: 80px;
  opacity: 0.3;
}

.bhs-checklist-drama {
  list-style: none;
  padding: 0;
  margin: 30px auto 0;
  max-width: 800px;
  color: #000;
}

.bhs-checklist-drama li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 20px 0;
}



.bhs-checklist-drama hr {
  border: none;
  border-top: 1px solid #444;
  margin: 0 auto;
  width: 60%;
}

.bhs-glass-box {
  margin-top: 100px ;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bhs-title-responsive {
  font-size: 2rem;
}

.bhs-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: #f1f1f1;
}

@media (min-width: 768px) {
  .bhs-title-responsive {
    font-size: 2.5rem;
  }

  .bhs-lead {
    font-size: 1.125rem;
  }

}

@media (max-width: 768px)  {
  .navbar-brand {
  font-size: 17px;
}
}

.navbar-brand {
  text-transform: uppercase;
}

.fixed-call-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.fixed-call-button:hover {
  background-color: #333;
}

.fixed-call-button i {
  font-size: 20px;
}


.scroll-down-indicator-wrapper {
  text-align: center;
  margin-top: 10px;
}

.scroll-down-indicator {
  font-size: 35px;
  color: white;
  animation: scrollPulse 2.5s infinite ease-in-out;
  opacity: 0.8;
  display: inline-block;
  margin-top: 20px;
}

@keyframes scrollPulse {
  0% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
}

.con-mail{
  font-size: 14px;
}