body {
  background-color: #0a0a0a;
  color: #fff;
}

.header-logo {
  position: absolute;
  width: 236px;
  z-index: 99;
  left: 10%;
  top: 1%;
}
.btn-first {
  background-color: transparent;
  color: #fff;
  border: 2px solid #474a2b;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  /* smooth transition for hover */
  transition:
    background-color 0.3s ease-in-out,
    color 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
}

.btn-first:hover {
  background-color: #474a2b;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.btn-full {
  background-color: #474a2b;
  color: #fff;
  border: 2px solid #474a2b;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  /* smooth transition for hover */
  transition:
    background-color 0.3s ease-in-out,
    color 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
}

.btn-full:hover {
  background-color: #000;
  color: #fff;
  border: 2px solid #474a2b;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.navbar-nav > .nav-item.active a {
  color: #474a2b;
  text-decoration: underline;
}
.navbar-nav > .nav-item a:hover {
  color: #474a2b;
  transition: color 0.3s ease-in-out;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 10px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid #a97928;
  /* border-top: 10px solid transparent; */
  /* border-bottom: 10px solid transparent; */
  opacity: 1;
  transition: opacity 0.6s ease;
  border-radius: 50%;
}

.carousel-indicators [data-bs-target].active {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 13px;
  height: 13px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  margin-top: -2px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #474a2b;
  background-clip: padding-box;
  border: 1px solid #a97928;
  /* border-top: 10px solid transparent; */
  /* border-bottom: 10px solid transparent; */
  opacity: 0.5;
  transition: opacity 0.6s ease;
  border-radius: 50%;
}

#burgerBtn {
  border-top: 2px solid #a97928!important;
}

#burgerBtn:before {
  background: #a97928!important;
}
#burgerBtn:after {
  background: #a97928!important;
}


.navbar-nav > li:hover a{
    color: #c89c48;
}

  /* ===== Gallery Section Styles ===== */

        /* Parent container - main gallery section */
        .block-galeria {
            padding: 60px 0;
            background-color: #141414;
            
        }

        /* Inner container wrapper */
        .block-galeria-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Gallery boxes row - flex layout */
        .block-galeria-boxes {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        /* Text section - title and description */
        .block-galeria-text {
            flex: 1;
            min-width: 280px;
            padding: 20px;
        }

        /* Gallery title styling */
        .block-galeria-text .title {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        /* Gallery description styling */
        .block-galeria-text .description {
            font-size: 16px;
            color: #fff;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Carousel container section */
        .block-galeria-carousel {
            /* flex: 1;
            min-width: 280px; */
        }

        /* Carousel wrapper */
        .block-galeria-carousel .f-carousel {
            position: relative;
            width: 100%;
        }

        /* Individual carousel slides */
        .block-galeria-carousel .f-carousel__slide {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-color: #fff;
            border: 1px solid #a97a28d8;
            
        }

        /* Hover effect for slides */
        .block-galeria-carousel .f-carousel__slide:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        /* Image inside carousel slides */
        .block-galeria-carousel .f-carousel__slide img {
            width: 100%;
            height: calc(100vh / 2 );
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        /* Image hover effect */
        .block-galeria-carousel .f-carousel__slide:hover img {
            transform: scale(1.05);
        }

        /* Responsive styles for tablets */
        @media (max-width: 768px) {
            .block-galeria {
                padding: 40px 0;
            }

            .block-galeria-boxes {
                gap: 30px;
            }

            .block-galeria-text .title {
                font-size: 26px;
                margin-bottom: 15px;
            }

            .block-galeria-text .description {
                font-size: 15px;
            }

            .block-galeria-carousel .f-carousel__slide img {
                height: 250px;
            }
        }

        /* Responsive styles for mobile */
        @media (max-width: 576px) {
            .block-galeria {
                padding: 30px 0;
            }

            .block-galeria-container {
                padding: 0 15px;
            }

            .block-galeria-boxes {
                gap: 20px;
                flex-direction: column;
            }

            .block-galeria-text {
                width: 100%;
                padding: 0;
            }

            .block-galeria-text .title {
                font-size: 22px;
                margin-bottom: 12px;
            }

            .block-galeria-text .description {
                font-size: 14px;
            }

            .block-galeria-carousel {
                width: 100%;
            }

            .block-galeria-carousel .f-carousel__slide img {
                height: 200px;
            }
        }