/* style.css - Futuristic Black & Gold Theme */

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Color Variables */
:root {
  --gold: #FFD700;
  --dark-bg: #0a0a0a;
  --secondary-bg: #1a1a1a;
  --tertiary-bg: #2a2a2a;
  --text-color: #ffffff;
  --text-secondary: #ccc;
}

/* Base Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-color);
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* Navbar */
.modern-navbar {
  background: linear-gradient(90deg, var(--dark-bg), var(--secondary-bg));
  border-bottom: 2px solid var(--gold);
  padding: 1rem 0.5rem;
}

.modern-navbar .navbar-brand {
  color: var(--gold);
  font-size: 1.75rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.modern-navbar .nav-link {
  color: var(--text-color);
  transition: all 0.3s;
  position: relative;
}

.modern-navbar .nav-link:hover,
.modern-navbar .nav-link.active {
  color: var(--gold);
}

.modern-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.modern-navbar .nav-link:hover::after {
  width: 100%;
}

/* Navbar Toggle Button */
.navbar-toggler {
  border-color: var(--gold);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 215, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Language Selector */
.navbar-extra .dropdown-toggle {
  background-color: rgba(0, 0, 0, 0.7);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 80px;
  text-align: center;
  position: absolute !important;
  overflow: hidden;
}

.navbar-extra .dropdown-toggle::after {
  margin-left: 10px;
  vertical-align: middle;
}

.navbar-extra .dropdown-toggle:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.navbar-extra .dropdown-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
}

.navbar-extra .dropdown-menu {
  background-color: rgba(10, 10, 10, 0.95);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  min-width: 120px;
}

.navbar-extra .dropdown-item {
  color: var(--text-color);
  font-weight: 600;
  padding: 10px 20px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.navbar-extra .dropdown-item:last-child {
  border-bottom: none;
}

.navbar-extra .dropdown-item:hover {
  background-color: rgba(20, 20, 20, 0.9);
  color: var(--gold);
  padding-left: 25px;
}

/* About Section */
#about {
  background-color: var(--secondary-bg);
}

.about-title::after {
  background-color: var(--gold);
}

/* Tour Cards */
.tour-card {
  background: var(--secondary-bg);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.card-title {
  font-weight: 700;
}

/* Carousel */
.carousel-caption::before {
  background: rgba(0, 0, 0, 0.5);
}

.carousel-caption h3 {
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  font-size: 2.8rem;
  letter-spacing: 1px;
  font-weight: 800;
}

.carousel-caption p {
  font-size: 1.4rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

/* Accordion */
.accordion-button {
  background-color: var(--secondary-bg);
  color: var(--gold);
  border: 1px solid var(--gold);
}

.accordion-body {
  background-color: var(--dark-bg);
  color: var(--text-color);
}

/* Footer */
.footer-dark {
  background-color: var(--secondary-bg);
}

.footer-heading::after {
  background-color: var(--gold);
}

/* Forms */
.bg-light {
  background-color: var(--secondary-bg);
}

.text-center h2 {
  color: var(--gold);
}

.text-center p {
  color: var(--text-secondary);
}

.form-label {
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  height: 40px;
  line-height: 1.2;
}

.form-control {
  background-color: var(--tertiary-bg);
  border: 1px solid var(--gold);
  color: var(--text-color);
  height: 45px;
  vertical-align: middle;
}

.form-control:focus {
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-control::placeholder {
  color: #999;
}

/* Form Layout */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  margin-bottom: 0;
}

/* Buttons */
.btn {
  font-weight: 600;
}

.btn-corporate, .btn-whatsapp {
  background-color: var(--gold);
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  transition: all 0.3s;
}

.btn-corporate:hover, .btn-whatsapp:hover {
  background-color: #ccb000;
  transform: scale(1.05);
}

/* Gallery */
.gallery-item {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--gold);
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

/* Animations */
@keyframes glow {
  0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
  50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
  100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
}

.scroll-animate {
  animation: glow 2s infinite;
}

/* style.css - Güncellenmiş Form Stilleri */

/* Form Container */
.bg-light {
  background: linear-gradient(45deg, var(--dark-bg), var(--secondary-bg)) !important;
  border: 2px solid var(--gold);
  border-radius: 15px;
  padding: 2rem !important;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}

/* Form Başlıkları */
.text-center h2 {
  color: var(--gold);
  font-size: 2.2rem;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.25);
  margin-bottom: 1rem !important;
}

.text-center p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem !important;
}

/* Form Label'lar */
.form-label {
  color: #FFE55C !important; /* Daha parlak altın tonu */
  font-weight: 700 !important;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px !important;
}

/* Input Alanları */
.form-control {
  background: rgba(40, 40, 40, 0.9) !important;
  border: 2px solid var(--gold) !important;
  color: var(--text-color) !important;
  height: 50px;
  border-radius: 8px !important;
  font-size: 1.1rem;
  padding: 12px 20px !important;
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: #C0C0C0 !important; /* Daha belirgin gri */
  opacity: 0.8 !important;
}

.form-control:focus {
  border-color: #FFE55C !important;
  box-shadow: 0 0 15px rgba(255, 229, 92, 0.4) !important;
  background: rgba(50, 50, 50, 0.9) !important;
}

/* Tarih ve Saat Inputları */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8);
}

