/* Reset i osnovni stilovi */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5em;
}

a {
  color: #352f2f;
  text-decoration: none;
  font-size: 20px;
}

h1, h2, h3 {
  padding-bottom: 20px;
  text-align: center;
  font-size: 30px;
  line-height: 1.3em;
}

p {
  margin: 10px;
}

ul li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 18px;
}

ul li i {
  color: #c8b827;
  margin-right: 10px;
}

/* Utility klase */
.container {
  margin: auto;
  max-width: 1100px;
  overflow: auto;
  padding: 0 20px;
}
#phone-error {
  color: red;
  font-size: 14px;
  display: none;  /* Početno skrivena */
}

.text-primary { color: #352f2f; }

.lead { font-size: 20px; }

.btn, .btn-light, .btn-booking {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn {
  font-size: 18px;
  color: #230404;
  background: #7a6a39;
  padding: 13px 20px;
}

.btn:hover {
  background: #9d980b;
  color: #302323;
}

.btn-light {
  background: #c8b827;
  color: #222;
  font-size: 30px;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: justify;
  line-height: 1.2;
}

.btn-booking {
  background-color: #0071c2;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
}

.btn-booking:hover {
  background-color: #e4b20c;
}

.bg-dark { background: #928e8e; color: #d7a913; }
.bg-light { background: #e0ac01; color: #333; }
.bg-primary { background: #f7c08a; color: #333; }
.clr { clear: both; }
.l-heading { font-size: 50px; }

/* Padding */
.py-1 { padding: 10px 0; }
.py-2 { padding: 20px 0; }
.py-3 { padding: 30px 0; }

/* Navbar */
#navbar {
  background: #928e8e;
  color: #f2ac09;
  font-size: 10px;
}
/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


#navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 1px;
}

#navbar a {
  color: #e8b10c;
}

#navbar h1 {
  padding: 1px 0;
}

#navbar ul {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

#navbar ul li a {
  display: block;
  padding: 5px 10px;
  text-align: center;
}

#navbar ul li a:hover, 
#navbar ul li a.current {
  background: #9e9898;
  color: #b78e08;
}
/* Reset i osnovni stilovi */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

/* NAVIGACIJA */
header {
  background-color: #333;
  color: white;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo a {
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
}

/* Hamburger ikona */
.menu-toggle {
  font-size: 1.5em;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none;
}

/* Navigacija */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: rgb(228, 190, 34);
  text-decoration: none;
  padding: 0.5rem;
}

.nav-links li a:hover,
.nav-links li a.current {
  background-color: #e6c211;
  border-radius: 4px;
}


/*Showcase*/
#showcase {
  background: url('../images/dnevni_boravak.jpg') no-repeat center center/cover;
  border-radius:3%;
/* Reset i osnovni stilovi */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8e8ef;
  line-height: 1.6;
}

/* Kontakt sekcija */
#contact-form {
  background-color: #fff;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

#contact-form h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

#contact-form p {
  text-align: center;
  margin-bottom: 2rem;
  color: #666;
}

/* Grupiranje polja */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

/* Gumb */
.btn {
  background-color: #333;
  color: white;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #555;
}

/* Mobilna prilagodba */
@media (max-width: 600px) {
  #contact-form {
    padding: 1rem;
    margin: 1rem;
  }

  .btn {
    font-size: 1rem;
  }
}

}

#showcase .showcase-content {
  color: #db9b07;
  text-align: center;
  padding-top: 5px;
}

#showcase .showcase-content h1 {
  font-size: 30px;
  line-height: 1.8rem;
}

#showcase .showcase-content p {
  padding-bottom: 20px;
}

#showcase {
  background: url('../images/dnevni_boravak_pogled.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(224, 181, 12);
  overflow: hidden; /* da ništa ne izlazi van */
}

/* Overlay sloj - mora biti ispod teksta */
#showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(211, 181, 9, 0.3); /* smanji tamu ako treba */
  z-index: 1;
}

/* Sadržaj iznad overlaya */
.showcase-content {
  position: relative;   /* bitno! */
  z-index: 2;           /* iznad overlay-a */
  text-align: center;
  padding: 20px;
  max-width: 800px;
}

.text-primary {
  color: #17150c;
}

.lead {
  font-size: 1.5rem;
  margin: 20px 0;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  background: #00bfff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #c78e15;
}


#about-info {
  background-image: url('./images/dnevni_boravak_pogled.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: rgb(205, 143, 19); /* ako treba bolji kontrast */
}
/* Sekcija sa pozadinskom slikom */
#about-info {
  background-image: url('./images/dnevni_boravak_pogled.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: rgb(225, 164, 31); /* bolji kontrast za tekst */
}

