/* by Majed Developer Solution © 2025 */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  background: #ffffff;
  color: #111;
}

/* HERO */
.hero {
  background: #ffffff;
  text-align: center;
  padding: 35px 15px 25px;
  border-bottom: 1px solid #e5e5e5;
}

.hero-logo {
  width: 230px;
  max-width: 80%;
  display: block;
  margin: 0 auto 10px;
}

.hero-title {
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: 1px;
  color: #111;
}

.hero-sub {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* MAIN WRAPPER */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 15px 40px;
}

.section {
  margin-bottom: 30px;
}

.section-title {
  font-size: 20px;
  margin: 0 0 18px;
  color: #c9a15a;
  text-align: right;
}

/* PROPERTY GRID */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.property-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 16px 14px 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  direction: rtl;
  text-align: right;
}

.property-title {
  margin: 0 0 8px;
  font-size: 17px;
  color: #c9a15a;
}

.property-meta {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.property-meta span {
  display: inline-block;
  margin-left: 8px;
}

.property-media {
  margin: 8px 0 10px;
}

.property-media video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #000;
}

.property-text {
  margin: 4px 0;
  font-size: 13px;
  line-height: 1.8;
}

.property-price {
  margin-top: 8px;
  font-weight: 600;
  font-size: 13px;
  color: #222;
}

.placeholder {
  border: 1px dashed #d6d6d6;
  background: #fbfbfb;
}

.placeholder-note {
  margin-top: 8px;
  font-size: 12px;
  color: #777;
  border-top: 1px dashed #e2e2e2;
  padding-top: 6px;
}

/* ABOUT */
.about {
  background: #f6f6f6;
  padding: 25px 15px;
  border-top: 1px solid #e5e5e5;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  direction: rtl;
  text-align: right;
}

.about h2 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #c9a15a;
}

.about p {
  margin: 4px 0;
  font-size: 14px;
  line-height: 1.9;
  color: #444;
}

/* CONTACT */
.contact {
  background: #ffffff;
  padding: 25px 15px 35px;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  direction: rtl;
  text-align: right;
}

.contact h2 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #c9a15a;
}

.contact-line {
  margin: 4px 0;
  font-size: 14px;
}

.contact-line a {
  color: #111;
  text-decoration: none;
}

.contact-line a:hover {
  text-decoration: underline;
}

.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #222;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.contact-wa-icon {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

/* FOOTER */
.footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 14px 10px;
  font-size: 12px;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  left: 22px; /* levo zbog RTL, ako želiš desno promeni na right */
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
}

.whatsapp-icon {
  width: 58px;
  height: 58px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-logo {
    width: 190px;
  }

  .hero-title {
    font-size: 22px;
  }

  .wrapper {
    padding: 20px 12px 30px;
  }

  .property-card {
    padding: 14px 12px 16px;
  }

  .whatsapp-float {
    bottom: 16px;
    left: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-icon {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 20px;
  }

  .hero-sub {
    font-size: 13px;
  }

  .section-title {
    font-size: 18px;
  }
}