/* Buton Stili */
.btn-whatsapp {
  background: linear-gradient(45deg, #25D366, #128C7E) !important;
  color: white !important;
  font-weight: 700 !important;
  font-size: 1.15rem;
  padding: 15px 40px !important;
  border-radius: 10px !important;
  letter-spacing: 1px;
  margin-top: 1.5rem !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}

.btn-whatsapp:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 20px rgba(18, 140, 126, 0.4) !important;
}

/* Form Grup Aralıkları */
.form-row {
  gap: 20px !important;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
  .form-control {
    font-size: 1rem;
    padding: 10px 15px !important;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
  
  .text-center h2 {
    font-size: 1.8rem;
  }
}

/* Tüm form etiketlerini normal harfe çevir */
.form-label, 
.transfer-form p, 
.transfer-form h2 {
  text-transform: none !important; /* CAPS'i iptal eder */
  font-variant: normal !important; /* Küçük harfleri zorlar */
  letter-spacing: normal !important; /* Harf aralığını düzeltir */
}

/* Ana menü konteyneri */
.navbar-nav {
  display: flex;
  gap: 25px; /* Öğeler arası boşluk */
  margin-right: 30px; /* Telefon numarasıyla mesafe */
}

/* Menü öğeleri */
.nav-link {
  padding: 10px 15px !important;
  white-space: nowrap; /* Metinlerin alt satıra kaymasını engeller */
}

/* Telefon numarası */
.navbar-phone {
  margin-left: auto; /* Sağa yaslar */
  padding-left: 30px;
}

/* MOBİL DİL SEÇİCİ STİLLERİ */
.mobile-language-switcher {
  position: relative;
  right: 70px;
  top: 20px;
  z-index: 1001;
}

.mobile-language-switcher .dropdown-menu {
  position: absolute !important;
  left: auto !important;
  right: 0 !important;
}

/* MASAÜSTÜ GİZLEME */
@media (min-width: 992px) {
  .mobile-language-switcher {
    display: none !important;
  }
}

/* MOBİLDE MENÜ İÇİNDEKİ SEÇİCİYİ GİZLE */
@media (max-width: 991px) {
  .navbar-collapse .dropdown.d-lg-block {
    display: none !important;
  }
}

/* WhatsApp Link Styling */
.whatsapp-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  padding: 8px 15px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  background-color: rgba(0,0,0,0.2);
  transition: all 0.3s;
  color: white;
  font-weight: 500;
}

.whatsapp-link:hover {
  background-color: rgba(0,0,0,0.4);
}

.whatsapp-link i {
  color: #25D366;
  font-size: 1.8em;
}

/* Mobile Language Switcher Fix */
@media (max-width: 991px) {
  .mobile-language-switcher {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }

  .navbar-toggler {
    position: absolute;
    right: 0;
  }

  .navbar-brand img {
    max-height: 80px !important;
  }
}