* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: white;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
  }

  .logo-nav img {
    height: 140px;
    width: 140px;
  }

  .navbar-menu {
    display: flex;
    list-style-type: none;
  }

  .navbar-menu li {
    position: relative;
  }

  .navbar-menu li a {
    display: block;
    color: #333;
    padding: 25px 18px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .navbar-menu li a:hover {
    color: #4CAF50;
  }

  .nav-contact-btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }

  .hamburger {
    width: 30px;
    height: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  /* Mobil */
  @media (max-width: 992px) {
    .hamburger {
      display: flex;
    }

    .navbar-menu {
      flex-direction: column;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background-color: white;
      transform: translateY(-200%);
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      z-index: 999;
      padding: 1rem 0;
    }

    .navbar-menu.active {
      transform: translateY(0);
      opacity: 1;
    }

    .navbar-menu li {
      width: 100%;
      text-align: center;
      border-bottom: 1px solid #eee;
    }

    .navbar-menu li a {
      padding: 15px;
      width: 100%;
    }

    .nav-contact-btn {
      display: none;
    }
  }


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    padding-top: 80px;
}

.hero-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-title {
    font-size: 2.5rem;
    text-align: center;
    margin: 2rem 0;
    font-weight: bold;
    color: #333;
}

.about-section {
    margin: 4rem 0;
}

.info-item {
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
}

.location-icon {
    flex-shrink: 0;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #333;
}

.info-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.info-content p {
    font-size: 1.1rem;
    color: #555;
}

.image-showcase {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.showcase-text {
    flex: 1;
    padding-right: 2rem;
}

.showcase-image {
    flex: 1;
}

.showcase-image img {
    width: 100%;
    border-radius: 8px;
}

.values-section {
    margin: 4rem 0;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.values-list li:before {
    content: "✓";
    margin-right: 10px;
    color: #5a4830;
    font-weight: bold;
}

.values-image {
    margin-top: 2rem;
}

.values-image img {
    width: 100%;
    border-radius: 8px;
}

.cta-button {
    display: block;
    width: max-content;
    padding: 1rem 2rem;
    background-color: #ab8651;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 5px;
    margin: 2rem 0;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #8e6e42;
}

footer {
    background-color: #333;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1 1 250px;
    text-align: left;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #b85c38;
}

.footer-column p, .footer-column a {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #b85c38;
}

.footer-column i {
    margin-right: 0.5rem;
    color: #b85c38;
}

.copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #ccc;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-links {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 0 0.7rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .image-showcase {
        flex-direction: column;
    }
    
    .showcase-text {
        padding-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
}
.copyright-container {
    display: inline-block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); /* Instagram renk geçişi */
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .copyright-container:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
  }
  
  .copyright-container:active {
    transform: scale(0.97);
  }
  