/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Quantify';
    src: url('assets/fonts/Quantify.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ataturk';
    src: url('../assets/fonts/Ataturk.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

/* CONTAINER */
.container {
    width: 70%;
    max-width: 1920px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.75);
    border-bottom: 1px solid #1f1f1f;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.navbar.scrolled {
    background: rgba(17, 17, 17, 0.75);  /* Daha şeffaf */
    backdrop-filter: blur(8px);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.15);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    position: relative;
    transition: color 0.3s ease;
}

/*Logo Tasarımı*/
.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #00ffff;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo img {
    height: 60px;
    filter: drop-shadow(0 0 0px #00ffff);
    transition: 0.3s;
}

.logo img:hover {
    filter: drop-shadow(0 0 1px #00ffff);
}

.logo img {
    margin-top: 0px;
}

/* Logo Alanı */
.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Logo Görseli */
.logo img {
    height: 55px;
    width: auto;
    margin-right: 12px;
    display: block;
}

/* Yazı Bloğu */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* Ana Başlık */
.logo-text h2 {
    font-family:'Quantify';
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Alt Başlık */
.logo-text span {
    font-family: 'Ataturk';
    font-size: 8px;
    color: #00ffff;
    letter-spacing: 2px;
}

.logo-text span {
    transform: translateX(30px);
}

/* Underline animasyonu */
nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #00ffff;
    transition: width 0.3s ease;
}

/* Hover efekti */
nav ul li a:hover {
    color: #00ffff;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Active link underline sabit */
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: #00ffff;
}

/* HERO */
.hero {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0,255,255,0.08), #0a0a0a 60%);
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
    color: #cccccc;
}

.hero {
    height: 90vh;
    background: 
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
        url('../assets/images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #00ffff;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #00cccc;
}

/* FEATURES */
.features {
    padding: 60px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* CARD (Feature Box) */
.card {
    display: block;
    text-decoration: none;
    color: inherit;

    background: #111111;
    border: 1px solid #1f1f1f;
    padding: 30px;
    border-radius: 10px;

    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover Efekti */
.card:hover {
    transform: translateY(-6px);
    border-color: #00ffff;
    box-shadow: 0 15px 35px rgba(0,255,255,0.25);
}

/* Başlık */
.card h3 {
    margin-bottom: 12px;
    color: #00ffff;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Yazı */
.card p {
    color: #cccccc;
}

/* FOOTER */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #1f1f1f;
    margin-top: 0px;
    color: #ccc;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-logo {
    color: #e9ebeb;
    margin-bottom: 10px;
    font-family: 'Quantify', sans-serif;
}



.vtc-highlight {
    color: #00ffff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #aaa;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #00ffff;
}

.footer-menu {
    margin-left: 100px;
}

/* Discord Butonu */
.discord-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #00ffff;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.25s;
}

.discord-btn:hover {
    background: #00cccc;
}

/* Alt Kısım */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #1f1f1f;
    padding: 15px;
    font-size: 14px;
    color: #888;
}

/* Scroll Animation Başlangıç Durumu */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Görünür olduğunda */
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Kullanım Şartları Hero */
.hero-kullanim {
    height: 200px;
    max-height: 320px;
    min-height: 200px;
    aspect-ratio: 16 / 9;
    width: 100%;
    align-items: flex-start;
    padding-top: 65px;

    background:
        linear-gradient(rgba(0, 0, 0, 0), rgba(0,0,0,0.90)),
        url('/assets/images/kullanim.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Legal Sayfa İçerik Alanı */
.legal-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

/* Asıl kutu */
.legal-container {
    max-width: 900px;
    width: 100%;

    background: #151515; /* site arka planından biraz açık */
    border: 1px solid #222;

    padding: 40px 50px;
    border-radius: 12px;

    box-shadow: 0 0 25px rgba(0,0,0,0.35);
}

.legal-container {
    border-top: 3px solid #00ffff;
}

/* Başlık */
.legal-container h2 {
    margin-bottom: 20px;
    color: #00ffff;
}

/* Alt başlıklar */
.legal-container h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #ffffff;
}

/* Paragraflar */
.legal-container p {
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* About content wrapper */
.about-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 1000px;
  width: 100%;
  background: #151515;
  border: 1px solid #222;
  padding: 45px 55px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.35);
}

/* Main about block */
.about-block h2,
.vtc-info h2 {
  color: #00ffff;
  margin-bottom: 15px;
}

.about-block p {
  color: #cfcfcf;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Mission/Vision cards */
.about-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

/* VTC Info */
.vtc-info {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid #222;
}

.stats {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.stat {
  background: #111111;
  border: 1px solid #1f1f1f;
  padding: 18px 16px;
  border-radius: 10px;
}

.stat-label {
  display: block;
  color: #aaaaaa;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.stat-value {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .about-container {
    padding: 28px 22px;
  }
}

.hero-about {
    height: 40vh;
    min-height: 100px;
}

.team-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.team-stage {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

/* Üstte tek kart */
.row-center {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Altta 2 kart */
.row-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  gap: 25px;
  justify-content: center;
  width: 100%;
}

@media (max-width: 860px) {
  .row-two {
    grid-template-columns: 1fr;
  }
}

/* Kart */
.team-card {
  width: 380px;
  max-width: 95%;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 25px 20px 18px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(400px 200px at 50% 10%, rgba(106,174,214,.25), transparent 60%);
  opacity: .8;
  pointer-events: none;
}

/* Avatar */
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(106,174,214,.6);
  margin: 10px auto 15px;
  display: block;
  position: relative;
  z-index: 1;
}

/* İsim */
.team-name {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* Görev */
.team-role {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #00ffff;   /* İSTEDİĞİN RENK */
}

/* Çizgi */
.team-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 16px 0 12px;
  position: relative;
  z-index: 1;
}

.row-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 380px));
  gap: 25px;
  justify-content: center;
  width: 100%;
}

@media (max-width: 1000px) {
  .row-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .row-three {
    grid-template-columns: 1fr;
  }
}