* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
}

/* Menü */
#menu {
    height: 80px;
    padding: 0 20px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

#logo img {
    height: 70px;
}

nav a {
    text-decoration: none;
    color: #bf00bf;
    margin-right: 25px;
    line-height: 80px;
    
}

nav a:hover {
    border-bottom: 2px solid #bf00bf;
}

.ikon {
    margin-right: 7px;
    font-size: 16px;
}

/* Giriş Alanı */
#anasayfa {
    height: 600px;
    background-image: url("../resimler/arkaplangiriş.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#black {
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#icerik {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: left;
    z-index: 2;
    width: 80%;
    max-width: 600px;
    font-size: 20px;
}

/* Hakkımızda */
#hakkimizda {
    background-color: #bf00bf;
    padding: 50px 20px;
    text-align: center;
    color: white;
}

#hakkimizda h3 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

#hakkimizda p {
    font-size: 18px;
    line-height: 1.8;
    color: #f2f2f2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Ürünler */
#urunler {
    background-color: white;
    padding: 50px;
    text-align: center;
}

#urunler h3 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #bf00bf;
}

/* Grid Yapısı */
.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Kart */
.card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    height: 500px;
}

.card:hover {
    transform: scale(1.03);
}

.card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.baslikcard {
    font-size: 24px;
    color: #bf00bf;
    margin: 15px;
    font-weight: 700;
}

.cardp {
    padding: 0 15px 20px 15px;
    font-size: 18px;
    color: #333;
    line-height: 1.7;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr 1fr;
    }

    .card {
        height: 400px;
    }
}

@media (max-width: 480px) {
    #anasayfa h2 {
        font-size: 36px;
    }

    #icerik {
        font-size: 16px;
    }

    .container {
        grid-template-columns: 1fr;
    }

    .card {
        height: 350px;
    }
}
#iletisim {
    background-color: #bf00bf;
    padding: 60px 20px;
    color: white;
    text-align: center;
  }
  
  #h3iletisim {
    font-size: 40px;
    margin-bottom: 50px;
  }
  
  .iletisim-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Form kutusu */
  .form-wrapper {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 300px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .form-control {
    flex: 1;
    padding: 14px;
    font-size: 16px;
    color: black;
    background-color: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  textarea.form-control {
    width: 100%;
    resize: vertical;
    min-height: 150px;
    margin-bottom: 20px;
  }
  
  .submit-btn {
    background-color: white;
    color: #bf00bf;
    font-size: 18px;
    padding: 14px 30px;
    border: 2px solid #bf00bf;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #bf00bf;
    color: white;
  }
  
  /* Adres kutusu */
  .adres-wrapper {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .adres-baslik {
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
  }
  
  .adresp {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.6;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
    }
  
    .iletisim-container {
      flex-direction: column;
      align-items: stretch;
    }
  
    .form-wrapper,
    .adres-wrapper {
      width: 100%;
    }
  }
  #footer {
    background-color: white;
    color: #bf00bf;
    text-align: center;
    padding: 20px 10px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 40px;
  }
  
  #footer p {
    margin: 0;
  }
  .detayli-incele-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
    background-color: #bf00bf;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    float: right;
    margin-right: 40px;
}

.detayli-incele-btn:hover {
    background-color: white;
    color: #bf00bf;
    border: 2px solid #bf00bf;
}
#hamburger {
  display: none;
  font-size: 30px;
  color: #bf00bf;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 80px;
    left: 0;
    padding: 20px 0;
    z-index: 1000;
  }

  nav a {
    margin: 10px 0;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
  }

  #hamburger {
    display: block;
  }

  nav.active {
    display: flex;
  }
}


