@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --text-light: #ccc;
  --text-lighter: #ddd;
  --border-fade: rgba(255, 255, 255, 0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #111;
  overflow: hidden;
  color: white;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 30px;
  height: 60px;
  z-index: 1000;
}

.logo img {
  height: 45px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.logo-hover:hover {
  transform: scale(1.2);
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  color: white;
  text-decoration: none;
  padding-bottom: 5px;
  position: relative;
  font-weight: 500;
}

.menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1.5px;
  background-color: white;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s;
}

.menu a:hover::after,
.menu a.active::after {
  width: 60%;
}

main {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 50px;
  display: flex;
  transition: transform 0.6s ease;
}

.page {
  min-width: 100vw;
  height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
}

/* Slider */
.slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  user-select: none;
  pointer-events: none;
}

.slides img.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.overlay-content h1 {
  font-size: 2.2rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-weight: 700;
}

.overlay-content h2 {
  font-size: 1.8rem;
  letter-spacing: 2px;
  font-weight: 500;
  opacity: 0.8;
}

.slider-logo {
  width: 180px;
  margin-bottom: 20px;
  user-select: none;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.slider-buttons {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.slider-btn {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-btn:hover,
.slider-btn.active {
  background-color: white;
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 30px;
  font-size: 12px;
  z-index: 999;
  display: flex;
  align-items: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.footer-left img {
  height: 25px;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.footer-center nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.footer-center a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
}

.footer-center p {
  margin-top: 3px;
  opacity: 0.6;
  font-size: 10px;
  text-align: center;
  width: 100%;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-right img {
  height: 18px;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.3s ease;
  cursor: pointer;
}

.footer-right img:hover {
  filter: grayscale(0%) brightness(1);
}

/* Hakkımızda Bölümü */
.hakkimizda-page {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
  height: calc(100vh - 110px);
  overflow-y: auto;
}

.hakkimizda-container {
  max-width: 1100px;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.hakkimizda-baslik {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.hakkimizda-baslik::after {
  content: "";
  display: block;
  width: 70%;
  max-width: 600px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 10px auto 30px;
}

.hakkimizda-aciklama {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Hakkımızda kutular */
.hakkimizda-box-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: nowrap; /* Alt satıra geçmesin */
  width: 100%;
}

.hakkimizda-box {
  flex: 0 0 45%;
  max-width: 45%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hakkimizda-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.hakkimizda-box ul {
  list-style: none;
  padding: 0;
}

.hakkimizda-box ul li {
  margin-bottom: 8px;
  color: #eee;
  font-size: 1rem;
}

.hakkimizda-box a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hakkimizda-box a:hover {
  color: #fff;
}

/* Hizmetler bölümü */
.hizmetler-page {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
  height: calc(100vh - 110px);
  overflow-y: auto;
}

.hizmetler-container {
  max-width: 1200px;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  width: 100%;
}

.hakkimizda-baslik {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.hakkimizda-underline {
  width: 70%;
  max-width: 600px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 10px auto 30px;
}

.hakkimizda-aciklama {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.hizmetler-box-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.hizmetler-box-wrapper .hakkimizda-box {
  flex: 0 0 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  min-height: 140px;
  padding: 20px 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: #eee;
  background: transparent;
  font-size: 0.9rem;
  line-height: 1.3;
  box-sizing: border-box;
}

.hizmetler-box-wrapper .hakkimizda-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: white;
}

/* Responsive küçük ekranlarda 1 veya 2 kolona geçiş */
@media (max-width: 900px) {
  .hizmetler-box-wrapper .hakkimizda-box {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media (max-width: 600px) {
  .hizmetler-box-wrapper .hakkimizda-box {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/* Fiyat Listesi Bölümü */
.fiyat-page {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
  height: calc(100vh - 110px);
  overflow-y: auto;
}

.fiyat-container {
  max-width: 1100px;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.fiyat-baslik {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.fiyat-underline {
  width: 70%;
  max-width: 600px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 10px auto 30px;
}

.fiyat-box-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.fiyat-box {
  flex: 0 0 30%;
  max-width: 30%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: left;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: transparent;
  cursor: default;
  transition: none; /* Hover geçiş efekti kaldırıldı */
}

/* Hover efekti kaldırıldı, bu bloğu silebilirsin */
/*
.fiyat-box:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
*/

.fiyat-box h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.fiyat-box p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.4;
}

.fiyat-tutar {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

/* SSS Bölümü */
.sss-page {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
  height: calc(100vh - 110px);
  overflow-y: auto;
}

.sss-container {
  max-width: 1100px;
  padding: 60px 20px;
  text-align: left;
  color: #fff;
}

.sss-baslik {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.sss-underline {
  width: 70%;
  max-width: 600px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 10px auto 30px;
}

.sss-box-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.sss-box {
  flex: 0 0 30%;
  max-width: 30%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: left;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: transparent;
  cursor: default;
  transition: none; /* Hover geçiş efekti kaldırıldı */
}

/* Hover efekti kaldırıldı, bu bloğu silebilirsin */
/*
.sss-box:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
*/

.sss-box h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.sss-box p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.4;
}
.iletisim-page {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
  height: calc(100vh - 110px);
  overflow-y: auto;
  color: #fff;
}

.iletisim-container, .iletisim-container * {
  font-family: 'Poppins', sans-serif;
  font-weight: 400; /* Normal */
  font-size: 1rem; /* Orta büyüklük */
  color: #ccc; /* Açık gri, diğer bölümlerle uyumlu */
  line-height: 1.5;
}


.iletisim-baslik {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.iletisim-underline {
  width: 70%;
  max-width: 600px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 10px auto 30px; /* yatay ortalamak için otomatik sağ ve sol margin */
}

.iletisim-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.iletisim-info {
  flex: 1 1 350px;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ccc;
}

.iletisim-info p {
  margin-bottom: 16px;
}

.iletisim-info strong {
  color: #fff;
}

.iletisim-info a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.iletisim-info a:hover {
  color: #fff;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #ccc;
}

.social-link img.social-icon {
  width: 20px;
  height: 20px;
  filter: none; /* Efekt kaldırıldı, orijinal renk */
  transition: none;
}

.social-link:hover {
  color: #fff;
}

.iletisim-map {
  flex: 1 1 400px;
  min-width: 600px;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}


.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 80px; /* Footer üstünde kalması için yukarı alındı */
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10000;
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;

   filter: none; /* Orijinal renk kalır */

}

.whatsapp-float:hover img {
  filter: none;
}

