@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #fdf6e3 0%, #f1f5f9 100%);
  color: #333;
  min-height: 100vh;
}
header, footer {
  background: linear-gradient(90deg, #eab308 60%, #fde68a 100%);
  color: #111;
  text-align: center;
  padding: 1.2rem 0 1rem 0;
  box-shadow: 0 4px 16px rgba(234,179,8,0.10);
  border-radius: 0 0 18px 18px;
  position: relative;
  z-index: 2;
}
header nav {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 10px;
}
header nav a {
  margin: 0 5px;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  position: relative;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
header nav a:hover, header nav a.active {
  background: #fffbe6;
  color: #eab308;
  box-shadow: 0 2px 8px rgba(234,179,8,0.10);
  text-decoration: none;
}
main {
  display: flex;
  max-width: 1200px;
  margin: 2.5rem auto 2rem auto;
  padding: 0 1.2rem;
  gap: 2.2rem;
}
.sidebar {
  width: 250px;
  background: linear-gradient(120deg, #fffbe6 60%, #fef9c3 100%);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(234,179,8,0.10);
  padding: 1.2rem 1rem;
  margin-right: 0;
  transition: box-shadow 0.2s;
}
.sidebar:hover {
  box-shadow: 0 4px 24px rgba(234,179,8,0.16);
}
.sidebar h3 {
  margin-bottom: 0.7rem;
  color: #b45309;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  font-weight: 700;
}
.sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar ul li {
  margin-bottom: 0.6rem;
}
.sidebar ul li a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, text-shadow 0.2s;
  border-radius: 5px;
  padding: 2px 6px;
}
.sidebar ul li a:hover {
  color: #1d4ed8;
  text-shadow: 0 2px 8px #dbeafe;
  background: #f1f5f9;
  text-decoration: underline;
}
.content {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 3rem 2.5rem;
  transition: box-shadow 0.2s;
  min-width: 0;
  max-width: 820px;
  margin: 0 auto;
}
.content h2 {
  color: #eab308;
  margin-top: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
}
.content p, .content ul, .content li {
  font-size: 1.13rem;
  line-height: 1.85;
}
.content ul {
  padding-left: 1.2rem;
}
.content a {
  color: #2563eb;
  text-decoration: underline;
  transition: color 0.2s;
}
.content a:hover {
  color: #1d4ed8;
}
/* Galeri görselleri için hover efekti */
.content img {
  transition: transform 0.25s, box-shadow 0.25s;
}
.content img:hover {
  transform: scale(1.06) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(234,179,8,0.18);
}
footer {
  margin-top: 2.5rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 -2px 12px rgba(234,179,8,0.08);
  background: linear-gradient(90deg, #fde68a 0%, #eab308 100%);
}

/* Buton stili (formlar için) */
button, input[type="submit"] {
  background: linear-gradient(90deg, #eab308 60%, #fde68a 100%);
  color: #111;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 1.08rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(234,179,8,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
button:hover, input[type="submit"]:hover {
  background: #fffbe6;
  color: #eab308;
  box-shadow: 0 4px 16px rgba(234,179,8,0.16);
}

/* Responsive Tasarım */
@media (max-width: 900px) {
  main {
    flex-direction: column;
    gap: 1.2rem;
  }
  .sidebar {
    width: 100%;
    margin-bottom: 1.2rem;
  }
  .content {
    padding: 1.5rem 0.7rem;
  }
}
@media (max-width: 600px) {
  header, footer {
    padding: 0.7rem 0;
  }
  header nav {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  header nav a {
    display: block;
    width: 100vw;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 0;
    font-size: 1rem;
    border-radius: 0;
    margin: 0;
    border-bottom: 1px solid #fde68a;
  }
  header nav a:last-child {
    border-bottom: none;
  }
  .content {
    padding: 1rem 0.3rem;
  }
  main {
    padding: 0 0.1rem;
  }
  .sidebar {
    padding: 0.7rem 0.3rem;
  }
  .content h2 {
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  .content {
    max-width: 1100px;
    padding: 3.5rem 3rem;
    font-size: 1.18rem;
  }
}
