/*
Theme Name: The New Theme
Author: extrabet
Version: 1.2
Description: Minimal, mobil uyumlu WordPress teması
*/

body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background: #f9f9f9;
}

header {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: relative;
}

.site-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  padding: 1rem 0 0.5rem;
  display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  position: absolute;
  top: 1.2rem;
  right: 1rem;
}

#main-nav {
  background: #333;
}

#main-nav .nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0.5rem 0;
  flex-wrap: wrap;
}

#main-nav .nav-list li a {
  text-decoration: none;
  color: #fff;
  padding: 0.3rem 0.6rem;
  transition: background 0.3s;
  display: inline-block;
  border-radius: 4px;
}

#main-nav .nav-list li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  #main-nav {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  #main-nav.open {
    display: flex;
  }

  #main-nav .nav-list {
    flex-direction: column;
    width: auto;
    align-items: flex-start;
    gap: 0.2rem;
    padding-bottom: 0.5rem;
  }

  #main-nav .nav-list li {
    width: auto;
    text-align: left;
  }

  #main-nav .nav-list li a {
    font-size: 15px;
    padding: 0.3rem 0.5rem;
    background: transparent;
  }
}

footer {
  background: #eee;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}
