
    
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: 'Orbitra Sans', sans-serif , 'Judson', serif ,'Courgette', cursive;
  background-color:#eaeaea ;
  overflow-x: hidden;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
}
:root {
  --beyaz-zemin: #eaeaea;
  --koyu-gri: #333;
  --turuncu-vurgu: #ff751f;
  --orbitra-mavi: #5271ff;
  --saf-beyaz: #fff;
}




/* Genel navbar yapısı start */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 90px;
  background-color:#eaeaea;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0;
  margin: 0;
  z-index: 1000;
}

/* Logo */
.logo-container a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  text-decoration: none;
}
.logo-container img {
  height: 80px;
  width: auto;
  padding-top: 10px;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;  
  line-height: 1.2;
}
.brand-main {
  font-size: 30px;
  font-weight: 600;
  color: var(--orbitra-mavi);
  font-family: 'Judson', serif;
}
.brand-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--turuncu-vurgu);
  margin-top: 2px;
  font-family: 'Courgette', cursive;
}
@media (max-width: 768px) {
  .navbar {
    padding: 6px 16px;
  }
  .logo-container {
    gap: 10px;
    padding: 6px;
  }
  .logo-container img {
    height: 60px;
  }
  .brand-main {
    font-size: 20px;
  }
  .brand-sub {
    font-size: 12px;
    margin-top: 1px;
  }
}

/* Menü */
/* Hamburger */
.hamburger {
  display: block;
  font-size: 28px;
  color:var(--koyu-gri);
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

/* Menü - Mobilde gizli */
.menu {
  display: none;
  flex-direction: column;
  background-color:var(--beyaz-zemin);
  position: absolute;
  top: 80px;
  right: 0;
  width: 210px;
  z-index: 1000;
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.menu.active {
  display: flex;
}
.menu li {
  list-style: none;
}
.menu li a {
  display: block;
  padding: 12px 16px;
  color:var(--orbitra-mavi);
  text-decoration: none;
  font-size: 16px;
}
/* Dropdown */
.dropdown {
  position: relative;
}
.submenu {
  display: none;
  flex-direction: column;
  background-color:var(--beyaz-zemin);
  padding: 5px 0;
  border-radius: 8px;
  margin-top: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1001;
  position: static;
}
.dropdown.open .submenu {
  display: flex;
}
.submenu li a {
  padding: 10px 20px;
  color:var(--koyu-gri);
  font-size: 15px;
  white-space: nowrap;
}
.submenu li a:hover {
  color: #5271ff;
}
/* Masaüstü görünümü */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }

  .menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: static;
    background-color: transparent;
    width: 50%;
    padding: 0;
    gap: 24px;
  }

  .submenu {
    position: absolute;
    top: 80%;
    left: 0;
    display: none;
    min-width: 180px;
  }


  .dropdown:hover .submenu {
    display: flex;
  }
}

/* Genel navbar yapısı end */


/* Ana görsel slider start */
.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px; 
  margin-top: 0px;
}

input[type="radio"] {
  display: none;
}

.carousel-track {
  display: flex;
  width: 300%;
  height: auto;
  margin-top: 0px;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 100vw;
  height: auto;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  box-sizing: border-box;
}
@media (max-width: 768px) {
.slide img {
   width: 100%;
   height: auto;
   object-fit: contain;
   margin-top: 90px;
    }
}

/* Nokta navigasyonu */
.carousel-nav {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 10;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color:var(--saf-beyaz);
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s;
}

/* Aktif slayt için nokta vurgusu */
input#slide1:checked ~ .carousel-nav label[for="slide1"],
input#slide2:checked ~ .carousel-nav label[for="slide2"],
input#slide3:checked ~ .carousel-nav label[for="slide3"] {
  opacity: 1;
}

/* Slayt geçişleri */
input#slide1:checked ~ .carousel-track {
  transform: translateX(0vw);
}
input#slide2:checked ~ .carousel-track {
  transform: translateX(-100vw);
}
input#slide3:checked ~ .carousel-track {
  transform: translateX(-200vw);
}

/* Ana görsel slider end */

.section-divider {
  width: 80%;
  margin: 0 auto 20px auto;
  border: none;
  border-top: 1px solid #ccc;
}

