/* style.css */

body {
  margin: 0;
  font-family: 'Pacifico', cursive;
  background-color: #111;
  color: #eee;
}
h1, h2, h3, h4, h5, h6,
input, textarea, button, label {
 font-family: 'Pacifico', cursive;
  font-weight: 500;
}
.top-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.logo-container img {
  width: 260px;
  height: auto;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #eee;
  margin: 0 10px;
  font-size: 48px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1db954;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

li {
  margin-bottom: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin:20px auto;
  max-width: 95%;
  justify-content: center;
}


.gallery img {
  width: 100%;
	
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  display: none;
  pointer-events: none;
}

.gallery-item:hover .zoom-icon {
  display: block;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.form input,
.form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.form button {
  background-color: #1db954;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form button:hover {
  background-color: #14833b;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 4px solid white;
  border-radius: 8px;
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: #888;
  font-size: 14px;
}

.slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-text {
  position: absolute;
  top: 20px;           /* Yukarıdan boşluk */
  left: 20px;          /* Soldan boşluk */
  font-family: 'pacifico', cursive;
  font-size: 26px;
  color: white;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 2;
  text-transform: none;
}


/* Responsive */
@media (max-width: 768px) {
  .slider {
    height: 300px;
  }

  .slide-text {
    font-size: 28px;
  }
}

/* Tablet görünüm için */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobil görünüm için */
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery img {
    height: 140px;
  }
}



@media (max-width: 768px) {
  .about-slider {
    height: 300px;
  }

  .about-slider img {
    height: 300px;
  }
}
.randevu-text {
  margin-top: 10px;
  font-size: 26px;            /* 👈 Biraz küçültülmüş */
  color: #ffffff;
  font-weight: 300;           /* 👈 İnceltilmiş yazı */
  letter-spacing: 0.5px;      /* Daha zarif aralık */
  font-family: 'Pacifico', cursive;
  animation: fadeIn 1s ease;
  text-transform: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Daha hafif bir gölge */
}

.social-icons a {
  color: #eee;
  margin: 0 10px;
  font-size: 48px;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2) rotate(10deg);
}

/* ÖZEL RENKLER */
.social-icons a[href*="wa.me"] i {  /* WhatsApp */
  color: #25D366;
}

.social-icons a[href*="instagram.com"] i {  /* Instagram */
  color: #C13584;
}
.services {
  background-color: #1c1c1c;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Pacifico', cursive;
}

.services-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: white;
}

.services-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.service-box {
  max-width: 300px;
  padding: 20px;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(44%) sepia(43%) saturate(670%) hue-rotate(131deg) brightness(90%) contrast(90%);
}

.service-box h3 {
  font-size: 24px;
  font-weight: 500;
  color: white;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 15px;
  font-family: 'Quicksand', sans-serif;
  color: #ddd;
}

.artist-section {
  width: 100%;
  overflow: hidden;
}

.artist-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.artist-name {
  font-size: 48px;         /* Yazı boyutu */
  font-weight: 500;        /* Kalınlık (isteğe bağlı artırabiliriz) */
  color: #fff;             /* Yazı rengi, beyaz örneği */
  font-family: 'pacifico', cursive; /* İsteğe göre değişebilir */
  margin-top: 10px;
}
.artist-name {
  margin-bottom: 0; /* Üst yazının alt boşluğunu sıfırlar */
}

.artist-title {
  margin-top: 0;     /* Alt yazının üst boşluğunu sıfırlar */
}


