:root {
  --background-beige: #fffaf0;
  --blue: #67C8CA;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--background-beige);
  color: #2a2a2a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #2a2a2a;

}

.navbar-nav .nav-link:hover {
  color: var(--blue);
}

.navbar .btn-outline-secondary {
  border-color: var(--blue);
  color: var(--blue);
}

.navbar .btn-outline-secondary:hover {
  background-color: var(--blue);
  color: white;
}

.nav-item {
  list-style-type: none;
}

.lang li {
  text-transform: uppercase;
}
a #langDropdown {
  text-transform: uppercase;
}
.floating-book-now {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: var(--blue);
  color: white !important;
  /*border-radius: 50px;
  padding: 12px 20px;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background-color: #c46c52;
  color: white;
  text-decoration: none;*/
}

.floating-book-now:hover {
  border-color: var(--blue);
  color: var(--blue) !important;
  text-decoration: none;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.15rem;
}

.img-clip {
  clip-path: inset(0 round 12px);
}

.highlight {
  color: var(--blue);
}

.btn-book {
  border-color: var(--blue);
  color: var(--blue);
}

.hero {
  background-image: url('/img/bkg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
}


/* Floating animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.delay-1 {
  animation-delay: 0s;
}

.delay-2 {
  animation-delay: 2s;
}

.title-up {
  letter-spacing: .2em;
  color: var(--blue);
}

.amenity-card {
  border: 1px solid #eee;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
  border-color: #e6dccd;
}

.carousel-item img {
  width: auto;
  max-height: 90vh;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

.carousel .slide {
  background-color: black;
  opacity: 0.5;
}

.gallery-thumb {
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.gallery-thumb:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
}

.gallery-full {
  width: auto;
  max-height: 90vh;
  margin: 0 auto;
  object-fit: contain;
}

#galleryModal .modal-content {
  background: #f6f2ea !important;
}

#galleryModal .modal-body {
  background: #f6f2ea !important;
}

#galleryModal .modal-dialog {
  background: #f6f2ea !important;
}

.modal-backdrop.show {
  opacity: 0.4;
  /* možeš promijeniti */
  background-color: #f6f2ea !important;
}

#galleryModal .btn-close-white {
  filter: invert(53%) sepia(27%) saturate(3000%) hue-rotate(337deg) brightness(85%) contrast(90%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(53%) sepia(27%) saturate(3000%) hue-rotate(337deg) brightness(85%) contrast(90%);
}
/* Carousel strelice — vidljive na svim ekranima */
.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border-radius: 50%;
  opacity: 1 !important;
}

.carousel-control-prev { left: 12px; }
.carousel-control-next { right: 12px; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

.contact-form { background:#f6f2ea; }

.page-hero{
  min-height: 42vh;
  display:flex;
  align-items:center;
  background: url('/images/bkg-about.jpg') center 30%/cover no-repeat;
  position: relative;
  color: #fff;
}
.page-hero::after{
  content:"";
  position:absolute; inset:0;
  background: rgba(0,0,0,.35);
}
.page-hero .container{ position:relative; z-index:1; }

