/* Genel Ayarlar */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #333;
}

/* Header */
.site-header {
  background: #004080;
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo h1 {
  margin: 0;
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.main-nav li {
  margin-left: 20px;
}
.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.main-nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background: url("https://via.placeholder.com/1200x400") no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
}
.hero-text h2 {
  font-size: 2.5rem;
}
.hero-text p {
  font-size: 1.2rem;
}

/* Bölümler */
section {
  padding: 40px 20px;
  background: white;
  margin: 20px auto;
  max-width: 1000px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
section h3 {
  margin-top: 0;
  color: #004080;
}

/* Galeri */
.gallery-grid {
  display: flex;
  gap: 10px;
}
.gallery-grid img {
  width: 200px;
  height: auto;
  border-radius: 4px;
  border: 2px solid #ccc;
}

/* Footer */
.site-footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
}
.site-footer a {
  color: #ffcc00;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}
.hero {
  position: relative;
}
.hero h2, .hero p {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