/* Overlay sloj (tamni filter preko slike) */
#about-info .overlay {
  background-color: rgba(0, 0, 0, 0.1); /* crni sloj s 50% providnosti */
  padding: 60px 0;
  width: 100%;
}

/* Ostali stilovi kao ranije */
.about-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.l-heading {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.text-primary {
  color: #ffc107; /* zlatna nijansa kao akcent */
}

/* Responsive */
@media (max-width: 768px) {
  .l-heading {
    font-size: 2rem;
    text-align: center;
  }

  .info-left {
    text-align: center;
  }
}

/* Home Info */
#home-info {
  display: flex;
  flex-wrap: wrap;
  background-color: #0c0b04;
  color: #fff;
}

#home-info .info-img {
  flex: 2;
  background: url('../images/20250501_132847.jpg') no-repeat center center/cover;
  min-height: 100px;
  opacity: 0.9;
}

#home-info .info-content {
  flex: 2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

#home-info .info-content ul {
  margin: 20px 0;
}

#home-info .info-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  font-size: 15px;
}
/* RESET */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
} */

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* NAVBAR */
#navbar {
  background-color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
#navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo a {
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
  color: #00bfff;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.nav-links li a:hover,
.nav-links li a.current {
  color: #00bfff;
  border-bottom: 2px solid #00bfff;
}

/* SHOWCASE SECTION */
#showcase {
  background: url('../images/dnevni_boravak_pogled.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
#showcase::before {
  /* display: none; */
 content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1; 
}
.showcase-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  padding: 20px;
  max-width: 700px;
}
.showcase-content h1 {
  font-size:4 rem;
  margin-bottom: 20px;
}
.text-primary {
  color: #00bfff;
}
.lead {
  font-size: 1.5rem;
  margin: 20px 0;
}
.btn {
  display: inline-block;
  padding: 10px 25px;
  background: #00bfff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}
.btn:hover {
  background: #009acd;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 10px;
  }

  .logo a {
    font-size: 1.6rem;
  }

  .showcase-content h1 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.2rem;
  }

  .btn {
    padding: 8px 20px;
  }
}

/* Features */
#features h3 {
  font-size: 15px;

}
#features {
  font-size: 12px;
}
.box {
  float: left;
  width: 33.3%;
  padding: 10px;
  text-align: center;
}

.box i {
  margin-bottom: 10px;
}

/* Amenity */
.amenity {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.amenity p {
  color: #d8c9c9;
  margin-top: 8px;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 20px;
}

.contact-grid .box {
  flex: 1 1 calc(33.33% - 20px);
  padding: 20px;
  background-color: transparent; /* zadrži pozadinu roditelja */
  color: #fff;
  min-width: 260px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2); /* po želji za kontrast */
  border-radius: 8px;
}

/* TABLETI (2 u redu) */
@media (max-width: 992px) {
  .contact-grid .box {
    flex: 1 1 48%;
  }
}

/* MOBITELI (1 u redu) */
@media (max-width: 600px) {
  .contact-grid .box {
    flex: 1 1 100%;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  padding: 20px;
}

section {
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

section .box {
  flex: 1 1 calc(33.33% - 20px);
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

section .box i {
  margin-bottom: 10px;
  color: #c8b827;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0071c2;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
}

@media (max-width: 992px) {
  section .box {
    flex: 1 1 48%;
  }
}

@media (max-width: 600px) {
  section .box {
    flex: 1 1 100%;
  }
}
/* About / Host Info */
#about-info {
  background-color: #e6aa14;
  padding: 3rem 0;
}

.container {
  width: 80%;
  margin: 0 auto;
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.info-left img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-right {
  flex: 1;
}

.l-heading {
  font-size: 2rem;
  font-weight: bold;
  color:#0f0e0d;
  text-align: center
  ;
}

.text-primary {
  color: #0b0c0d;
  text-align: center;
}

#host-info {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  gap: 40px;
  background-color: #f4f4f4;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

#host-info img {
  width: 60%;
  border-radius: 10%;
}

#host-info .info {
  width: 40%;
}

#host-info .info h1 {
  font-size: 2rem;
  color: #0f0e0d;
}

#host-info .info p {
  font-size: 1.1rem;
  color: #f2ac09;
}

/* Globalne stilove */
/* body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

header {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}

h1 {
  margin: 0;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
} */

.text-primary {
  color: #ddb70f;
}

/* Za sekciju "about-info" */
#about-info .container {
  display: flex;
  align-items: center; /* Centriranje sadržaja po vertikali */
  justify-content: space-between; /* Razmak između slika i teksta */
  flex-wrap: wrap; /* Omogućava prelazak na sljedeći redak na manjim ekranima */
}

#about-info .info-image {
  flex: 0 0 30%; 
  padding-right: 20px; }

#about-info .info-text {
  flex: 0 0 70%; /* Slika će zauzeti 70% širine */
}

