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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #3e2723;
  background-color: #f5f5f0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: #558b2f;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-intro {
  font-size: 1.1rem;
  color: #5d4037;
  max-width: 700px;
  margin: 0 auto;
}

.text-link {
  display: inline-block;
  color: #558b2f;
  font-weight: 500;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.text-link i {
  margin-left: 5px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.text-link:hover {
  color: #7cb342;
}

.text-link:hover i {
  transform: translateX(3px);
}

/* Coming Soon Stili */
.coming-soon {
  background-color: #fff;
  padding: 50px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(62, 39, 35, 0.1);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.coming-soon i {
  color: #7cb342;
  font-size: 3rem;
  margin-bottom: 20px;
}

.coming-soon h4 {
  color: #558b2f;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.coming-soon p {
  color: #5d4037;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Countdown Stili */
.countdown {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.count-item {
  margin: 0 15px;
  min-width: 60px;
}

.count-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #558b2f;
}

.count-label {
  display: block;
  font-size: 0.8rem;
  color: #5d4037;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Özellikler Bölümü */
.features {
  background-color: #fff;
  padding: 80px 0;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.feature-card {
  flex: 1 1 300px;
  text-align: center;
  padding: 30px 20px;
  background-color: #f1f8e9;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(62, 39, 35, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(62, 39, 35, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background-color: #dcedc8;
  color: #558b2f;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.feature-card h3 {
  color: #558b2f;
  margin-bottom: 10px;
}

/* Fungos Benefits */
.fungos-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.benefit-item {
  flex: 1 1 250px;
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(62, 39, 35, 0.05);
  max-width: 350px;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item i {
  font-size: 2rem;
  color: #558b2f;
  margin-bottom: 15px;
}

.benefit-item h4 {
  color: #558b2f;
  margin-bottom: 10px;
}

/* CTA Bölümü */
.cta {
  background-color: #8d6e63;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.pexels.com/photos/158651/news-newsletter-newspaper-information-158651.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
}

.cta h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta p {
  color: #fff;
  max-width: 600px;
  margin: 0 auto 30px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1 1 300px;
  height: 50px;
  padding: 0 20px;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
  margin-bottom: 10px;
  outline: none;
  font-family: inherit;
}

.newsletter-form button {
  height: 50px;
  padding: 0 25px;
  flex: 0 0 auto;
  margin-bottom: 10px;
}

/* About Bölümü */
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1 1 400px;
}

.about-text {
  flex: 1 1 400px;
}

.about-text p {
  margin-bottom: 15px;
}

.about-cta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Testimonials */
.testimonials {
  background-color: #efebe9;
  padding: 80px 0;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(62, 39, 35, 0.05);
}

.quote {
  font-style: italic;
  position: relative;
  padding: 0 20px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #5d4037;
}

.quote::before {
  content: '"';
  font-size: 3rem;
  color: #a1887f;
  opacity: 0.3;
  position: absolute;
  left: -10px;
  top: -20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.author-name {
  font-weight: 600;
  color: #558b2f;
}

.author-title {
  font-size: 0.9rem;
  color: #5d4037;
}

/* Pulse Button */
.pulse-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(85, 139, 47, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(85, 139, 47, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(85, 139, 47, 0);
  }
}

/* Resim Stilleri */
.image-container {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
}

.section-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.section-image:hover {
  transform: scale(1.05);
}

.centered-image {
  text-align: center;
  margin-bottom: 30px;
}

.large-image {
  width: 100%;
  max-width: 800px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(62, 39, 35, 0.1);
}

/* Buton Stilleri */
.button-container {
  margin-top: 20px;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  background-color: #7cb342;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin: 0 10px 10px 0;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #558b2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(85, 139, 47, 0.2);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #7cb342;
  color: #fff;
}

.btn-outline:hover {
  background-color: #7cb342;
  color: #fff;
}

.hero-buttons {
  margin-top: 30px;
}

/* Header Stili */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(62, 39, 35, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 120px;
  max-height: 60px;
  height: auto;
  object-fit: contain;
}

.logo span {
  font-size: 32px;
  font-weight: 700;
  color: #558b2f;
  margin-left: 10px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 18px;
}

nav ul li:first-child {
  margin-left: 0;
}

nav ul li a {
  display: flex;
  align-items: center;
  height: 48px;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 5px 0;
  position: relative;
  transition: all 0.3s ease;
  color: #5d4037;
}

nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #7cb342;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #558b2f;
}

nav ul li a:hover:after {
  width: 100%;
}

nav ul li a.active {
  color: #558b2f;
}

nav ul li a.active:after {
  width: 100%;
}

/* Ana İçerik Stili */
main {
  margin-top: 80px;
}

section {
  padding: 80px 0;
}

.hero {
  background-color: #6a8d4f;
  color: #fff;
  text-align: center;
  padding: 150px 0;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(85, 139, 47, 0.4);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  color: #fff;
}

/* Sayfa Başlık Bölümü */
.page-header {
  background-color: #6a8d4f;
  color: #fff;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
}

.page-header .overlay {
  background-color: rgba(85, 139, 47, 0.6);
}

.page-header h2 {
  font-size: 3rem;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Sayfa İçerik Bölümü */
.content-section {
  padding: 60px 0;
  background-color: #f5f5f0;
}

.page-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(62, 39, 35, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.page-content h3 {
  color: #558b2f;
  font-size: 1.8rem;
  margin: 30px 0 15px;
}

.page-content h3:first-child {
  margin-top: 0;
}

.page-content p {
  margin-bottom: 20px;
}

/* Özellik Listesi */
.feature-list {
  list-style: none;
  margin: 30px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  background-color: #f1f8e9;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(62, 39, 35, 0.1);
}

.feature-list li i {
  color: #558b2f;
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 5px;
}

.feature-list li div {
  flex: 1;
}

.feature-list h4 {
  color: #558b2f;
  margin-bottom: 5px;
}

/* Madde İşaretli Liste */
.bullet-list {
  margin: 20px 0 30px 20px;
}

.bullet-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.bullet-list li:before {
  content: "•";
  color: #558b2f;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.section-block {
  flex: 0 0 48%;
  background-color: #fff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(62, 39, 35, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(62, 39, 35, 0.1);
}

.section-block h3 {
  color: #558b2f;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.fungos {
  background-color: #fff;
  text-align: center;
}

.fungos h3 {
  color: #558b2f;
  font-size: 2rem;
  margin-bottom: 20px;
}

.products {
  background-color: #f1f8e9;
  text-align: center;
}

.products h3 {
  color: #558b2f;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about {
  background-color: #fff;
  text-align: center;
}

.about h3 {
  color: #558b2f;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Footer Stili */
footer {
  background-color: #dcedc8;
  color: #3e2723;
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-info {
  flex: 1 1 300px;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #aed581;
  margin-bottom: 10px;
}

.footer-links {
  flex: 1 1 200px;
  margin-bottom: 30px;
}

.footer-links h4,
.contact h4 {
  color: #aed581;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #558b2f;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #7cb342;
}

.contact {
  flex: 1 1 200px;
  margin-bottom: 30px;
}

.contact a {
  color: #558b2f;
  transition: color 0.3s ease;
}

.contact a:hover {
  color: #7cb342;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #558b2f;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }

  nav ul {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 0 10px 10px;
  }

  .feature-list li {
    flex-direction: column;
  }

  .feature-list li i {
    margin-bottom: 10px;
  }

  .section-block {
    flex: 0 0 100%;
  }

  .features-grid {
    flex-direction: column;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .about-content {
    flex-direction: column;
  }

  .page-content {
    padding: 25px;
  }

  .category-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 50px 0;
  }

  .large-image {
    height: 300px;
  }

  .page-header h2 {
    font-size: 2rem;
  }

  .count-item {
    margin: 0 10px;
  }

  .count-number {
    font-size: 1.5rem;
  }

  .count-label {
    font-size: 0.7rem;
  }
}

/* Products Bölümü */
.products-content {
  max-width: 900px;
  margin: 0 auto;
}

.products-description {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.products-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.category-item {
  flex: 1 1 250px;
  text-align: center;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(62, 39, 35, 0.05);
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(62, 39, 35, 0.1);
}

.category-item i {
  font-size: 2.5rem;
  color: #558b2f;
  margin-bottom: 20px;
  display: block;
}

.category-item h4 {
  color: #558b2f;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.category-item p {
  color: #5d4037;
  font-size: 0.95rem;
}

/* Dropdown Menü Stilleri */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
}

.dropdown-toggle i {
  margin-left: 5px;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 180px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  color: #5d4037;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: #f1f8e9;
  color: #558b2f;
}

.dropdown-menu li a:after {
  display: none;
}

/* Responsive Dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    background-color: #f9f9f9;
    margin: 5px 0;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-toggle {
    justify-content: center;
  }
}
