/* ONE WORLD PROPERTY - Custom Styles */

:root {
  --primary-color: #082B5A;
  --secondary-color: #D4A62A;
  --bg-color: #FFFFFF;
  --text-color: #333333;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
}

/* Header & Navbar */
.navbar {
  background-color: var(--bg-color) !important;
}
/* Brand Logo & Typography */
.brand-logo-img {
  max-height: 45px;
  transition: all 0.3s ease;
}
.brand-text-primary {
  color: var(--primary-color);
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-family: 'Cinzel', serif;
  font-weight: 700 !important;
}
.brand-text-secondary {
  color: var(--secondary-color);
  font-size: 0.75rem;
  letter-spacing: 5px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  margin-top: -4px !important;
}

@media (min-width: 992px) {
  .brand-logo-img {
    max-height: 60px;
  }
  .brand-text-primary {
    font-size: 1.9rem;
  }
  .brand-text-secondary {
    font-size: 0.95rem;
    letter-spacing: 6px;
  }
}
.navbar-nav .nav-link {
  color: var(--primary-color) !important;
  font-weight: 500;
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover {
  color: var(--secondary-color) !important;
}
.btn-gold {
  background-color: var(--secondary-color);
  color: #fff;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s;
}
.btn-gold:hover {
  background-color: #b58c22;
  color: #fff;
}
.btn-outline-gold {
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  font-weight: 600;
}
.btn-outline-gold:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: url('../images/hero-bg.png') no-repeat center center/cover;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(8, 43, 90, 0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Advanced Search Box */
.search-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-top: -80px;
  position: relative;
  z-index: 10;
}
.search-box .form-control, .search-box .form-select {
  border-radius: 5px;
  border: 1px solid #ddd;
}

/* Property Cards */
.property-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.property-card .card-img-top {
  height: 220px;
  object-fit: cover;
}
.property-card .price {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
}
.property-card .badge-featured {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary-color);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
}
.property-card .badge-purpose {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Sections */
.section-title {
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}
.section-title::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: var(--secondary-color);
  bottom: -10px;
  left: 25%;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 60px 0 20px;
}
footer a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: #d4af37; /* Gold */
}
.footer-title {
  color: #d4af37; /* Gold */
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.footer-social-icons a {
  color: #d4af37;
  transition: transform 0.3s, color 0.3s;
}
.footer-social-icons a:hover {
  color: #fff;
  transform: translateY(-3px);
  display: inline-block;
}