#about-info .info.image img {
  width: 100%; /* Slika će zauzeti punu širinu svog okvira */
  height: auto; /* Održava ispravan omjer visine i širine slike */
  display: block;
}

/* Za manja ekrane (mobilne telefone) */
@media (max-width: 768px) {
  #about-info .container {
    flex-direction: column; /* Na manjim ekranima slika i tekst će biti jedan ispod drugog */
    align-items: center; /* Centriranje sadržaja po horizontali */
  }

  #about-info .info-left,
  #about-info .home-info {
    flex: 0 0 100%; /* Svaki element zauzima 100% širine na manjim ekranima */
    padding-right: 0;
  }

  #about-info .info-left {
    padding-right: 0; /* Uklanja razmak između teksta i slike na manjim ekranima */
  }
}

/* Galerija stilovi */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Za najmanje 280px po slici */
  gap: 20px; /* Razmak između slika */
  padding: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Osvježena sjenka */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05); /* Lagano povećanje pri hoveru */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); /* Intenzivnija sjenka pri hoveru */
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Osigurava da slike popune cijeli prostor bez deformacija */
  border-radius: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.1); /* Zoom efekt pri hoveru */
  filter: brightness(1.1); /* Povecavanje svjetline pri hoveru */
}

/* Responsivni dizajn za manja ekrane */
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Smanjenje broja slika po redu */
  }

  .gallery-item {
    border-radius: 8px; /* Manje zaobljeni kutovi na manjim ekranima */
  }
}

/* Lightbox modal stilovi */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Testimonial sekcija */
#testimonials {
  height: 600px;
  background: url('../images/soba_1.2.jpg') no-repeat center center/cover;
  padding-top: 100px;
  color: #fff;
  text-align: center;
}

#testimonials .testimonial {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin: 20px 0;
  border-radius: 5px;
  opacity: 0.9;
}

#testimonials .testimonial img {
  width: 100px;
  border-radius: 50%;
}

/* Global styles */
/* body {
  font-family: Arial, sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  background-color: #dfc206;
} */

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color:#f4f4f4;
}

.l-heading {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.text-primary {
  color: #007BFF;
}

form .form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  min-height: 100px;
}

.btn {
  display: inline-block;
  background-color: #007BFF;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: #0056b3;
}

/* ===== MEDIA QUERIES ===== */

/* Mobile Phones */
@media (max-width: 600px) {
  .l-heading {
    font-size: 1rem;
    text-align: center;
  }

  .btn {
    width: 100%;
    font-size: 1rem;
  }

  input,
  textarea {
    font-size: 0.95rem;
  }
}

/* Tablets */
@media (min-width: 601px) and (max-width: 900px) {
  .l-heading {
    font-size: 2.2rem;
    text-align: center;
  }

  .btn {
    width: 100%;
    font-size: 1.05rem;
  }
}

/* Desktop */
@media (min-width: 901px) {
  .l-heading {
    font-size: 2.5rem;
  }

  .btn {
    width: auto;
    font-size: 1.1rem;
  }
}
#about-info {
  background-color: #f4f4f4;
  padding: 40px 0;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

#about-info {
  background: #f4f4f4;
  padding: 2rem 1rem;
}

#about-info {
  background-color: #f4f4f4;
  padding: 2rem 1rem;
}

.container .about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
#info-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  gap: 40px;
  background-color: #f4f4f4;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  flex-direction: row;
}

#about-image {
  width: 45%;
  background-image: url('../images/Apartman\ Karolina.png');
  border-radius: 10%;
  max-width: 100%;
  height: auto;
}

#about-info .info-text {
  width: 50%;
}

#about-info .info h1 {
  font-size: 2rem;
  color: #0f0e0d;
}

#about-info .info p {
  font-size: 1.1rem;
  color: #f2ac09;
}

@media (max-width: 768px) {
  #host-info {
    flex-direction: column;
  }

  #host .info-img,
  #host-info .info {
    width: 100%;
    text-align: center;
  }

  #host-info .info h1,
  #host-info .info p {
    text-align: center;
  }
}
#about-info {
  display: flex;
  flex-wrap: wrap;
  background-color: #eab526; /* fallback */
}

.info-image {
  flex: 1;
  position: relative;
  min-height: 300px;
  background: url('../images/pogleda_balkon_1.jpg') no-repeat center center/cover;
}

.info-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 16, 14, 0.5); /* tamni overlay */
  z-index: 1;
}

.info-text {
  flex: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #e0bc2c;
  z-index: 2;
  position: relative;
  max-width: 1200px;/* novo */
  margin: auto;     /* centriranje */
  box-sizing: border-box;
}
.l-heading {
  font-size:1rem;
  margin-bottom: 10px;
}

