/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: #111;
  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;
}

a {
  text-decoration: none;
  color: #111;
}

.container {
  width: min(1100px, 90%);
  margin: auto;
}

/* ================= 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: 0.3s;
}

.menu-btn span {
  width: 20px;
  height: 1.5px;
  background: #111;
}

/* ================= 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;
}

.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);
}

.menu-content a {
  padding: 14px 20px;
  border: 1.5px solid #111;
  border-radius: 20px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s;
}

.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;
  cursor: pointer;
}

/* ================= PRICING HERO ================= */
.pricing-hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.pricing-title {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.pricing-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
}


.pricing-buttons {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-btn {
  padding: 18px 60px;
  border-radius: 50px;
  border: 1.5px solid #c9a55c;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: 0.4s;
}


.pricing-btn:hover {
  background: #c9a55c;
  color: #fff;
}

/* ================= LOGO ================= */
/* Link koji drži logo */
a.logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 10px 0 0;
}

/* Pošto ti je klasa na <img>, target je .logo (ne .logo img) */
.logo {
  width: 400px;          /* smanji/povecaj po potrebi */
  height: auto;
  display: block;

}

/* Hover efekat */
a.logo-link:hover .logo {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 26px 70px rgba(0,0,0,0.18);
  background: rgba(255, 255, 255, 0.70);
}

/* Mobile */
@media (max-width: 768px) {
  .logo {
    width: 250px;
    padding: 8px 12px;
    border-radius: 18px;
  }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .pricing-title {
    font-size: 36px;
  }

  .pricing-buttons {
    flex-direction: column;
    gap: 20px;
  }
}
