@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #333;
}

/* Navbar */
/* Navbar default (na vrhu, transparentan i viši) */
.custom-navbar {
  background: transparent;
  transition: all 0.3s ease;
  padding: 20px 0;
}

/* Kada se skroluje */
.custom-navbar.scrolled {
  background: rgba(34, 49, 34, 0.95); /* tamno zelena */
  padding: 10px 0;
}

.custom-navbar .nav-link {
  color: #fff !important;
  margin-left: 15px;
  transition: color 0.3s ease;
}
.custom-navbar .nav-link:hover {
  color: #d4af37 !important;
}

/* Hero */
.hero-section {
  height: 100vh;
  background: url('/img/sip.webp') center/cover fixed no-repeat;
  position: relative;
}
.hero-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}
.hero-section .container {
  position: relative;
  z-index: 1;
}

.custom-btn {
  display: inline-block;
  padding: 12px 30px;
  color: #fff;
  background: rgba(34, 139, 34, 1); /* osnovna zelena */
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  outline: none;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.custom-btn:hover {
  background: rgba(34, 139, 34, 0.6); 
}


/* Galerija */
.gallery-section {
  background: url('/img/sip.webp') center/cover fixed no-repeat;
  position: relative;
}
.gallery-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
}
.gallery-section .container {
  position: relative;
  z-index: 1;
}
.ftr-logo{
  max-height: 180px;
}
.aframe-list {
  padding-left: 18px;
}

.aframe-list li {
  margin-bottom: 18px;
  line-height: 1.6;
}

.aframe-list li::marker {
  color: #228B22;
}
.gallery-img:hover {
  cursor: pointer;
}
/* Slika sa desne strane pod uglom */
.pricing-image {
  background: url('/img/s4.webp') center/cover no-repeat;
  height: 400px;
}
#contact{
  background: rgb(34, 49, 34);
  color: white;
}
/* Responsive */
@media (max-width: 992px) {
  .pricing-image {
    height: 300px;
    margin-top: 20px;
  }
}
/* Forma kontakt */
.contact-form .form-control {
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 12px;
  margin-bottom: 15px;
}
.contact-form .btn.custom-btn {
  display: block;
  width: 100%;
}
.panel-img{
  height: 400px;
}
/* Fade-in sekcije */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

/* Footer */
footer {
  font-size: 14px;
}
footer h5 {
  margin-bottom: 15px;
}
footer ul li {
  margin-bottom: 8px;
}
footer a:hover {
  color: #d4af37;
}

/* Kartice cenovnika */
.pricing-card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 25px rgba(0,0,0,0.25);
}

/* Izbacivanje border-radius svuda */
img, .card, .btn, .navbar, .shadow {
  border-radius: 0 !important;
}
/* A-FRAME */
#aframe {
  overflow: hidden;
}

.aframe-image-wrapper {
  overflow: hidden;
  background: #111;
}

.aframe-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 1200x1200 */
.house-image {
  height: 600px;
}

.dimensions-image {
  max-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dimensions-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

.aframe-list li {
  margin-bottom: 12px;
  padding-left: 2px;
}

.info-box {
  border-left: 2px solid #228B22;
  padding-left: 15px;
}

.info-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.info-box h5 {
  margin: 0;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {

  .house-image,
  .dimensions-image {
    height: auto;
  }

  .dimensions-image {
    max-width: 500px;
    margin: 0 auto;
  }

}