/* Google Fonts Import - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Renk Paleti - Kurumsal ve Güven Veren */
  --primary: #1e3a5f; /* Daha kurumsal bir lacivert */
  --primary-light: #2c5282;
  --secondary: #eab308; /* Daha profesyonel bir altın sarısı */
  --secondary-hover: #ca8a04;
  --accent: #f59e0b;
  
  --background: #f8fafc;
  --surface: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #475569;
  --text-light: #f8fafc;
  
  /* Gölgeler - Daha hafif ve profesyonel */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-glow: 0 4px 14px 0 rgba(234, 179, 8, 0.39);
  
  /* Glassmorphism - Daha sade */
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(226, 232, 240, 0.8);
  --glass-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  
  --border-radius: 8px; /* Daha keskin, kurumsal köşeler */
  --border-radius-lg: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
html {
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary);
}

.btn {
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--text-dark);
}

/* Main Container */
main {
  flex: 1;
}

/* Footer */
footer {
  background-color: var(--primary-light);
  color: var(--text-light);
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}

.section-title span {
  color: var(--secondary);
}

/* Glassmorphism Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .header-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .action-btn, .btn-primary {
    width: 100%;
    text-align: center;
  }

  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .glass-search-wrapper {
    flex-direction: column;
    padding: 1rem !important;
  }
  
  .glass-search-wrapper select, .glass-search-wrapper button {
    width: 100%;
    border-right: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  
  .hero-title {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem !important;
  }
}
