/* Custom styles for KLEINS REAL ESTATE */

/* Base styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f3f4f6; /* light gray */
}

/* Header styles */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo styles */
.header-logo {
  filter: brightness(0) invert(1);
}

/* Navigation styles */
.nav-link {
  color: #6b7280; /* gray-500 */
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.text-primary {
  color: #1e3a8a; /* primary navy */
}

/* Button styles */
.btn-primary {
  background-color: #1e3a8a; /* primary navy */
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #1e3a8a; /* darker navy */
}

.btn-secondary {
  background-color: #f59e0b; /* secondary gold */
  color: #1e3a8a; /* primary navy */
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #d97706; /* darker gold */
}

/* Card styles */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Form styles */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db; /* gray-300 */
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #1e3a8a; /* primary navy */
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2); /* primary navy with opacity */
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #ef4444; /* red-500 */
}

/* Property card styles */
.property-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Footer styles */
footer {
  background-color: #1e3a8a; /* primary navy */
  color: white;
}

/* Footer logo styles */
.footer-logo {
  filter: brightness(0) invert(1);
}

footer a {
  color: #d1d5db; /* gray-300 */
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
  
  .desktop-menu {
    display: none;
  }
}

/* Animation utilities */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Utility classes */
.text-primary {
  color: #1e3a8a; /* primary navy */
}

.bg-primary {
  background-color: #1e3a8a; /* primary navy */
}

.text-secondary {
  color: #f59e0b; /* secondary gold */
}

.bg-secondary {
  background-color: #f59e0b; /* secondary gold */
}

.bg-light {
  background-color: #f3f4f6; /* light gray */
}