/* Özkur İnşaat Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #f8f9fa;
}

/* Custom colors based on Tailwind config */
.text-primary { color: #2d3748; }
.bg-primary { background-color: #2d3748; }
.text-secondary { color: #d4a373; }
.bg-secondary { background-color: #d4a373; }
.text-accent { color: #d6ad60; }
.bg-accent { background-color: #d6ad60; }

/* Micro animations */
.hover-scale {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-scale:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #d6ad60;
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Glassmorphism */
.glass-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Filter buttons */
.filter-btn {
  transition: all 0.3s ease;
}
.filter-btn.active {
  background-color: #2d3748;
  color: white;
  border-color: #2d3748;
}
