/* Home Page Styles - Bootstrap Enhanced */

:root {
  --primary-color: #E9204F;      /* Orijinal marka rengi */
  --primary-hover: #c91640;
  --text-dark: #2d3748;
  --text-muted: #718096;
  --bg-light: #f8f9fa;
}

.home-page {
  font-family: 'Quicksand', sans-serif;
  color: var(--text-dark);
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

/* Header */
.home-header {
  padding: 1.5rem 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.brand-logo {
  height: 60px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
}

/* Hero Section */
.hero-section {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.hero-title {
  font-weight: 700;
  color: #1a202c;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
}

.accent-line {
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin-bottom: 2rem;
  border-radius: 2px;
}

/* Feature Cards */
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Footer */
.home-footer {
  padding: 2rem 0;
  background-color: #fff;
  border-top: 1px solid rgba(0,0,0,0.05);
  margin-top: auto;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--primary-color);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
    text-align: center;
  }
  
  .accent-line {
    margin: 0 auto 2rem auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .mt-mobile-4 {
    margin-top: 2rem !important;
  }
}
