* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
}

/* 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;
    }
  }

.logo {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.logo img {
    height: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.map-container {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

.map {
    width: 100%;
    height: 400px;
    border: none;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-item .icon img {
    width: 30px;
    height: 30px;
}

.contact-item .text {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    flex-grow: 1;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.social-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

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;
}
.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);
}
