/* Ana görsel arka plan alanı */
.mainImage {
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;     
  height: 700px;
  position: relative;
  color: white;
}

/* İçerik alanı (zaten container sınıfı boşluk sağlıyor) */
.mainImage .container {
  z-index: 1;
}

/* Başlık yazısı */
.mainImage h4 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* Açıklama metni */
.mainImage span {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  max-width: 600px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Şık kahverengi buton görünümü */
.mainImage .mainButton {
  display: inline-block;
  background-color: #6f4e37;  
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* Hover efekti: daha koyu kahverengi + yukarı kayma */
.mainImage .mainButton:hover {
  background-color: #5a3d2b;
  transform: translateY(-2px);
}












/* Slider Container */
.slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

/* Slide Styling */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

/* Dot Navigation */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 10;
}

.slider-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.slider-dot.active, .slider-dot:hover {
  background-color: white;
}

/* Original Styles */
.mainImage .container {
  z-index: 1;
  padding-left: 50px;
}

.mainImage h4 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.mainImage span {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  max-width: 600px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.mainImage .mainButton {
  display: inline-block;
  background-color: #6f4e37;
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.mainImage .mainButton:hover {
  background-color: #5a3d2b;
  transform: translateY(-2px);
}