/* Modern Emlak - Global Styles */
:root {
  --primary: #1a6070;
  --primary-dark: #134d5a;
  --accent-gold: #d4b996;
  --background-light: #f9f9f6;
  --background-dark: #212936;
  --surface-light: #ffffff;
  --surface-dark: #2a3441;
  --text-main: #0f181a;
  --text-secondary: #6b7280;
  --border-light: #e0e0db;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background-color: var(--background-light);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Utility Classes */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  padding: 0.625rem 1.25rem;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: scale(1.02);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.625rem 1.25rem;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-gold {
  background-color: var(--accent-gold);
  color: white;
}

.btn-gold:hover {
  background-color: #c3a47d;
}

/* Card Styles */
.card {
  background: var(--surface-light);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* Form Styles */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  background: var(--background-light);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 96, 112, 0.1);
}

/* Animation Classes */
.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Map Grayscale Effect */
.map-grayscale {
  filter: grayscale(100%) contrast(1.1) brightness(1.1);
  transition: filter 0.3s ease;
}

.map-grayscale:hover {
  filter: grayscale(0%);
}

/* Material Symbols */
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.icon-filled {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}
