@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
  --primary-color: #4f46e5; /* Modern İndigo */
  --secondary-color: #1f2937; /* Koyu Gri */
  --accent-color: #10b981; /* Yeşil */
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f3f4f6;
  color: #333;
}

/* Navbar Ayarları */
.navbar {
    background: linear-gradient(to right, #1e293b, #334155) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Hero (Karşılama) Alanı */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338ca 100%);
    color: white;
    padding: 80px 0;
    border-radius: 0 0 20px 20px;
    margin-bottom: 40px;
    margin-top: -20px; /* Navbar ile birleşmesi için */
}

/* Kart Tasarımları */
.service-card {
    border: none;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-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);
}

.service-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Footer */
.footer {
    background-color: white;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
}