/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap');

/* Genel Ayarlar */
body.body-bg {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #000000 0%, #1a1a1a 33%, #2e2e2e 66%, #3f3f3f 100%);
  color: #fff;
  scroll-behavior: smooth;
}

/* Header */
header {
    background-color: rgba(20, 20, 20, 0.85);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    padding: 24px 0;
    height: 50px;
    max-height: 50px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .header-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
  }
  
  nav a.nav-link {
    margin-left: 1rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
  }
  
  nav a.nav-link:hover {
    color: #60a5fa;
  }

/* Main */
main {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 0;
}

/* Başlıklar */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Galeri */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px 0;
  background: transparent;
}
.gallery img {
  width: 100%;
  height: auto;
  border: 2px solid #000001;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  transition: box-shadow 0.3s;
}
.gallery img:hover {
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  animation: zoom 0.6s;
}
@keyframes zoom {
  from {transform: scale(0)} to {transform: scale(1)}
}
.close {
  position: absolute;
  top: 15px; right: 35px;
  color: #FFFFFF;
  font-size: 40px; font-weight: bold;
  transition: 0.3s; cursor: pointer;
}
.close:hover,
.close:focus {
  color: #BBB;
  text-decoration: none;
}

/* Hamburger Menü */
.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  color: inherit;
  border: 0;
  background-color: transparent;
  transition: opacity .15s linear;
}
.hamburger:hover { opacity: .7; }

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 4px;
  border-radius: 4px;
  background-color: #fff;
  transition: transform .15s ease;
}
.hamburger-inner:before { top: -10px; }
.hamburger-inner:after  { bottom: -10px; }

/* Collapse animation */
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0,-10px,0) rotate(-45deg);
}
.hamburger--collapse.is-active .hamburger-inner:before {
  transform: rotate(-90deg);
  top: 0;
}
.hamburger--collapse.is-active .hamburger-inner:after {
  top: 0;
  opacity: 0;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: rgba(24, 24, 24, 0.9);
  backdrop-filter: blur(4px);
  position: absolute;
  top: 50px;
  width: 100%;
  left: 0;
}
.mobile-menu a {
  padding: 15px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: white;
  border-top: 1px solid #333;
}
.mobile-menu a:hover {
  background-color: #1d4ed8;
}

/* Bot Komutları */
#bot-commands {
  color: #ffffff;
  padding: 40px 20px 50px;
  margin: 0;
}
#bot-commands h2 {
  color: white;
}
.commands-group {
  margin-bottom: 40px;
}
.group-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #60a5fa;
}
.commands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.command {
  flex: 1 1 45%;
  background-color: rgba(32,32,32,0.85);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.command:hover { transform: scale(1.05); }
.new-command { border: 2px solid #248046; }

.command h3 {
  color: #60a5fa;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.command p {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
}
.new-label {
  background-color: #248046;
  color: #fff;
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 12px;
  margin-left: 5px;
}

/* Destek Bölümü */
#destek {
  margin: 20px 0 0;
  padding: 40px 0;
  background-color: rgba(24,24,24,0.85);
}

/* Footer */
.footer {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  padding: 24px 0;
}
