/* === GENEL === */
body {
  background-color: #121212;
  color: #f1f1f1;
  font-family: 'Montserrat', sans-serif;
}

/* Linkler */
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

/* === TOP HEADER === */
.top-header {
  background: #000;
  font-size: 0.85rem;
  line-height: 1;
  padding: 6px 0; /* dar yükseklik */
}
.top-header a {
  color: #FFD700;
  transition: 0.2s;
}
.top-header a:hover {
  color: #fff;
}
.top-header i {
  font-size: 1rem;
}

/* === NAVBAR === */
.navbar {
  background-color: #0d0d0d !important;
}
.navbar-logo {
  height: 50px;
  transition: height 0.3s ease;
}
@media (max-width: 768px) {
  .navbar-logo {
    height: 80px; /* mobilde büyüt */
  }
}
.nav-link {
  color: #f1f1f1 !important;
  transition: color 0.2s;
}
.nav-link:hover {
  color: #FFD700 !important;
}
.btn-gold {
  background-color: #FFD700;
  border: none;
  color: #000;
  font-weight: 600;
}
.btn-gold:hover {
  background-color: #FFC107;
  color: #000;
}

/* === OFFCANVAS MENÜ === */
.offcanvas {
  transition: transform 0.3s ease-in-out;
}
.offcanvas-logo {
  height: 100px; /* açılır menüde daha dengeli boyut */
  max-width: 100%;
}
.offcanvas .nav-link {
  font-size: 1.05rem;
  padding-left: 0.5rem;
  transition: 0.2s;
}
.offcanvas .nav-link:hover {
  background: rgba(255, 215, 0, 0.1);
  border-radius: 6px;
  color: #FFD700 !important;
}
.menu-contact {
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 6px;
}
.menu-contact i {
  font-size: 1.25rem; /* ikonlar büyük */
  vertical-align: middle;
  margin-right: 6px;
}
.menu-contact a {
  color: #FFD700;
  transition: 0.2s;
}
.menu-contact a:hover {
  color: #fff !important;
}

/* === HERO === */
/* === HERO === */
.hero {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
              url('https://picsum.photos/1600/900?blur=2') center/cover no-repeat;
  height: 45vh; /* daha kısa */
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFD700;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #f1f1f1;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: #FFD700;
  border-radius: 3px;
}

.hero-flags span {
  font-size: 1.8rem;
  cursor: default;
  transition: transform 0.2s;
}
.hero-flags span:hover {
  transform: scale(1.2);
}

.hero-flags {
  gap: 0.8rem;
}

.flag-item {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.flag-item span {
  font-size: 1rem;
  opacity: 0.9;
}

.flag-item:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-3px);
}
#courses .course-card {
  background: #1c1c1c;
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  font-size: 1rem;
  cursor: pointer;
}

#courses .course-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

#courses .course-card h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f1f1f1;
}

#courses .course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0.6rem 1.2rem rgba(255, 215, 0, 0.25);
}
/* === WHY US === */
#why-us {
  padding: 3rem 0;
}

#why-us h2 {
  font-size: 1.5rem; /* mobilde daha zarif */
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #FFD700, #FFC107, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  0% { background-position: -200px; }
  100% { background-position: 200px; }
}

#why-us p {
  font-size: 0.95rem;
  color: #bbb;
  margin-bottom: 1rem;
}

.why-list li {
  margin-bottom: 0.4rem; /* satır arası dengeli */
  font-size: 0.95rem;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.why-list i {
  font-size: 1.1rem;
  margin-right: 6px;
  color: #FFD700;
}

#why-us .btn {
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.2s;
}

#why-us .btn:hover {
  transform: translateY(-2px);
}

/* === COURSES === */
#courses .course-card {
  background: #1c1c1c;
  border-radius: 12px;
  padding: 18px 10px; /* daha az iç boşluk */
  text-align: center;
  transition: all 0.3s ease;
  font-size: 0.9rem;  /* yazılar biraz küçüldü */
  cursor: pointer;
}

#courses .course-card span {
  font-size: 1.6rem; /* bayraklar da küçüldü */
  display: block;
  margin-bottom: 5px;
}

#courses .course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(255, 215, 0, 0.25);
}

/* === HERO === */
/* HERO Genel */
.hero {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('https://picsum.photos/1600/900?blur=2') center/cover no-repeat;
  min-height: 55vh; /* daha kısa, dengeli */
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-top: 80px; 
  padding-bottom: 30px;
}

/* Mobilde özel ayar */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh; /* mobilde biraz daha uzun */
    padding-top: 85px;
    padding-bottom: 25px;
  }

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

  .hero-subtitle {
    font-size: 0.9rem;
  }
}


.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; /* küçültüldü */
  font-weight: 700;
  color: #FFD700;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6); /* okunabilirlik için gölge */
}

.hero-subtitle {
  font-size: 0.95rem;
  margin-top: 0.4rem;
  color: #f1f1f1;
}

/* /* WHY US */
#why-us h2 {
  font-size: 1.6rem;
  background: linear-gradient(90deg, #FFD700, #FFC107, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
  display: inline-block;
}

@keyframes shine {
  0% { background-position: -200px; }
  100% { background-position: 200px; }
}

.why-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  transition: transform 0.2s, color 0.2s;
}
.why-list li:hover {
  transform: translateX(5px);
  color: #FFD700;
}
.why-list i {
  font-size: 1.2rem;
}


.hero-divider {
  width: 60px;
  height: 3px;
  background: #FFD700;
  border-radius: 3px;
}

.flag-item {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.25s ease;
}
.flag-item:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(255,215,0,0.15);
}

.hero .btn-sm {
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.2s;
}
.hero .btn-sm:hover {
  transform: translateY(-2px);
}
/* Hero CTA Butonları */
.hero .btn-sm {
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
}
.hero .btn-sm:hover {
  transform: translateY(-2px);
}

/* Glow Efektleri */
.btn-call {
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}
.btn-call:hover {
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.btn-whatsapp {
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
}
/* Offcanvas Arka Plan */
.offcanvas {
  background: linear-gradient(160deg, #000000, #1c1c1c, #FFD700);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Offcanvas Logo */
.offcanvas-logo {
  height: 90px;
  max-width: 100%;
}

/* Menü Linkleri */
.offcanvas .nav-link {
  font-size: 1.05rem;
  padding-left: 0.5rem;
  transition: 0.2s;
}
.offcanvas .nav-link:hover {
  background: rgba(255, 215, 0, 0.15);
  border-radius: 6px;
  color: #FFD700 !important;
}

/* Menü Alt İletişim Alanı */
.menu-contact {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem; /* adres yazısı küçüldü */
  line-height: 1.4;
}
.menu-contact i {
  font-size: 1.1rem;
  vertical-align: middle;
}

.service-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.8rem 1.5rem rgba(255, 215, 0, 0.3);
}

.course-card {
  background: #1c1c1c;
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  text-decoration: none;
}
.course-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}
.course-card h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0.6rem 1.2rem rgba(255, 215, 0, 0.25);
  color: #FFD700 !important;
}
