@charset "utf-8";
/* CSS Document */

/* Color & Font-Family Referansları:
 #220122 - Koyu Mürdüm
 #7c1f77 - Koyu Pembe
 #ffb280 !important - Kavuniçi
 #f3e6e3 - Çok Açık Pembe
 #d8cfc4 - Lila 
 rgba(216,207,196,0.85) - Lila 
 background: radial-gradient(circle,rgba(34, 1, 34, 1) 0%, rgba(124, 31, 119, 1) 47%, rgba(255, 178, 128, 1) 100%) 
 background: radial-gradient(circle,rgba(34, 1, 34, 1) 0%, rgba(124, 31, 119, 0) 47%, rgba(255, 178, 128, 1) 100%) 
 #eec - Açık Bej (Hex kısa yazım: #eeccbb anlamına gelir)
 -----
 font-family: 'Segoe UI', sans-serif; 



/* ---------------------- */
/* GENEL */
/* ---------------------- */
.hero {
  width: 90%;    /* Genişliği sınırla */
  margin: 20px auto;       /* Ortala */
  padding: 20px 45px;        /* İstersen iç boşluk ekle */
  border-radius: 15px;  /* Köşeleri yuvarlat */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Hafif gölge opsiyonel */
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(238, 204, 187, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap; /* Mobilde alt alta düşmesi için */

}

.hero-text {
  flex: 1 1 300px; /* Minimum 300px genişlik alır, esner */
  font-family: 'Segoe UI', sans-serif;
}

.hero-text h1 {
  font-size: 2.2rem;
  color: #220122;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.hero-image {
  flex: 0 0 400px; /* Sabit genişlik */
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hediye-sec-butonu {
  text-decoration: none;
  color: white;
  background: #220122;
  font-size: 1rem;
  font-family: 'Segoe UI', sans-serif;
  padding: 10px 20px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.hediye-sec-butonu:hover {
  background: #7c1f77;
  color: white;
}

.hediye-sec-butonu:active {
  background: #ffb280;
  color: black;
}





@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-image {
    width: 100%;
    height: 200px;
  }
	
  .hero-text, .hero-image {
    width: 100%;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }
}
