html {
  scroll-behavior: smooth;
}

/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: #ffffffdd;
  backdrop-filter: blur(6px);
  padding: 10px 30px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
header.hide {
  transform: translateY(-100%);
  transition: transform 0.5s ease;
}

header.show {
  transform: translateY(0);
  transition: transform 0.5s ease;
}


.logo img {
  height: 50px;
  width: auto;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #b99a66;
}

/* Hero Bölüm */
.hero {
  background: url('https://images.unsplash.com/photo-1530023367847-a683933f4172?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
  padding: 0 20px;
  text-align: center;
}

.hero-text h1 {
  font-size: 3rem;
}

.hero-text p {
  font-size: 1.3rem;
  margin-top: 10px;
}

/* Bölümler */
.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #b99a66;
}

/* Hizmetler */
.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  font-size: 1.1rem;
  margin: 10px 0;
}

/* Galeri */
.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}
#hizmetler {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 20px;
  color: #333;
  font-size: 18px;
  line-height: 1.6;
}
.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  border: 4px solid #ddd; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05); 
  border-color: gold;
}
.video-container {
  position: relative;
  max-width: 800px; 
  margin: 20px auto; 
  border: 4px solid #ddd; 
  border-radius: 10px;
  overflow: hidden; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
}


.video-container video {
  width: 100%;
  height: auto;
  display: block;
}
.video-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Masaüstünde 3 sütun */
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.video-item {
  border: 3px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.video-item video {
  width: 100%;
  height: auto;
  display: block;
}

/* 📱 Mobil uyum */
@media (max-width: 768px) {
  .video-gallery {
    grid-template-columns: 1fr; /* Mobilde 1 sütun */
  }
}

#hizmetler h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #b99a66;
}

#hizmetler h3 {
  font-size: 26px;
  margin-top: 10px;
  font-weight: 600;
}

#hizmetler p.highlight {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #555;
}

#hizmetler hr {
  border: none;
  height: 2px;
  background: #1d1818;
  width: 60px;
  margin: 20px auto;
  border-radius: 2px;
}

#hizmetler .service-item {
  text-align: left;
  margin: 20px 0;
}

#hizmetler .service-item h4 {
  font-size: 20px;
  color: #444;
  margin-bottom: 10px;
}

#hizmetler .service-item p {
  font-size: 17px;
  color: #555;
}

#hizmetler p em {
  font-style: italic;
  color: #777;
  font-size: 16px;
  margin-top: 30px;
  display: block;
}


/* İletişim */
.iletisim form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.iletisim input,
.iletisim textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.iletisim button {
  background-color: #b99a66;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.iletisim button:hover {
  background-color: #a38351;
}

.map iframe {
  border-radius: 8px;
  width: 100%;
  height: 300px;
}

/* WhatsApp Balonu */
.whatsapp-balon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 999;
  transition: background 0.3s;
}
.whatsapp-balon:hover {
  background-color: #1cb157;
}

/* Yukarı Çık Butonu */
#toTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  font-size: 18px;
  background-color: #b99a66;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: background 0.3s;
}
#toTopBtn:hover {
  background-color: #a38351;
}

/* Footer */
footer {
  background-color: #f5f5f5;
  padding: 20px;
  text-align: center;
  color: #555;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
