/* =====================================================
   GLOBAL STYLE
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8fafc;
  color: #1f2937;
}

html {
  scroll-behavior: smooth;
}

/* =====================================================
   NAVBAR
===================================================== */
.custom-navbar {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.custom-navbar.scrolled {
  background: #0f172a !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.nav-hidden {
  transform: translateY(-100%);
}

.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  padding: 8px 15px;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #facc15 !important;
}

.btn-kontak {
  background: #facc15;
  color: #111827 !important;
  border-radius: 30px;
  padding: 6px 18px;
  font-weight: 600;
}

/* BRAND */
.brand-text {
  font-weight: 700;
  font-size: 22px;
  color: #fff;
}

.brand-text span {
  color: #facc15;
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 20px 60px;
}

.hero-content {
  text-align: center;
  animation: fadeInUp 1.2s ease;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.hero .btn {
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.hero .btn:hover {
  transform: translateY(-4px);
}

/* BUTTON STYLE */
.btn-warning {
  background: linear-gradient(45deg,#facc15,#f59e0b);
  border: none;
  color: #111827;
}

/* =====================================================
   PROPERTY SECTION
===================================================== */
.properties {
  background: #f9fafb;
}

.property-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.property-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.property-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.property-info p {
  margin: 3px 0;
  color: #555;
}

/* =====================================================
   INSTAGRAM SECTION
===================================================== */
.instagram {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}

.instagram h2 {
  color: #facc15;
}

.insta-gallery img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.insta-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* =====================================================
   CONTACT SECTION
===================================================== */
#contact {
  background: #111827;
}

#contact h2 {
  color: #facc15;
  margin-bottom: 10px;
}

#contact p {
  color: #d1d5db;
}

/* =====================================================
   FOOTER
===================================================== */
footer {
  background: #0f172a;
  color: #ffffff;
}

footer img {
  width: 50px;
  opacity: 0.9;
}

/* =====================================================
   ANIMATION
===================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .navbar .nav-link {
    text-align: center;
  }
}
