/* ======= NAVBAR / MENU ======= */
/* Sayfanın etrafındaki boşlukları sıfırla */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #1a1125;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1200px;
  margin: auto;
  font-family: 'Cinzel', serif;
}

.logo {
  font-size: 1.5rem;
  color: #ffcce5;
  font-weight: bold;
  text-shadow: 0 0 4px #ffb6c1;
}

.menu {
  list-style: none;
  display: flex;
  gap: 24px;
}

.menu li a {
  text-decoration: none;
  color: #f3e9f0;
  font-size: 1rem;
  transition: color 0.3s;
}

.menu li a:hover {
  color: #ffcce5;
}

/* Hamburger Menü */
.menu-icon {
  display: none;
  font-size: 2rem;
  color: #f3e9f0;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #1a1125;
    flex-direction: column;
    display: none;
    text-align: center;
    padding: 10px 0;
  }

  .menu li {
    margin: 12px 0;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}
/* ============================
   HERO / ANASAYFA (Video Arka Plan)
============================ */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.3);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  color: white;
  padding: 0 20px;
  max-width: 800px;
}

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.hero-overlay .subtitle {
  font-size: 1.2rem;
  color: #ffcce5;
  margin-bottom: 20px;
}

.hero-overlay .desc {
  font-size: 1rem;
  color: #ddd;
}

.hero-overlay .warning {
  font-size: 0.95rem;
  color: #ffaeae;
  margin-top: 10px;
  font-weight: 500;
}

.call-button {
  display: inline-block;
  margin-top: 30px;
  background: #ffc107;
  color: black;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.call-button:hover {
  background: #ffb100;
}
/* HERO BÖLÜMÜ - Sabit slider.webp görselli */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('slider.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6); /* koyu şeffaf katman */
  padding: 40px;
  border-radius: 12px;
  color: white;
  max-width: 800px;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero-overlay .subtitle {
  font-size: 1.2rem;
  color: #ffcce5;
  margin-bottom: 20px;
}

.hero-overlay .desc {
  font-size: 1rem;
  color: #ddd;
}

.hero-overlay .warning {
  font-size: 0.95rem;
  color: #ffaeae;
  margin-top: 10px;
  font-weight: 500;
}

.call-button {
  display: inline-block;
  margin-top: 30px;
  background: #ffc107;
  color: black;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.call-button:hover {
  background: #ffb100;
}
/* HAKKIMDA BÖLÜMÜ */
.about-section {
  background: #fff;
  padding: 80px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 280px;
  color: #333;
}

.about-text .subtitle {
  font-size: 1rem;
  color: #555;
}

.about-text h2 {
  font-size: 2rem;
  margin: 10px 0 20px;
  color: #111;
}

.about-text .highlight {
  color: #ffc107;
  font-weight: bold;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

.about-button {
  display: inline-block;
  background: #fff;
  border: 2px solid #000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.about-button:hover {
  background: #000;
  color: #fff;
}

/* Sağdaki görsel */
.about-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 20px;
  border: 3px solid #ffc107;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
/* ===========================
   BÜYÜ & VEFK KARTLARI BÖLÜMÜ
   =========================== */

.buyu-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #0d0d0d, #1a1a1a);
  color: #fff;
  text-align: center;
}

.buyu-section .section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #ffcc00;
  position: relative;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 204, 0, 0.2);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffcc00;
}

.card p {
  font-size: 15px;
  color: #ddd;
  line-height: 1.6;
}
/* === BÜYÜ NEDİR KAYDIRMALI BÖLÜM === */
.buyu-nedir-section {
  background: url("img/buyu-arkaplan.jpg") center center / cover no-repeat;
  padding: 100px 20px;
  position: relative;
}

.buyu-box {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.65);
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.buyu-box h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
}

.buyu-box h2 span {
  color: #ffcc00;
}

.buyu-scroll {
  max-height: 300px;        /* KAYDIRMA BURADAN */
  overflow-y: auto;
  padding-right: 12px;
  color: #eaeaea;
  font-size: 16px;
  line-height: 1.8;
}

/* Scrollbar */
.buyu-scroll::-webkit-scrollbar {
  width: 6px;
}

.buyu-scroll::-webkit-scrollbar-thumb {
  background: #ffcc00;
  border-radius: 10px;
}

.buyu-scroll h3 {
  margin-top: 20px;
  color: #ffcc00;
  font-size: 18px;
}

.buyu-scroll ul {
  margin: 15px 0 15px 20px;
}

.buyu-scroll ul li {
  margin-bottom: 6px;
}
.custom-footer {
  background-color: #1d1d1d;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
}

.custom-footer .footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.custom-footer p {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 15px;
}

.custom-footer p strong {
  color: #fff;
}

.footer-contact {
  color: #f1b62c;
  font-size: 14px;
}

.footer-contact i {
  margin-right: 5px;
}
.hakkimda-wrapper {
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-radius: 12px;
  font-family: 'Segoe UI', sans-serif;
}

.hakkimda-wrapper h1 {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  text-align: center;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.hakkimda-wrapper .breadcrumb {
  text-align: center;
  color: #888;
  margin-bottom: 40px;
  font-size: 14px;
}

.hakkimda-wrapper h3 {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  border-left: 4px solid #a16eff;
  padding-left: 12px;
}

.hakkimda-wrapper p, .hakkimda-wrapper li {
  font-size: 16px;
  color: #333;
  margin-top: 10px;
  line-height: 1.8;
}

.hakkimda-wrapper ul {
  margin-left: 20px;
  margin-top: 10px;
}
.about-section {
  background: url('img/bg-stars.jpg') no-repeat center center fixed;
  background-size: cover;
  padding: 80px 0;
  color: #f0f0f0;
  font-family: 'Cinzel', serif;
}

.about-section .container {
  max-width: 1000px;
  margin: auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
}

.about-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 10px;
  color: #d9a1ff;
  text-shadow: 0 0 5px #a16eff;
}

.breadcrumb {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  margin-bottom: 40px;
}

.about-box h3 {
  margin-top: 30px;
  font-size: 20px;
  color: #fff;
  border-left: 4px solid #a16eff;
  padding-left: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-box h3 span {
  color: #a16eff;
  margin-right: 6px;
}

.about-box p,
.about-box li {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 10px;
  color: #ddd;
}

.about-box ul {
  margin-left: 20px;
}
