/* Google Font & Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  padding-top: 70px;
  background-color: #f8f9fa;
}

/* Navbar */
.navbar {
  background: linear-gradient(135deg, #1a1a2e, #16213e) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.navbar-brand i {
  font-size: 1.8rem;
}
.navbar-nav .nav-link {
  font-weight: 600;
  margin-left: 1rem;
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffc107 !important;
}

/* Hero Slider */
#heroSlider .carousel-item {
  height: 80vh;
  min-height: 400px;
  background-size: cover;
  background-position: center center;
  position: relative;
}
#heroSlider .carousel-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
#heroSlider .carousel-caption {
  z-index: 2;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}
#heroSlider .carousel-caption h1 {
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  font-weight: 700;
}
#heroSlider .carousel-caption p {
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  font-size: 1.2rem;
}
#heroSlider .btn-warning {
  background-color: #ffc107;
  border: none;
  padding: 12px 32px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(255, 193, 7, 0.4);
}
#heroSlider .btn-warning:hover {
  background-color: #e0a800;
  transform: scale(1.05);
}

/* Card */
.card {
  transition: transform 0.3s, box-shadow 0.3s;
  background: white;
  border-radius: 16px;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}
.card i {
  color: #ffc107;
}

/* Footer */
footer {
  background: #1a1a2e !important;
  border-top: 3px solid #ffc107;
  margin-top: 2rem;
}

/* Footer Linkleri */
.footer-link {
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
}
.footer-link:hover {
  color: #ffc107 !important;
  padding-left: 5px;
}

/* Sosyal Medya İkonları */
.social-icons a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all 0.3s;
  font-size: 16px;
}
.social-icons a:hover {
  background: #ffc107;
  color: #1a1a2e !important;
  transform: translateY(-3px);
}

/* Footer Başlıkları */
footer h5 {
  position: relative;
  padding-bottom: 10px;
}
footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #ffc107;
  border-radius: 2px;
}

/* İletişim Formu */
.form-control {
  border-radius: 12px;
  border: 1px solid #ced4da;
  padding: 12px;
}
.form-control:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}
.btn-warning {
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  background-color: #ffc107;
  border: none;
  transition: all 0.3s;
}
.btn-warning:hover {
  background-color: #e0a800;
  transform: scale(1.02);
}

/* Maps iframe responsive */
.ratio-16x9 {
  border-radius: 16px;
  overflow: hidden;
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
  #heroSlider .carousel-item {
    height: 60vh;
    min-height: 300px;
  }
  #heroSlider .carousel-caption h1 {
    font-size: 2rem;
  }
  #heroSlider .carousel-caption p {
    font-size: 1rem;
  }
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  /* Footer mobil düzen */
  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .social-icons {
    text-align: center;
  }
}