/* === GENERAL === */
body {
  font-family: 'Raleway', sans-serif;
  padding-top: 70px; /* navbar boşluğu */
  color: #333;
  line-height: 1.6;
  word-wrap: break-word;
  background-color: #fff;
}

h1, h2, h3, h4, h5 {
  font-weight: 600;
}

.divider {
  width: 60px;
  height: 3px;
  background-color: #c9a13f;
  margin: 15px auto;
}

.divider-light {
  background-color: #fff;
}

/* === NAVBAR === */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  background-color: #000 !important;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  color: #fff !important;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #c9a13f !important;
}

/* === HERO === */

/* ===== GENEL AYARLAR ===== */
:root {
  --primary: #000;
  --secondary: #c9a13f;
  --dark: #111;
  --light: #fff;
}

/* ===== HERO SLIDER DÜZENLEMELERİ ===== */
.hero {
  height: 90vh;
  max-height: 800px;
  position: relative;
}

.resimSlider {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.carousel-caption {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  padding: 20px;
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
}

.carousel-caption h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

/* Kontrol Container */
.carousel-controls-container {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.carousel-control-prev,
.carousel-control-next {
  position: relative;
  width: 40px;
  height: 40px;
  top: auto;
  bottom: auto;
  margin: 0 10px;
}

/* ===== MOBİL UYUMLULUK ===== */
@media (max-width: 991px) {
  .hero {
    height: 70vh;
    max-height: 500px;
  }
  
  .carousel-caption {
    padding: 15px;
  }
  
  .carousel-caption h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 60vh;
    max-height: 400px;
  }
  
  .carousel-controls-container {
    bottom: 10px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 30px;
    height: 30px;
  }
}

/* ===== HERO SLIDER YALIN HALE GETİRME ===== */
.carousel-caption {
  background: transparent !important; /* Arka planı kaldır */
  padding: 0 !important; /* Fazlalıkları sil */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.carousel-caption h2 {
  color: white;
  font-weight: 700;
  text-shadow: 
    2px 2px 5px rgba(0, 0, 0, 0.8),
    -2px -2px 5px rgba(0, 0, 0, 0.8); /* Çift yönlü gölge */
  display: inline-block;
  padding: 0 10px;
}

.carousel-caption p {
  color: white;
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.8),
    -1px -1px 3px rgba(0, 0, 0, 0.8);
  margin-bottom: 15px;
}

.carousel-caption .btn-gold {
  background-color: rgba(201, 161, 63, 0.9);
  border: none;
  text-shadow: none;
  backdrop-filter: blur(2px);
}

/* Koyu resimlerde ek koruma */
.dark-slide .carousel-caption h2,
.dark-slide .carousel-caption p {
  text-shadow: none;
  color: #fff !important;
}
@media (max-width: 575px) {
  .carousel-caption {
    width: 95%;
    padding: 10px;
  }
  
  .carousel-caption h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .carousel-caption .btn {
    padding: 8px 15px;
    font-size: 0.8rem;
  }
}
.hero {
  position: relative;
  height: 100vh;
}

.resimSlider {
  object-fit: cover;
  height: 100vh;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  text-align: center;
}

/* === BUTTONS === */
.btn-gold {
  background-color: #c9a13f;
  border: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: #b58d2a;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-gold {
  border: 2px solid #c9a13f;
  color: #c9a13f;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background-color: #c9a13f;
  color: #fff;
}

.btn-success {
  background-color: #25d366;
  border: none;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #1da851;
  transform: translateY(-2px);
}

/* === USP ICONS === */
.usp i {
  color: #c9a13f;
}

.usp h6 {
  font-weight: 600;
}

/* === ABOUT === */
#aboutus img {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* === SERVICES === */
.card-premium {
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.fleet-thumb {
  height: 220px;
  object-fit: cover;
}

/* === DESTINATIONS === */
.section-dark {
  background-color: #111;
  color: #fff;
}

.ekipCard {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  overflow: hidden;
}

.ekipCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.destination-img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.btn-outline-gold {
  margin-top: 10px;
}

/* === FAQ === */
.faq .btn-link {
  color: #c9a13f;
  font-weight: 600;
  text-decoration: none;
}

.faq .btn-link:hover {
  text-decoration: underline;
}

/* === FORM === */
.reservation-form .card {
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.form-control {
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 12px 15px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #c9a13f;
}

/* === FOOTER === */
footer {
  background-color: #000;
  color: #ddd;
}

footer a {
  color: #bbb;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #c9a13f;
  text-decoration: none;
}

footer h5 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}
/* HERO captions */
.carousel-caption {
  bottom: 20%;
  text-align: center;
}

.carousel-caption h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #000;
    padding: 10px;
  }
  .nav-link {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}
.card-body {
  background: #fff;
  color: #333;
}

@media (max-width: 768px) {
  .resimSlider {
    height: 70vh;
  }
  .destination-img, .fleet-thumb {
    height: 200px;
  }
}

@media (max-width: 576px) {
  body { padding-top: 60px; }
  .resimSlider { height: 60vh; }
  .whatsapp-float {
    width: 50px; height: 50px;
    bottom: 20px; right: 20px;
    font-size: 24px;
  }
}
