/* Main Stylesheet for ValueHomes */
:root {
  --primary-color: #0d6efd;
  --secondary-color: #6c757d;
  --dark-color: #212529;
  --light-color: #f8f9fa;
  --success-color: #198754;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #ffffff;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #0b5ed7;
}

/* Header Styles */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 0;
  text-align: center;
  border-radius: 0.5rem;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Property Cards */
.property-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.property-card .card-body {
  padding: 1.5rem;
}

.property-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Services Section */
.service-box {
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: var(--light-color);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.service-box:hover {
  background-color: var(--primary-color);
  color: white;
}

.service-box h3 {
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form .form-control {
  margin-bottom: 1.5rem;
}

.contact-form textarea {
  min-height: 150px;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .property-card {
    margin-bottom: 1.5rem;
  }
}