.text-primary {
  color: #dfc206;
}

p {
  line-height: 0.8;
  margin-bottom: 1px;
  text-align: center;
}

/* Mobilni prikaz */
@media (max-width: 768px) {
  #about-info {
    flex-direction: column;
  }

  @media (max-width: 768px) {
    #about-info {
      flex-direction: column;
      padding: 20px;
    }
  
    .info-image,
    .info-text {
      width: 100%;
    }
  
    .info-text {
      padding: 20px;
      max-width: 90%; /* sprječava razvučenost */
      text-align: center;
    }
  
    .l-heading {
      font-size: 0.8rem;
    }
  
    p {
      font-size: 0.7rem;
    }
  }
}
#about-info {
  background-color: #eab526;
}

.info-container {
  display: flex;
  flex-wrap: wrap; /* prilagodljivo za mobilne */
  align-items: stretch;
}

.info-image {
  flex: 1;
  min-height: 400px;
  background: url('../images/pogleda_balkon_1.jpg') no-repeat center center/cover;
  position: relative;
}

.info-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 16, 14, 0.2);
  z-index: 1;
}

.text-overlay {
  flex: 1;
  padding: 40px;
  position: relative;
  z-index: 2;
  color: #171302;
  text-align: left;
}

.l-heading {
  font-size: 2rem;
  margin-bottom: 20px;
}

.text-primary {
  font-size: 0.8em;
  color: #131105;
  line-height: 1.6em;
}

/* Mobilni prikaz */
@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
  }

  .text-overlay {
    text-align: center;
  }
}

  /* #about-info {
    display: block;
    background-color: #eab526;
  }
}
  .info-image {
    position: relative;
    min-height: 400px;
    background: url('../images/pogleda_balkon_1.jpg') no-repeat center center/cover;
    /* display: flex; */
    /* align-items: center;
    justify-content: center;
  }
} */
   /* .info-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 16, 14, 0.2); tamni overlay}
  /* .info-image {
    position: relative;
    background: url('../images/pogleda_balkon_1.jpg') no-repeat center center/cover;
    padding: 60px 20px; /* prostor za tekst */
    /* display: flex;  */
    /* align-items: center;
    justify-content: center;
  } 
   */ 
  /* .text-overlay {
    position: relative;
    z-index: 1
    ;
    color: #dbb20e;
    text-align: center;
    padding: 40px;
    max-width: 90%;}
    
  .l-heading {
    font-size: 2rem;
    margin-bottom: 20px; /* povećano sa 10px */
/*  */
/*   
  .l-heading {
    font-size: 2rem;
    margin-bottom: 10px;
  } */
  
  /* .text-primary {
    font-size: 1.2rem;
    color: #dfc206;
    line-height: 0.8em;} */
  /* .text-primary {
      font-size: 1.2rem;
      color: #dfc206;
      line-height: 1.6em; /* povećano sa 0.8em */
    /* } */ */
  
  
  /* Mobilni prikaz */
  /* @media (max-width: 768px) {
    .l-heading {
      font-size: 2rem;
    }
  
    .text-primary {
      font-size: 1.5rem;
      line-height: 1.8rem;
    }
  }  */
  
/* Footer */
#main-footer {
  text-align: center;
  background: #444;
  color: #fff;
  padding: 20px;
}

/* Scroll Animacije */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive dizajn */
@media (max-width: 768px) {
  #navbar .container,
  #navbar ul {
    flex-direction: column;
    align-items: center;
  }

  #navbar ul li a {
    width: 100%;
    padding: 10px;
  }

  #home-info {
    flex-direction: column;
    
  }
  
  #home-info .info-img {
    width: 100%;
    min-height: 250px;
  }

  .amenity {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  #about-info .container {
    flex-direction: column;
    align-items: center;
  }

  .info-left, .home-info {
    width: 100%;
    padding: 10px;
  }

  .testimonial {
    flex-direction: column
  }}
  #home-info .info-content {
    flex: 2;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 8px;
}
/* Reset i osnovni stilovi */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

/* Reset i osnovni stilovi */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8e8ef;
  line-height: 1.6;
}

/* Kontakt sekcija */
#contact-form {
  background-color: #e7a61a;
  padding: 2em;
  margin: 1em auto;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

#contact-form h1 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 1em;
}

#contact-form p {
  text-align: center;
  margin-bottom:1em;
  color: #666;
}

/* Grupiranje polja */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

/* Gumb */
.btn {
  background-color: #333;
  color: white;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #555;
}

/* Mobilna prilagodba */
@media (max-width: 600px) {
  #contact-form {
    padding: 1rem;
    margin: 1rem;
  }

  .btn {
    font-size: 1rem;
  }
}
/* Reset i osnovni stilovi */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8e8ef;
  line-height: 1.6;
}

