/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", system-ui, sans-serif;
  color: #111;
  line-height: 1.6;
  min-height: 100vh;


  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.6), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.4), transparent 40%),
    url("../IMG/pozadina-pocetna.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


.container {
  width: min(1100px, 90%);
  margin: auto;
}

a,
a:visited,
a:hover,
a:active,
a:focus {
  color: #111;        /* ili #000 */
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}


/* ================= HEADER ================= */
.header {
  height: 90px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.menu-btn {
  width: 46px;
  height: 46px;
  border: 1.5px solid #111;
  border-radius: 18px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-btn:hover {
  border-color: #c9a55c;
}

.menu-btn span {
  width: 20px;
  height: 1.5px;
  background: #111;
  transition: 0.3s;
}

/* ================= MENU ================= */
.menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.menu.active {
  display: flex;
}

.menu-content {
  background: #fff;
  padding: 50px 40px;
  border-radius: 28px;
  width: min(400px, 90%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  animation: fadeScale 0.4s ease forwards;
}

.menu-content a {
  padding: 14px 20px;
  border: 1.5px solid #111;
  border-radius: 20px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.menu-content a:hover {
  background: #111;
  color: #fff;
}

.close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border: 1.5px solid #111;
  border-radius: 14px;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.close-menu:hover {
  background: #111;
  color: #fff;
}

/* ================= HERO ================= */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 70px;
  text-align: center;
}

.logo img {
  max-width: 900px;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease forwards;
}

.btn-primary {
  background: transparent;
  color: #111;
  padding: 14px 44px;
  border-radius: 40px;
  font-weight: 500;
  border: 1.5px solid #c9a55c;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background: #c9a55c;
  color: #fff;
  transform: translateY(-2px);
}

/* ================= DIVIDER ================= */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a55c, transparent);
  width: 100%;
}

/* ================= CONTACT ================= */
.contact-section {
  padding: 120px 0;
}

.contact-title {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.info-item span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
  display: block;
  margin-bottom: 8px;
}

.info-item a,
.info-item p {
  font-size: 20px;
  font-weight: 400;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 24px;
  background: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c9a55c;
  outline: none;
}

.contact-form textarea {
  min-height: 170px;
}

/* ================= MAP ================= */
.map-section iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

/* ================= FOOTER ================= */
.footer {
  padding: 70px 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.7;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

  /* HERO spacing */
  .hero {
    min-height: auto;
    padding: 60px 20px 40px;
    gap: 40px;
  }

  /* LOGO – pravilno skaliranje */
  .logo img {
    max-width: 85%;
    height: auto;
  }

  /* Dugme malo kompaktnije */
  .btn-primary {
    padding: 12px 32px;
    font-size: 13px;
  }

  /* CONTACT */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-section {
    padding: 80px 0;
  }

  .contact-title {
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 60px;
  }

  /* MAP */
  .map-section iframe {
    height: 380px;
  }

}

@media (max-width: 480px) {

  .logo img {
    max-width: 75%;
  }

  .hero {
    padding-top: 40px;
  }

}

