@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/SourceSans3-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Set height to 100% for body and html to enable the background image to cover the whole page: */
body, html {
  height: 100%;
  font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
}

.bgimg {
  /* Background image */
  background-image: url('../images/hotel-sumadija-arandjelovac.jpg');
  /* Full-screen */
  height: 100%;
  /* Center the background image */
  background-position: center;
  /* Scale and zoom in the image */
  background-size: cover;
  /* Add position: relative to enable absolutely positioned elements inside the image (place text) */
  position: relative;
  /* Add a white text color to all elements inside the .bgimg container */
  color: white;
  /* Add a font */
  font-family: "Courier New", Courier, monospace;
  /* Set the font-size to 25 pixels */
  font-size: 25px;
}

/* Katamare style header */
.katamare-header, .katamare-header * {
  box-sizing: border-box;
}

.katamare-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.5;
}

.top-bar {
  background-color: #001242; /* Deep Navy */
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
  color: #fff;
  position: relative;
  font-size: 13px;
  align-items: center;
  border-bottom: 1px solid #d4af37;
  height: 40px;
}

.contact-item {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-bar-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.lang, .social-icon {
  cursor: pointer;
}

.nav-bar {
  background-color: rgba(0, 18, 66, 0.6); /* Deep Navy transparent */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  height: 90px;
  position: relative;
}

.nav-left, .nav-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
  gap: 30px;
}

.nav-right {
  justify-content: flex-end;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #d4af37;
}

.nav-logo {
  text-align: center;
  color: #fff;
  position: absolute !important;
  left: 50%;
  transform: translateX(-50%);
}

.top-stars {
  position: absolute !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #d4af37;
  font-size: 12px;
  letter-spacing: 3px;
  white-space: nowrap;
}

.logo-box {
  display: inline-block;
  line-height: 1.2;
}

.logo-icon {
  font-size: 20px;
  color: #d4af37;
  display: block;
  margin-bottom: 2px;
}

.logo-text {
  font-size: 20px;
  letter-spacing: 4px;
  font-weight: 400;
}

.logo-stars {
  font-size: 10px;
  color: #d4af37;
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 5px;
  opacity: 0.8;
}

/* Position text in the bottom-left corner */
.bottomleft {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 18, 66, 0.6); /* Deep Navy transparent */
  padding: 8px 50px;
  box-sizing: border-box;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  color: #fff;
}

/* Subtle background pattern for header and footer */
.nav-bar::before, .bottomleft::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../images/patern.png');
  background-size: 200px;
  opacity: 0.08;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 0;
}

.top-bar > *, .nav-bar > *, .bottomleft > * {
  position: relative;
  z-index: 1;
}

/* Position text in the middle */
.middle {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 1200px;
}

/* Style the <hr> element */
hr {
  margin: auto;
  width: 40%;
}

.info-text {
  margin-top: 30px;
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 10px;
  font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
  text-align: justify;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.info-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.info-text p:last-of-type {
  margin-bottom: 30px;
}

.btn-prijavi-se {
  display: inline-block;
  padding: 15px 30px;
  background-color: #CAB17F; /* Gold color */
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  transition: background-color 0.3s;
}

.btn-prijavi-se:hover {
  background-color: #A99264; /* Darker Gold for hover */
}