* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Raleway', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.top-bar {
  background: #111;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
}

header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background-color: #2bdbcc;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #2bdbcc;
}

nav a:hover::after {
  width: 100%;
}

.hero {
  background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
              url('image/kontakt.jpg') center/cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 36px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #2bdbcc;
  color: white;
  text-decoration: none;
  border-radius: 3px;
}

.services {
  display: flex;
  text-align: center;
}

.service-box {
  flex: 1;
  padding: 60px 20px;
  background: #f4f4f4;
  cursor: pointer;
  transition: 0.3s;
}

.service-box:hover {
  background: #2bdbcc;
  color: white;
}

.about {
  display: flex;
  padding: 80px 0;
  gap: 40px;
}

.about img {
  width: 100%;
  border-radius: 6px;
}

.about-text h4 {
  color: #2bdbcc;
}

.btn-outline {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  border: 2px solid #2bdbcc;
  color: #2bdbcc;
  text-decoration: none;
}

.info {
  background: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

.contact {
  background: #111;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
}

.contact input,
.contact textarea {
  margin: 10px 0;
  padding: 10px;
}

.contact button {
  padding: 12px;
  background: #2bdbcc;
  border: none;
  color: white;
  cursor: pointer;
}

footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 20px 0;
}

/* STICKY HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* BACK TO TOP BUTTON */

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background-color: #c7a17a;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#backToTop:hover {
  background-color: #b48d66;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

/* LOGO */ 

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  font-weight: bold;
}

.logo img {
  height: 50px;   /* možeš menjati veličinu */
  width: auto;
}




body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  background: #f8f9fb;
  color: #333;
}

/* HERO SEKCIJA */
.hero-bio {
  background: linear-gradient(135deg, #dbeafe, #f0f4ff);
  padding: 100px 20px;
  text-align: center;
}

.hero-bio h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.subtitle {
  font-weight: 300;
  font-size: 18px;
  color: #555;
}

/* BIO SEKCIJA */
.bio-section {
  padding: 80px 20px;
}

.bio-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.bio-image img {
  width: 350px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bio-text {
  flex: 1;
}

.bio-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.bio-text p {
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Highlights */
.bio-highlights {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.highlight {
  background: white;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  font-size: 14px;
}

.menu-toggle {
  display: none;
}
/* ============================= */
/* MOBILE RESPONSIVE DESIGN */
/* ============================= */

@media (max-width: 768px) {

  .container {
    width: 92%;
  }

  /* HERO */

  .hero {
    height: 75vh;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  /* NAVIGATION */

  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }

  nav {
    position: absolute;
    top: 80px;
    right: 0;
    background: white;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  nav a {
    padding: 15px 0;
    display: block;
  }

  nav.active {
    display: flex;
  }

  /* SERVICES */

  .services-container {
    flex-direction: column;
  }

  .service-box {
    margin-bottom: 20px;
  }

  /* ABOUT */

  .about {
    flex-direction: column;
    text-align: center;
  }

  .about img {
    width: 100%;
    max-width: 300px;
  }

  /* ART SECTION */

  .art-container {
    flex-direction: column;
    text-align: center;
  }

  .art-image img {
    width: 100%;
    max-width: 350px;
  }

  /* GALLERY */

  .gallery-container {
    flex-direction: column;
  }

  .gallery img {
    width: 100%;
  }

  /* CONTACT */

  .contact form {
    width: 100%;
  }

  .contact input,
  .contact textarea {
    width: 100%;
  }

}

/* ========================= */
/* HEADER ANIMACIJA */
/* ========================= */

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 25px 0;
  transition: all 0.4s ease;
  background: white;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.logo img {
  height: 55px;
  transition: all 0.4s ease;
}

.logo span {
  font-size: 22px;
  transition: all 0.4s ease;
}

/* Kada se skroluje */

header.scrolled {
  background: white;
  padding: 12px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

header.scrolled .logo img {
  height: 40px;
}

header.scrolled .logo span {
  font-size: 18px;
}



.contact-grid{
display:flex;
gap:60px;
align-items:flex-start;
justify-content:center;
flex-wrap:wrap;
}

.contact-info{
max-width:300px;
}

.contact-info h2{
margin-bottom:20px;
}

.contact-item{
margin-bottom:20px;
font-size:16px;
}

.contact-item strong{
display:block;
margin-bottom:5px;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
max-width:400px;
}

.contact-form input,
.contact-form textarea{
padding:12px;
border:1px solid #ccc;
border-radius:5px;
font-family:inherit;
}

.contact-form button{
padding:12px;
border:none;
background:#333;
color:white;
cursor:pointer;
border-radius:5px;
}

.contact-form button:hover{
background:#555;
}