/* style.css - TONEA Beyaz Tema */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/flag-icons/css/flag-icons.min.css');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
  padding-top: 50px;
}
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP BAR */
.top-bar {
  font-family:'Inter',sans-serif;
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
  flex-wrap:nowrap;
  gap:20px;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 40px;
  background: #f8f8f8;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  z-index: 1000;
  padding: 0 15px; /* Ekstra sol-sağ boşluk */
}

.partner-text,
.contact-info span {
  font-family: 'Inter', sans-serif;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap; /* Satır atlamasın */
  gap: 20px; /* Zorunlu boşluk */
}

.partner-text { font-weight: 500; color: #555; }
.contact-info span { color: #777; }

/* HEADER - BEYAZ */
.header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 40px;
  z-index: 999;
}
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo-img {
  height: 70px; /* logonun boyutuna göre ayarla */
  width: auto;
  display: block;
}

/* NAV */
nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
nav ul li a {
	font-family: 'Montserrat', sans-serif;
  color: #444;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
nav ul li a:hover,
nav ul li a[aria-current="page"],
	nav ul li a.active {
  background: rgb(190, 123, 5);
  color: #fff;
}

/* DİL BAYRAKLARI */
.lang-switch a { padding: 4px; opacity: 0.7; transition: 0.3s; }
.lang-switch a:hover { opacity: 1; }
.flag-icon { width: 26px; height: 18px; }

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
}
.hero h1 {
  font-size: 3rem;
  color: rgb(190,123,5); 
  margin-bottom: 16px;
  font-weight: 700;
}
.hero p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 32px;
}
.hero .btn {
  background: rgb(190, 123, 5);   /* ana kahverengi */
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(190, 123, 5, 0.2);
}

.hero .btn:hover {
  background: rgb(150, 97, 4);   /* biraz daha koyu kahverengi */
  box-shadow: 0 6px 16px rgba(190, 123, 5, 0.3);
}
.page-section {
  display: none;              /* tüm section'lar gizli */
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;   /* Gövde metinleri için Inter */
  line-height: 1.6;
  color: #333;
 
}

.page-section.active {
  display: block;             /* sadece aktif olan görünür */
}

.page-section h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.contact-section {
  text-align: left;
}
.contact-block p {
  margin: 16px 0; /* Eskiden 8px idi, şimdi daha ferah */
}
.contact-block p {
  display: grid;
  grid-template-columns: 160px 1fr; /* 140px → 160px ile daha dengeli */
  gap: 16px; /* 12px → 16px ile daha nefesli */
  align-items: start;
}
.contact-block strong {
  font-weight: 600;
  color: #222;
  font-size: 1rem;
}

.contact-block span,
.contact-block a {
  font-size: 1rem;
  color: #444;
}
.contact-block p {
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}
#contact h1,
#about h1,
#products h1 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: rgb(190,123,5);
  font-family: 'Montserrat', sans-serif;
}






.logo-inline {
  height: 1em;
  vertical-align: middle;
  margin-left: 12px;
}

.product-img {
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 12px;
  border: 1px solid #eee;
}

.product-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}

.product-list li {
  min-height: 220px; /* örnek değer */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-list li h3 {
  text-align: center;
  margin-top: auto;
}


@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    align-items: center;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
  }

  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }

  .product-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-img {
    max-width: 140px;
    object-fit: contain;
	margin-bottom: 12px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 1.1em;
  }

  /* EKLENENLER */
  .hero p {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
  }

  .lang-switch a {
    margin: 0 6px;
  }

  .nav-menu {
    text-align: center;
  }
}
@media (max-width: 320px) {
  h1 {
    font-size: 1.4em;
  }
  .btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .nav-menu {
    gap: 6px;
  }
}



/* FOOTER - BEYAZ */
footer {
  background: #fff;
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #eee;
  color: #777;
  font-size: 0.9rem;
}
footer .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
