/* ====================================
   Genel Stil Tanımları
   ==================================== */
:root {
  --primary-color: #2c2c2c;
  --secondary-color: #999;
  --bg-color: #fafafa;
  --bg-white: #fff;
  --box-shadow-light: 0 4px 16px rgba(0, 0, 0, 0.08);
  --box-shadow-medium: 0 6px 20px rgba(0, 0, 0, 0.15);
  --box-shadow-heavy: 0 18px 45px rgba(0, 0, 0, 0.12);
  --border-radius: 12px;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-color);
}

html, body {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

/* ====================================
   Genel Yerleşim ve Bileşenler
   ==================================== */
.container,
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0;
  }
}

/* ====================================
   Navbar
   ==================================== */
.logo-header {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
  position: static;
  margin-top: 10px;
}

.header-logo {
  width: 100px;
  max-width: 100%;
  height: auto;
  margin-top: -1.5rem;
}

.logo {
  width: 140px;
  max-width: 100%;
  height: auto;
  display: block;
}

.menu-icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
  margin-top: 1rem;
  margin-bottom: -4rem;
}

.menu-icon:hover {
  opacity: 0.6;
  transform: scale(1.1);
}

.dropdown-menu {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.5rem;
  margin-top: 5rem;
  margin-bottom: -5rem;
  text-align: center;
}

.dropdown-menu.show {
  display: flex;
}

.dropdown-menu a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.dropdown-menu a:hover {
  color: var(--secondary-color);
  transform: translateX(2px);
}

/* ====================================
   Footer
   ==================================== */
.footer {
  background-color: var(--bg-color);
  padding: 0.8rem 3rem;
  text-align: center;
  border-top: 1px solid transparent;
  margin-top: 3rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-info p {
  font-size: 0.875rem;
  color: var(--primary-color);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-links i {
  margin-right: 0.5rem;
  font-size: 1rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.footer-links a:hover i {
  color: var(--secondary-color);
}

/* ====================================
   Mobil
   ==================================== */
@media (max-width: 600px) {
  .header-logo {
    width: 80px;
    margin-bottom: -0.8rem;
  }
}