/*
Theme Name: HelloWorld
Theme URI: https://example.com/helloworld
Author: Your Name
Author URI: https://example.com
Description: Bootstrap 5 based WordPress starter theme with Redux Framework integration and WooCommerce support.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: helloworld
Tags: bootstrap, redux, woocommerce, responsive, starter
*/

/* ----------- GENEL AYARLAR ----------- */
body {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #222;
  margin: 0;
  padding: 0;
}

/* ----------- NAVBAR MENÜ ----------- */
.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding-left: 0;
  margin: 0 auto;
  list-style: none;
}

/* Menü bağlantıları */
.navbar-nav .menu-item a {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover rengi */
.navbar-nav .menu-item a:hover {
  color: #007bff;
  text-decoration: none;
}

/* Aktif bağlantı */
.navbar-nav .current-menu-item > a {
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
}

/* Koyu tema uyumu */
header.bg-dark .navbar-nav .menu-item a {
  color: #fff;
}
header.bg-dark .navbar-nav .current-menu-item a {
  color: #ffd700;
}

/* ----------- MOBİL MENÜ ----------- */
@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    gap: 0;
  }

  .navbar-nav .menu-item a {
    display: block;
    padding: 0.75rem 1rem;
    text-align: center;
  }
}
