/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #1e7e34;
  color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo {
  height: 50px;
}

.header-center {
  flex: 1;
  text-align: center;
}

.header-center .logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.header-center .slogan {
  font-size: 0.9rem;
  opacity: 0.9;
}

.header-right a {
  background: #28a745;
  color: #fff;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s;
}

.header-right a:hover {
  background: #1da851;
}

/* ================= HERO ================= */
.hero {
  text-align: center;
  padding: 50px 20px;
  background: #e9f7ef;
  margin-top: 80px; /* Header altına içerik kaydırıldı */
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
}
/* ================= HERO ================= */
.hero {
  text-align: center;
  padding: 50px 20px;
  background: #e9f7ef;
  margin-top: 100px; /* Header sabit olduğu için üst boşluk arttırıldı */
}

/* Mobilde biraz daha üst boşluk verelim */
@media (max-width: 768px) {
  .hero {
    margin-top: 130px; /* Header mobilde daha yüksek */
  }
}


/* ================= GRID / PRODUCTS ================= */
.container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.product {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  padding: 15px;
}

.product img {
  width: 100%;
  border-radius: 8px;
}

.product h2 a {
  color: #1e7e34;
  text-decoration: none;
}

.product h2 a:hover {
  text-decoration: underline;
}

.prices {
  font-weight: bold;
  font-size: 1.1rem;
  color: #dc3545;
}

.whatsapp {
  display: inline-block;
  margin-top: 10px;
  background: #25d366;
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
}

/* ================= ABOUT / SEO BLOCK ================= */
.about-section, .seo-block {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-section img,
.about-section iframe {
  max-width: 100%;
  border-radius: 10px;
  display: block;
  margin: 20px auto;
  height: auto;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 15px;
  background: #1e7e34;
  color: #fff;
  margin-top: 40px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .header-right {
    margin-top: 10px;
  }

  .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .login-form {
    margin: 30px 15px;
    padding: 25px 15px;
  }

  .login-form .form-logo {
    height: 100px;
    margin-bottom: 20px;
  }
}

/* ================= LOGIN FORM ================= */
.login-form {
    max-width: 360px;
    margin: 50px auto;
    padding: 30px 20px;
    text-align: center;
    background: #f0fef6; 
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.login-form .form-logo { height: 120px; margin-bottom: 25px; }
.login-form .input-wrapper { position: relative; margin-bottom: 20px; }
.login-form .form-input {
    width: 100%; padding: 12px 15px; border-radius: 8px; border: 1px solid #ccc;
    font-size: 1rem; transition: border-color 0.3s, box-shadow 0.3s;
}
.login-form .form-input:focus {
    border-color: #1e7e34; box-shadow: 0 0 5px rgba(30,126,52,0.5); outline: none;
}
.login-form .form-button {
    width: 100%; padding: 12px; border: none; border-radius: 8px;
    background-color: #1e7e34; color: #fff; font-weight: 700; cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}
.login-form .form-button:hover { background-color: #157a2e; transform: translateY(-2px); }
.login-form .forgot { margin-top: 15px; }
.login-form .forgot a { font-size: 0.9rem; color: #1e7e34; text-decoration: none; transition: 0.3s; }
.login-form .forgot a:hover { color: #155d20; text-decoration: underline; }

/* ================= FEATURES ================= */
.features, .features-list {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.features div, .features-list div { text-align: center; flex: 1 1 200px; }

.features i, .features-list i { font-size: 2rem; color: #1e7e34; margin-bottom: 5px; }

.features p, .features-list p { margin: 0; font-weight: 500; }

#scrollTopBtn {
  display: none; /* Başlangıçta gizli */
  position: fixed;
  bottom: 40px; /* Alt konum */
  right: 40px;  /* Sağ köşe */
  z-index: 1000;
  background-color: #1e7e34;
  color: white;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background-color 0.3s, transform 0.2s;
}

#scrollTopBtn:hover {
  background-color: #157a2e;
  transform: translateY(-3px);
}

/* Mobil uyumlu: ekran 480px altı */
@media (max-width: 480px) {
  #scrollTopBtn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }
}
