
body {
    margin: 0;
    font-family: sans-serif;
    background: white;
    color: black;
}

.logo {
    font-family: "Cal Sans", sans-serif;
    font-size: 24px; 
    font-weight: 400; 
}

a { text-decoration: none; color: inherit; }

.navbar {
    background: red;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.navbar li a {
    color: none;
}

.hero {
    background: url('images/pozadina.jpg') center/cover no-repeat;  
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;  
    background-color: black;
}

.cta-button {
    background: red;
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
    display: inline-block;
    border-radius: 5px;
}

.section {
    padding: 60px 20px;
    text-align: center;
}

.services, .pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service, .price-card {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.service img, .gallery img {
    width: 100%;
    border-radius: 10px;
}

.reviews blockquote {
    font-style: italic;
    margin: 10px auto;
    max-width: 600px;
    padding: 20px;
    background: #f1f1f1;
    border-left: 5px solid red;
}

.kontakt form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.kontakt input, .kontakt textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.kontakt button {
    background: red;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.kontakt .info {
    margin-top: 30px;
}

.mobile-nav {
  background: #111;
  padding: 1rem;
  position: relative;
  color: white;
}

.menu-toggle {
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  padding: 0;
  max-height: 0;
  position: absolute;
  top: 100%;
  right: 0;
  width: 150%
  display: none;
  transition: opacity 0.3s ease;
  background-color: #222;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 20px
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.nav-links.open {
  max-height: 300px;
  padding: 20px;
  display: flex;
  opacity: 1;
  pointer-events: auto;
  right: -30px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.nav-links a:hover {
  background-color: red;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    width: auto;
    display: flex;
    justify-content: center;
    background: transparent;
    flex-direction: row;
  }

  .nav-links li {
    border: none;
  }

  .nav-links a {
    padding: 10px 15px;
  
  }
}
