/* Global Reset & Temel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Renk Değişkenleri */
:root {
  --primary: #014E96;
  --secondary: #2d6aad;
  --accent: #014E96;
  --light: #ecf0f1;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* Header */
header {
  background: var(--gradient);
  padding: 20px;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-section {
  display: flex;
  align-items: center;
}

.logo {
  max-width: 150px;
  margin-right: 20px;
}

nav {
  position: relative;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-menu li a {
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: var(--accent);
}

/* Mobile Navigation */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #fff;
}

.mobile-nav {
  display: none;
  list-style: none;
  flex-direction: column;
  background: var(--primary);
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  z-index: 1000;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav li a {
  color: #fff;
  padding: 10px 0;
  transition: color 0.3s;
}

.mobile-nav li a:hover {
  color: var(--secondary);
}

.panel-section {
  margin-left: auto;
}

.panel-button {
  text-decoration: none;
  color: #1c73b0;
  background: white;
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid white;
  transition: background 0.3s ease, color 0.3s ease;
}

.panel-button:hover {
  color: #1c73b0;
  background: white;
  border: 2px solid white;
}

/* Hero Bölümü */
.hero {
  position: relative;
  background: var(--gradient);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--light);
  transform: skewY(-3deg);
}

.hero h2 {
  font-size: 2.8rem;
  position: relative;
  z-index: 1;
  animation: slideUp 1s ease-out;
}

.warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFF3E0;
  color: #e54747;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

/* Bölümler */
.section {
  background: #fff;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: fadeIn 1s ease-out;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 5px;
}

/* İstatistik Kartları */
.istatistikler {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.stat {
  background: var(--light);
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.stat h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--secondary);
}

.stat p {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.stat small {
  color: #555;
}

/* Sorumluluk Reddi */
.disclaimer-section {
  background: #fff3e0;
  border-left: 5px solid var(--accent);
  padding: 20px;
  margin-top: 20px;
  border-radius: 5px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.disclaimer-section ul {
  margin-top: 10px;
  list-style: none;
  padding-left: 20px;
}

.disclaimer-section ul li {
  margin-bottom: 5px;
}

/* Üyelik & Abonelik */
.uyelik-packages {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.package {
  background: var(--light);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  min-width: 200px;
  text-align: center;
  transition: transform 0.3s;
}

.package:hover {
  transform: translateY(-5px);
}

.package h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.package p {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.package small {
  display: block;
  margin-top: 5px;
  color: #555;
}

.uyelik-form {
  margin-top: 20px;
}

.uyelik-agreement {
  margin-bottom: 15px;
}

.uyelik-agreement input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.2);
}

.donation-select {
  margin-top: 20px;
}

.donation-select label {
  display: block;
  margin-bottom: 5px;
}

.donation-select select {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 5px;
}

/* Butonlar */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: var(--primary);
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--secondary);
  transform: scale(1.05);
}

/* İletişim */
.iletisim-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.iletisim-card {
  background: var(--light);
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  text-align: center;
}

.iletisim-card i {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.iletisim-card a {
  color: var(--primary);
  transition: color 0.3s;
}

.iletisim-card a:hover {
  color: var(--secondary);
}

/* Footer */
footer {
  background: var(--accent);
  color: #ddd;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 20px;
}

.sosyal-feed a {
  font-size: 1.4rem;
  margin: 0 10px;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #fff;
}

.sosyal-feed a:hover {
  transform: scale(1.1);
  color: var(--secondary);
}

.footer-links {
  margin-bottom: 20px;
  text-align: center;
}

.footer-nav {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-nav li a {
  color: #ddd;
  padding: 5px 12px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.footer-nav li a:hover {
  color: white;
  background-color: rgba(255,255,255,0.1);
}

.footer-extra {
  font-size: 0.8rem;
  color: #ff5252;
  margin-top: 5px;
}

/* Animasyonlar */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
  }
  .mobile-nav {
    display: none;
  }
  .mobile-nav.active {
    display: flex;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .sosyal-feed a {
    font-size: 1.2rem;
    margin: 0 8px;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .uyelik-packages {
    flex-direction: column;
  }
}