/* hizmetlerimiz start */
.services {
  padding: 20px 20px;
  text-align: center;
  background-color: var(--beyaz-zemin);
}
.services h2 {
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: 10px;
  color: var(--turuncu-vurgu);
}
/* Ortak kutu stili */
.service-item {
  width: 200px;
  padding: 16px;
  margin: 10px;
  background-color:#fff;
  border: 1px solid #ddd;
  color: var(--koyu-gri);
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}
.service-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Üst sıra: 4 kutu ortalanmış */
.top-row {
  text-align: center;
}
/* Alt sıra: 2 kutu ortalanmış */
.bottom-row {
  text-align: center;
}
/* Başlık */
.service-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color:var(--koyu-gri);
  text-align: center;
  margin-bottom: 10px;
}
/* Açıklama metni */
.service-item p {
  text-align: center;
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  margin: 0 auto 12px;
  max-width: 90%;
}
.btn-incele {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background-color: var(--orbitra-mavi);
  color: var(--saf-beyaz);
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}
.btn-incele:hover {
  background-color: #0056b3;
}
/* Responsive: mobilde alt alta */
@media (max-width: 768px) {
  .service-item {
    width: 65%;
    max-width: 260px;
    padding: 12px;
    font-size: 0.95rem;
    margin: 8px auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
  }

  .service-item h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .service-item p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}
/* hizmetlerimiz end */

/* hakkımızda satart */
#hakkimizda h2 {
  font-size: 2rem;
  text-align: center;
  color: var(--turuncu-vurgu);
  margin-bottom: 24px;
}
#hakkimizda span {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--koyu-gri);
  margin-top: 24px;
  margin-bottom: 8px;
  text-align: center;
}
/* Paragraflar */
#hakkimizda p {
  max-width: 600px;        
  margin: 0 auto;           
  padding: 40px 20px;    
  color: #555;
  text-align: center;     
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
}
/* hakkımızda end */

/* footer start */
.site-footer {
  background: linear-gradient(
  115deg,
  #333333 0%,   /* koyu gri */
  #666666 35%,  /* orta gri */
  #b3b3b3 70%,  /* açık gri */
  #ffffff 100%  /* beyaz */
);
  color: #fff;
  padding: 15px 20px;

}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; 
  max-width: 1200px;
  min-height: 100px;
  margin: 0 auto;
  position: relative;
}
/* Copyright solda */
.copyright {
  flex: 1;
  left: 30px;
  font-size: 14px;

}
.copyright span {
  color: var(--turuncu-vurgu);
}
/* Sosyal ikonlar ortada */
.social-icons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex: 1;
  }
.social-icons a {
  width: 30px;
  height: 30px;
  background-color: var(--saf-beyaz); 
  display: flex;
  align-items: center;  
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.instagram i {
  font-size: 40px;
  background: radial-gradient(circle at 30% 107%,
   #fdf497 0%, #fdf497 5%, #fd5949 45%,
   #d6249f 60%, #285AEB 90%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none; 
}
.facebook i {
  font-size: 40px;      
  color: #1877F2;       
  transition: color 0.3s;
}
.x-twitter i {
  font-size: 40px;
  color: #000000;
 
}
/* 📱 Mobil görünüm */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center; 
    text-align: center;
  }
  /* İkonları üste al */
  .social-icons {
    order: -1;
    margin-bottom: 10px;
  }
  /* Copyright alta iner */
  .copyright {
    order: 2;
    text-align: center;
    margin-top: 10px;
  }
}
.floating-contact-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}
.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.email-icon {
  background-color: #00167a;
  background-image: url('https://img.icons8.com/ios-filled/50/ffffff/email.png');
}
.phone-icon {
  background-color: #ff751f;
  background-image: url('https://img.icons8.com/ios-filled/50/ffffff/phone.png');
}
.whatsapp-icon {
  background-color: #25D366;
  background-image: url('https://img.icons8.com/ios-filled/50/ffffff/whatsapp.png');
}
.icon:hover {
  transform: scale(1.1);
}
@media (max-width: 600px) {
  .floating-contact-icons {
    bottom: 10px;
    right: 10px;
    gap: 8px;
  }

  .icon {
    width: 40px;
    height: 40px;
    background-size: 50%;
  }
  .copyright p {
  text-align: center;
  margin: 0 auto;
}

}

/* footer end */

