/* Genel ayarlar */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f8f9fa;
}

.page-content {
  padding-top: 80px; /* fixed navbar boşluğu */
}

/* Ayyıldız renk paleti */
.bg-ayyildiz {
  background: radial-gradient(circle at top left, #ff4d4d, #b30000);
}

.text-ayyildiz {
  color: #e60000;
}

.btn-ayyildiz {
  background-color: #e60000;
  border-color: #e60000;
  color: #fff;
}

.btn-ayyildiz:hover {
  background-color: #b30000;
  border-color: #b30000;
  color: #fff;
}

.whatsapp-btn {
  border-radius: 999px;
  font-weight: 600;
  padding-inline: 1.25rem;
}

/* Ayyıldız logo */
.ayyildiz-logo {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ayyildiz-logo .crescent {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: -6px 0 0 0 #e60000;
  left: 4px;
}

.ayyildiz-logo .star {
  position: absolute;
  right: 3px;
  color: #e60000;
  font-size: 13px;
}

/* Hero alanı */
.hero-section {
  background: linear-gradient(135deg, #b30000 0%, #e60000 40%, #ffffff 40%, #f8f9fa 100%);
  color: #fff;
  padding: 4rem 0 3rem;
}

.hero-section .hero-badge {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  font-size: 0.875rem;
}

.hero-section .hero-card {
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 1rem;
  padding: 1.5rem;
  color: #212529;
}

/* Kartlar */
.feature-card {
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
  border-color: rgba(230, 0, 0, 0.4);
}

/* Galeri */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

/* İletişim kartı */
.contact-card {
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.map-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  min-height: 280px;
}

/* Küçük yardımcılar */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #e60000, #ffffff);
  border-radius: 999px;
}

/* Service Cards */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(230, 0, 0, 0.15) !important;
}

.service-icon {
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

/* Gallery Filter */
.filter-btn.active {
  background-color: #e60000;
  border-color: #e60000;
  color: #fff;
}

.gallery-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1rem;
  overflow: hidden;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.gallery-item.hidden {
  display: none;
}

/* Contact Form */
.contact-item {
  padding: 0.5rem 0;
}

/* Feature Box */
.feature-box {
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

/* Stat Box */
.stat-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

/* Button Outline Ayyıldız */
.btn-outline-ayyildiz {
  color: #e60000;
  border-color: #e60000;
}

.btn-outline-ayyildiz:hover {
  background-color: #e60000;
  border-color: #e60000;
  color: #fff;
}

/* Navbar Active Link */
.navbar-nav .nav-link.active {
  color: #fff !important;
  font-weight: 600;
  position: relative;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}

/* Responsive düzenlemeler */
@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 5.25rem;
  }

  .hero-section .display-5 {
    font-size: 2rem;
  }

  .page-content {
    padding-top: 70px;
  }
}

