 /* Global Box Sizing */
    *, *::before, *::after {
      box-sizing: border-box;
    }

    /* GLOBAL AYARLAR */
    body {
      margin: 0;
      padding: 0;
      font-family: 'Khand', sans-serif;
      background-color: #ffffff;
      overflow-x: hidden; /* Yatay scroll engellendi */
    }
    
    html, body {
  overflow-x: hidden;
}

    .container {
      width: 70%;
      margin: 20px auto;
      padding: 0px;
    }
    
    .container-map {
      width: 60%;
      margin: 0 auto;
    }
    
    /* nav altındaki aktif öğe */
.nav-links li a.active {
  color: #C0A080;    /* site rengi */
  font-weight: 500;  /* bold */
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit; /* span içindeki yazı da renk değişimi olmadan kalır */
}

.gallery-tabs {
  text-align: center;
  margin-bottom: 20px;
}

.gallery-tabs .tab-button {
  padding: 10px 20px;
  margin: 0 5px;
  background-color: #eee;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color:#C0A080;
}

.gallery-tabs .tab-button.active {
  background-color: #C0A080;
  color: white;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}



.project-hero-voque {
  width: 100%;
  text-align: center;
  margin-top:105px;
}

.project-hero-voque video {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}




    /* NAVIGATION */
    nav {
      background-color: #f8f8f8;
      border-bottom: 1px solid #ddd;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
    }
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 70%;
      margin: 0 auto;
      padding: 15px 0;
      position: relative; /* Dropdown menü için referans */
    }
    /* Nav-logo: Firma logosu ve metin yan yana */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 2rem;
      font-weight: 700;
    }
    .nav-logo img {
      height: 50px;
      width: auto;
      object-fit: contain;
    }
    /* MASAÜSTÜ MENÜ */
    .nav-links {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-links li {
      margin: 0 15px;
      position: relative; /* Dropdown içeriğini konumlandırmak için */
    }
    .nav-links li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      cursor: pointer;
    }

    .nav-links li a:hover {
      color: #C0A080;
    }
    
    /* Dropdown menüdeki liste işaretlerini kaldır */
ul.dropdown-menu {
  list-style: none;   /* madde işaretini kaldır */
  margin: 0;          /* varsa varsayılan margin’i sıfırla */
  padding: 0;         /* varsa varsayılan padding’i sıfırla */
}

/* Alt öğelerin de işaretsiz olmasını garanti et */
ul.dropdown-menu li {
  list-style: none;
}

    
    /* Dropdown Menü (Projeler için) */
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%; /* Üst öğenin hemen altında */
      left: 0;
      background-color: #f8f8f8;
      min-width: 150px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
      z-index: 1000;
      flex-direction: column;
    }
    .dropdown-menu li {
      margin: 0;
    }
    .dropdown-menu li a {
      padding: 10px 15px;
      display: block;
      color: #333;
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .dropdown-menu li a:hover {
     
    }
    /* Dropdown açıkken */
    .dropdown.active .dropdown-menu {
      display: flex;
    }
    /* Aşağı ok simgesi */
    .nav-links li .arrow {
      font-size: 0.8em;
      margin-left: 5px;
    }
    
    /* Hamburger simgesi (Masaüstünde gizli, mobilde görünecek) */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      background-color: #C0A080;
      padding: 6px;
      border-radius: 4px;
      margin-left: auto;
      margin-right: 10px;
    }
    .hamburger span {
      width: 25px;
      height: 3px;
      background-color: #fff;
      margin: 3px 0;
      transition: all 0.3s ease;
    }
    
    /* SLIDER */
    .slider-container {
      position: relative;
      width: 100%;
      height: calc(100vh - 90px); /* 100vh’den nav yüksekliğini çıkar */
      overflow: hidden;
      margin-top: 90px; /* Sabit nav nedeniyle içerik nav altına gelsin */
    }
    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      transform: scale(0.8);
      opacity: 0;
      transition: transform 1.5s ease, opacity 1.5s ease;
    }
    .slide.active {
      transform: scale(1);
      opacity: 1;
    }
    .slide.exit {
      transform: scale(0.8);
      opacity: 0;
    }
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.7);
      object-position: contain;
      pointer-events: none; /* <=== EKLENECEK SATIR */
    }
    .slider-inner {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      width: 70%;
      margin: 0 auto;
      transform: translateY(-50%);
      
    }
    .slide-content {
      position: absolute;
      top: 50%;
      left: 15%;
      transform: translateY(-50%);
      width: 35%;
      color: #fff;
      padding: 20px;
      z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);  /* %60 opaklık */
  border-radius: 8px;
    }
    .slide-content h2 {
      font-size: 42px;
      margin-bottom: 10px;
      line-height: 1.2;
    }
    .slide-content p {
      font-size: 16px;
      margin-bottom: 20px;
      line-height: 1.4;
    }
    .slide-content a.cta-button {
  display: inline-block;
  background-color: rgba(255,255,255,0.9);
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  width: 100px;
  font-size: 20px;
  position: relative;
  z-index: 3; /* BUTONU ÜSTE ÇIKARIR */
  pointer-events: auto;
  cursor: pointer; 
    }
    .slide-content a.cta-button:hover {
      background-color: #fff;
       color: #333;
  text-decoration: none;
    }
    /* Tüm slide’ların z-index’ini varsayılan olarak düşük ayarla */
.slider-container .slide {
  z-index: 1;
  /* (isteğe bağlı) diğer slide’ların button’ları tıklamaması için:
  pointer-events: none;
  */
}

/* Sadece aktif slide’ı üstte tut */
.slider-container .slide.active {
  z-index: 2;
  /* (eğer pointer-events kullandıysanız:)
  pointer-events: auto;
  */
}

    .slider-dots {
      position: absolute;
      bottom: 20px;
      right: 20px;
      display: flex;
      gap: 8px;
      z-index: 2;
    }
    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #fff;
      opacity: 0.5;
      cursor: pointer;
      transition: opacity 0.3s;
    }
    .dot.active,
    .dot:hover {
      opacity: 1;
    }
    
    /* PROJELERİMİZ */
    .projects-section {
      background-color: #f9f9f9;
      padding: 60px 0;
    }
    .projects-section h2 {
      font-size: 30px;
      text-align: center;
      margin: 0 auto 40px;
      font-weight: 700;
    }


.project-item {
  display: flex;
  align-items: center;
  position: relative; /* içerik üstüne taşacak */
  overflow: visible;  /* taşmayı göster */
  margin-bottom: 60px;
}

.project-image1,
.project-image2 {
  flex: 0 0 70%;      /* resim %70 genişlik */
  max-width: 70%;
  height: auto;
  object-fit: cover;
}








    
    
    .project-image1:hover,
    .project-image2:hover {
      transform: scale(1.05);
    }
    
    
    .projects-section img {
  display: block;
}

.project-content {
  flex: 0 0 40%;      /* içerik kutusu %35 genişlik */
  margin-left: -10%;  /* resmin %10’u kadar üstüne taşı */
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 20px;
  border-radius: 4px;
  z-index: 2;         /* görselin üstünde kalsın */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
    
    
    
    
    
    .project-content h6 {
      color: #C0A080;
      text-transform: uppercase;
      letter-spacing: 4px;
      font-size: 17px;
      margin-bottom: 10px;
    }
    .project-content h3 {
      font-size: 32px;
      color: #fff;
      line-height: 1.25em;
      margin: 0;
    }
    .project-content p {
      font-size: 16px;
      margin-bottom: 20px;
      line-height: 1.4;
    }
    .project-content a.cta-button {
        display:block;          /* inline-block yerine */
  width:100%;
  box-sizing:border-box;  /* padding taşırmasın */
  text-align:center;      /* metni ortala (isteğe bağlı) */
      background-color: #C0A080;
      color: #fff;
      padding: 12px 24px;
      text-decoration: none;
      font-weight: 700;
      border-radius: 4px;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }
    .project-content a.cta-button:hover {
      background-color: #AF865D;
      transform: translateY(-2px);
    }

    /* MÜŞTERİ MEMNUNİYETİ */
    .testimonials-section {
      background-color: #f9f9f9;
      padding: 60px 0;
    }
    .testimonials-section h2 {
      font-size: 40px;
      text-align: center;
      margin-bottom: 40px;
      font-weight: 700;
    }
    .testimonials-container {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 20px;
      flex-wrap: wrap;
    }
    .testimonial-item {
      flex: 0 0 calc(33.333% - 20px);
      max-width: calc(33.333% - 20px);
      background: #fff;
      text-align: center;
      padding: 30px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }
    .testimonial-item:hover {
      transform: translateY(-5px);
    }
    .testimonial-quote p {
      font-size: 16px;
      font-style: italic;
      color: #666;
      margin-bottom: 20px;
    }
    .testimonial-author {
      font-size: 18px;
      font-weight: 600;
      color: #333;
    }

    /* ANA İÇERİK (Header & Main) */
    .container > header,
    .container > main {
      text-align: center;
      margin: 40px 0;
    }
    header h1 {
      font-size: 48px;
      margin-bottom: 10px;
    }
    header p {
      font-size: 20px;
      color: #666;
    }
    main p {
      font-size: 34px;
      line-height: 1.2;
    }
    
    /* MALZEME KALİTESİ & TEDARİKÇİLER */
    .suppliers-section {
      background: url('edirneliler_images/Malzeme_Arka_Plan.png') no-repeat center center;
      background-size: cover;
      padding: 80px 0;
      text-align: center;
      position: relative;
      color: #fff;
    }
    .suppliers-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      z-index: 0;
    }
    .suppliers-section > .container {
      position: relative;
      z-index: 1;
    }
    .suppliers-section h2 {
      font-size: 48px;
      margin-bottom: 20px;
      font-weight: 700;
      color: #fff;
    }
    .suppliers-section p {
      font-size: 20px;
      color: #eee;
      line-height: 1.5;
      margin-bottom: 40px;
      max-width: 800px;
      margin: 0 auto;
    }
    .brand-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .brand-logo {
      flex: 0 0 auto;
      width: 120px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .brand-logo img {
      width: 100%;
      height: auto;
      object-fit: contain;
      filter: grayscale(80%);
      transition: filter 0.3s;
    }
    .brand-logo img:hover {
      filter: grayscale(0%);
    }
    
        /* HERO */
    .hero { position: relative; width: 100%; height: 60vh; background: url('edirneliler_images/Hakkimizda/Hero.jpg') center/cover no-repeat; }
    .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: flex; justify-content: center; align-items: center; }
    .hero-overlay h1 { color: #fff; font-size: 48px; text-align: center; padding: 0 20px; }

    /* ABOUT */
    .about-text p { font-size: 18px; line-height: 1.6; margin-bottom: 20px; color: #333; }
    .about-container {
        width:70%;
        margin:0 auto;
    }
    
    
        /* MISSION & VISION */
    .split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
    .split-section div { background: #f9f9f9; padding: 30px; border-radius: 8px; }
    .split-section h3 { font-size: 24px; margin-bottom: 10px; color: #333; }
    .split-section p { font-size: 16px; line-height: 1.5; }

    /* VALUES */
    .values { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; margin-top: 40px; }
    .value-card { flex: 1 1 calc(33% - 20px); background: #fff; padding: 20px; border: 1px solid #eee; border-radius: 8px; text-align: center; }
    .value-card h4 { font-size: 20px; margin-bottom: 10px; color: #C0A080; }
    .value-card p { font-size: 14px; color: #555; }

    /* TEAM (basit) */
    .team { margin-top: 60px; }
    .team-members {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
    .team-members .member {
  text-align: center;
}
 .team-members .member img {
  width: 200px;             /* İstediğiniz genişlik/hedef boyut */
  height: 200px;            /* Kare yapısı için aynı yükseklik */
  object-fit: cover;
  border-radius: 50%;       /* DAİRE şeklini oluşturur */
  border: 4px solid #C0A080; /* Opsiyonel: ince bir kontur */
  margin-bottom: 15px;
}
    .member h5 { margin-top: 15px; font-size: 18px; font-weight: 600; }
    .member p { font-size: 14px; color: #666; }
    
    
    /* Blog List */
    .posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
    .post-card { background: #f9f9f9; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
    .post-card img { width: 100%; height: 180px; object-fit: cover; }
    .post-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
    .post-content h3 { font-size: 22px; margin: 0 0 10px; color: #333; }
    .post-content .date { font-size: 14px; color: #999; margin-bottom: 15px; }
    .post-content p { font-size: 16px; color: #555; flex: 1; }
    .post-content a.read-more { display: inline-block; margin-top: 20px; background: #C0A080; color: #fff; padding: 10px 20px; border-radius: 4px; transition: background 0.3s; }
    .post-content a.read-more:hover { background: #a77e5c; }

    /* Pagination */
    .pagination { display: flex; justify-content: center; gap: 10px; margin: 60px 0; }
    .pagination a { padding: 10px 15px; border: 1px solid #ddd; color: #333; border-radius: 4px; transition: background 0.3s; }
    .pagination a.active, .pagination a:hover { background: #C0A080; color: #fff; border-color: #C0A080; }

    /* Subscribe CTA */
    .subscribe { background: #f9f9f9; padding: 60px 0; text-align: center; }
    .subscribe p { font-size: 18px; margin-bottom: 20px; color: #333; }
    .subscribe input[type="email"] { padding: 12px; width: 300px; max-width: 80%; border: 1px solid #ddd; border-radius: 4px; margin-right: 10px; }
    .subscribe button { padding: 12px 24px; background: #C0A080; color: #fff; border: none; border-radius: 4px; cursor: pointer; transition: background 0.3s; }
    .subscribe button:hover { background: #a77e5c; }

      label { display: block; margin-bottom: 8px; font-weight: 500; color: #333; }
    input, textarea { width: 100%; padding: 12px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 4px; font-size: 16px; font-family: 'Khand', sans-serif; }
    button { background: #C0A080; color: #fff; padding: 14px 28px; font-size: 18px; border: none; border-radius: 4px; cursor: pointer; transition: background 0.3s;font-family: 'Khand', sans-serif;
 }
    button:hover { background: #a77e5c; }


/* ==========================================================================
   About Hero
   ========================================================================== */
.about-hero {
  background-color: #2c2c2c;     /* koyu arka plan */
  color: #ffffff;
  padding: 80px 0;
}

.about-hero__inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.about-hero__text {
  flex: 1;
}

.about-hero__text h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-hero__text p {
  color: #cccccc;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-hero__image {
  flex: 1;
  text-align: right;
}

.about-hero__image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}




    /* FOOTER STYLES */
    .site-footer {
      font-family: 'Khand', sans-serif;
      color: #333;

      background-color: #fff;
      margin-top: 40px;
    }
    .footer-top-line {
      width: 100%;
      height: 1px;

    }
    .footer-container {
      display: flex;
      justify-content: space-evenly;
      align-items: flex-start;
      flex-wrap: wrap;
    }
    .footer-container > div {
      flex: 1;
      min-width: 200px;
      text-align: center;
      margin: 10px;
    }
    .footer-brand h3 {
      font-size: 24px;
      margin-bottom: 10px;
    }
    .footer-brand p {
      font-size: 14px;
      color: #666;
      line-height: 1.4;
    }
    .footer-column {
      flex: 1 1 200px;
      min-width: 200px;
    }
    .footer-column h4 {
      font-size: 18px;
      margin-bottom: 15px;
      color: #000;
    }
    .footer-column p {
      font-size: 12px;
      color: #666;
      line-height: 1.4;
      margin-bottom: 10px;
    }
    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-column ul li {
      margin-bottom: 5px;
    }
    .footer-column ul li a {
      color: #666;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-column ul li a:hover {
      color: #000;
    }
    .contact-button {
      display: inline-block;
      background-color: #f04e23;
      color: #fff;
      text-decoration: none;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
      border-radius: 4px;
      margin-top: 10px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }
    .contact-button:hover {
      background-color: #c63b1b;
      transform: translateY(-2px);
    }
    .footer-bottom {
      border-top: 1px solid #ccc;
      background-color: #f8f8f8;
      padding: 10px 0;
    }
    .footer-bottom-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-links a {
      color: #666;
      text-decoration: none;
      font-size: 14px;
      margin-right: 10px;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: #000;
    }
    .back-to-top a {
      font-size: 14px;
      color: #666;
      text-decoration: none;
      transition: color 0.3s;
    }
    .back-to-top a:hover {
      color: #000;
    }
    
    /* SECTION TITLE */
    .section-title {
     
      font-size: 36px;
      font-weight: 700;
      letter-spacing: 2px;
      margin-bottom: 10px;
      position: relative;
      text-align:center;
    }
    .section-title::after {
      content: "";
      display: block;
      width: 15%;
      height: 8px;
      background-color: #C0A080;
      margin: 0 auto;
    }
    .highlight {
      color: #C0A080;
      font-weight: bold;
    }
    
  /* --------------------------------------------------------------------------
   Contact Info + Map – iki sütunlu düzen
   -------------------------------------------------------------------------- */

.contact-info-map {

  background: #222;            /* koyu arka plan */
  color: #eee;                 /* açık metin */
}
.contact-info-map .grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-map .section-title {
  color: #C0A080;
  margin-bottom: 30px;
}



/* İletişim maddeleri */
.contact-details .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-details .icon {
  font-size: 28px;
  margin-right: 12px;
  line-height: 1;
}
.contact-details .label {
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}
.contact-details a,
.contact-details address {
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
}
.contact-details a:hover {
  color: #C0A080;
}

/* Harita */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

    
    .yer-oner-container{
        width: 60%; 
        max-width: 600px; 
        margin: 0 auto; 
        padding: 60px 0;
    }
    
    
    /* GÖRSEL GALERİ */
    .project-gallery {
      background-color: #f9f9f9;
      padding: 60px 0;
      text-align: center;
    }
    .project-gallery h2 {
      font-size: 40px;
      margin-bottom: 40px;
      font-weight: 700;
    }
    .gallery-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      width:90%;
      margin:0 auto;
    }
    .gallery-container img {
      width: calc(33.333% - 20px);
      height: 250px;
      object-fit: cover;
      transition: transform 0.3s ease;
      border-radius: 8px;
    }
    .gallery-container img:hover {
      transform: scale(1.05);
    }
    /* Galeri Lightbox Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.gallery-modal.active {
  display: flex;
}

.gallery-modal .gm-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 4px;
}

/* Kapatma ikonu */
.gallery-modal .gm-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* İleri/Geri okları */
.gallery-modal .gm-prev,
.gallery-modal .gm-next {
  position: absolute;
  top: 50%;
  font-size: 48px;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  user-select: none;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  transform: translateY(-50%);
}
.gallery-modal .gm-prev { left: 20px; }
.gallery-modal .gm-next { right: 20px; }
    
    /* Modal Genel Ayarları */
.modal {
  display: none;                /* Başlangıçta gizli */
  position: fixed;
  z-index: 2000;                /* Diğer içeriklerin üstünde */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Yarı saydam karartma */
  overflow-y: auto;             /* İçerik uzun ise kaydırma */
  padding: 20px;
}

/* Modal İçeriği */
.modal-content {
  background-color: #fff;
  margin: 5% auto;              /* Üstten boşluk bırakıp ortalamak */
  padding: 40px;                /* Konforlu iç boşluk */
  border-radius: 8px;           /* Yuvarlatılmış köşeler */
  max-width: 500px;
  width: 90%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;           /* Close butonunun pozisyonlanması için referans */
}

/* Kapatma Butonu */
.modal-content .close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}
.modal-content .close:hover {
  color: #C0A080;
}

/* Modal İçindeki Form Stil Ayarları */
.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modal-content form label {
  font-size: 16px;
  color: #333;
}
.modal-content form input,
.modal-content form textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
}
.modal-content form input:focus,
.modal-content form textarea:focus {
  border-color: #C0A080;
}
.modal-content form input[type="submit"] {
  background-color: #C0A080;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.modal-content form input[type="submit"]:hover {
  background-color: #a77e5c;
}

/* PROJEMİZ HAKKINDA */
    .project-about {
      background-color: #fff;
      padding: 60px 0;
      color: #333;
    }
    .project-about .container {
      text-align: left;
      width:70%;
    }
    .project-about h2 {
      font-size: 40px;
      margin-bottom: 20px;
      font-weight: 700;
      text-align: center;
    }
    .project-about p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .tech-specs {
      list-style-type: disc;
      margin-left: 0px;
    }
    .tech-specs li {
      font-size: 0.75rem;
      margin-bottom: 10px;
    }

 /* PROJECT HERO - Büyük Proje Görseli ve Açıklama */
    .project-hero {
      position: relative;
      width: 100%;
      height: calc(100vh - 125px); /* 100vh’den nav yüksekliğini çıkar */
      overflow: hidden;
      margin-top:100px;
    }
    .project-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(1);
      transition: transform 0.5s ease;
    }
    .project-hero:hover img {
      transform: scale(1.05);
    }
    .project-hero-content {
      position: absolute;
      top: 50%;
      left: 5%;
      transform: translateY(-50%);
      color: #fff;
      max-width: 500px;
      z-index: 2;
      margin:0 auto;
      padding:30px;
    }
    .project-hero-content h1 {
      font-size: 48px;
      margin-bottom: 20px;
    }
    .project-hero-content p {
      font-size: 20px;
      line-height: 1.4;
    }


    /* PROJE LOKASYONU */
    .project-location {
      background-color: #f9f9f9;
      padding: 60px 0;
      text-align: center;
    }
    .project-location h2 {
      font-size: 40px;
      margin-bottom: 20px;
      font-weight: 700;
    }
    .project-location .map-container {
      width: 100%;
      margin: 0 auto;
    }
    .project-location iframe {
      width: 100%;
      height: 450px;
      border: 0;
      border-radius: 8px;
    }

/* -- Bizi Arayın Bölümü -- */
.call-us {
  background: #f7f7f7;
  padding: 60px 0;
  text-align: center;
}
.call-us__numbers {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.call-us__item {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.call-us__item:hover {
  transform: translateY(-3px);
}
.call-us__icon {
  font-size: 20px;
  margin-right: 8px;
}
.call-us__text {
  font-size: 18px;
  font-weight: 600;
}





    
/* -- WhatsApp Bölümü -- */
.whatsapp-contact {
  background: #e6f4ea;
  padding: 60px 0;
  text-align: center;
}
.whatsapp-contact .section-title {
  margin-bottom: 10px;
}
.whatsapp-contact p {
  margin-bottom: 20px;
  font-size: 18px;
}
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  transition: background 0.3s;
}
.whatsapp-button .icon {
  font-size: 24px;
  margin-right: 10px;
  line-height: 1;
}
.whatsapp-button:hover {
  background: #1ebe5b;
}

    
    
    
    
   /* ==========================================================================
   Scroll-Reveal Efekti
   ========================================================================== */
.project-image1,
.project-image2 {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1.2s ease-out, opacity 1.2s ease-out;
}

/* Görsel viewport’a girince */
.reveal {
  transform: translateY(0) !important;
  opacity: 1 !important;
}
 
    
    
    
    
    
    
    
    
    /* Desktop only = masaüstünde göster, mobile gizle */
.desktop-only { display: list-item; }
.mobile-only  { display: none;    }
    
    
    .alert {
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 4px;
  font-size: 0.95rem;
}

.alert-success {
  background-color: #e6ffed;
  border: 1px solid #4CAF50;
  color: #256029;
}

    
    /* Proje Özellikleri altındaki listeyi sıfırdan hizalar */
ul.tech-specs {
  padding-left: 0;
  margin-left: 0;
  list-style-position: inside; /* Madde işaretlerini içeriğe kaydırır */
}

/* Her bir maddeyi biraz içerden başlatmak isterseniz */
ul.tech-specs li {
  padding-left: 0.5em;
  margin-bottom: 10px; /* Zaten tanımlıysa koruyabilirsiniz */
}
    
    
    
    
    
    /* MOBILE RESPONSIVE AYARLARI */
    @media screen and (max-width: 768px) {
      .container {
        width: 100%;
        padding: 0;
        margin-top:70px;
      }
      .container-map {
        width: 100%;
      }
      .project-content h6 {
    display: none;
  }
  
   .project-content p {
      font-size: 0.9rem;
    }
  
  .nav-logo img {
      margin-left:10px;
      height: 35px;
  }
  
  .nav-logo span {
      margin-top: 10px;
  }
  
   .project-hero-voque video {
    height: 40vh;     /* ekranın %80’i kadar yüksek olsun */
    object-fit: cover; /* video ekranı daha dolgun kaplasın */
  }
  
  .project-about p {
      font-size: 1rem;
  }
  
  .project-about h2 {
    font-size: 1.6rem;
text-align: left;
}
  
  /* Masaüstü dropdown’u gizle */
  .desktop-only { display: none; }
  /* Mobilde direkt linkleri göster */
  .mobile-only  { display: list-item; }

.contact-item {
    margin-left:30px;
    margin-right:20px;
}
  
  .about-container{
      width:90%;
  }
  
     .project-about .container {
      text-align: left;
      width:90%;
    }
   .gallery-container img {
        width: calc(50% - 20px);
      }


  main p {
    font-size: 20px;
    line-height: 1.2;
}
  
   .about-hero__inner {
    flex-direction: column;
    text-align: center;
    padding:15px;
  }
  .about-hero__image {
    margin-top: 40px;
    text-align: center;
  }
  .about-hero__text h2 {
    font-size: 36px;
  }
  
   .contact-info-map .grid-two {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  
      .yer-oner-container{
        width: 90%; 
        max-width: 600px; 
        margin: 0 auto; 
        padding: 60px 0;
    }
    
    
      /* NAVIGATION */
      .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
      }
      .nav-logo {
        font-size: 1.8em;
      }
      .hamburger {
        display: flex;
      }
      /* Nav-links: Aşağıya doğru açılan dropdown */
        .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f8f8f8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    text-align: center;
    z-index: 999;
  }
  
  .nav-links.active {
    /* nav yüksekliğinize göre ayarlayın, örn nav 60px yüksekse: */
    max-height: calc(100vh - 60px);
    overflow-y: auto;        /* İçerik taşarsa scroll göster */
  }
  
      .nav-links li {
        margin: 10px 0;
      }
      .nav-links li a {
        display: block;
        padding: 15px 0;
        color: #C0A080;
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px solid rgba(255,255,255,0.2);
      }
      
       /* Hamburger ile açılan menüde öğeler arası çizgi */
  .nav-links.active li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .nav-links.active li a {
    display: block; /* li’ye uygulanan border’ın tam genişlikte görünmesi için */
    padding: 15px 0; /* mevcut padding’inizi koruyun ya da ihtiyaca göre ayarlayın */
    font-weight: 600;
  }
      
      /* SLIDER */
      .slider-inner {
        width: 90%;
      }
      .slide-content {
        width: 90%;
        left: 5%;
      }
      
 

     .projects-section .project-item {
    display: block;       /* sütun düzeni */
    margin-bottom: 40px;
  }

  .projects-section .project-item img {
    width: 100vw;         /* viewport genişliğini tamamen kapla */
    max-width: 100%;      /* taşmayı önle */
    margin: 0;            /* kenar boşluğu yok */
    display: block;
  }

  .projects-section .project-content {
    position: relative;
    width: 100vw;         /* içerik de tam genişlik */
    max-width: 100%;
    margin: 0px 0 0;    /* resmin üstüne 40px çıkacak şekilde kaydır */
    padding: 20px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  
   .project-content a.cta-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;      /* metni ortalamak için */
    padding: 12px 0;         /* isterseniz yatay padding’i sıfırlayıp dikeyde tutabilirsiniz */
    margin: 0 auto;          /* ortalamak için */
  }
  
  

      /* MÜŞTERİ MEMNUNİYETİ */
      .testimonials-container {
        flex-wrap: wrap;
        justify-content: center;
      }
      .testimonial-item {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 20px;
      }
      
            .split-section { grid-template-columns: 1fr; }
      .values { flex-direction: column; }
      .team-members .member { flex: 1 1 100%; }
      .container { width: 100%; }
      .posts { grid-template-columns: 1fr; }

      
      /* FOOTER */
      .footer-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
      }
      .footer-container > div {
        width: 50%;
        text-align: center;
        margin: 10px 0;
      }
      .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
      }
      
      /* CONTACT SECTION (Mobil) */
      .contact-info {
        flex-direction: column;
        align-items: center;
      }
      .contact-box {
        width: 100%;
        max-width: 500px;
        margin-left:10px;
      }
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    @media screen and (max-width: 500px) {
      .gallery-container img {
        width: 100%;
      }
    }
    /* Dijital Katalog Bölümü */
    .digital-catalog {
      background-color: #f9f9f9;
      padding: 60px 0;
      text-align: center;
    }
    .digital-catalog h2 {
      font-size: 40px;
      margin-bottom: 20px;
      font-weight: 700;
    }
    .digital-catalog p {
      font-size: 18px;
      margin-bottom: 20px;
    }
    /* VIDEO BÖLÜMÜ */
    .project-videos {
      background-color: #fff;
      padding: 60px 0;
      text-align: center;
    }
    .project-videos h2 {
      font-size: 40px;
      margin-bottom: 40px;
      font-weight: 700;
    }
    .video-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .video-container iframe {
      width: 90%;
      height: 500px;
      border: none;
      border-radius: 8px;
    }
    /* Bilgi Al Butonu Düzenlemesi */
.info-button-container {
  text-align: center;
  margin: 40px 0;
}

/* Modal Genel Ayarları */
.modal {
  display: none;                /* Başlangıçta gizli */
  position: fixed;
  z-index: 2000;                /* Diğer içeriklerin üstünde */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Yarı saydam karartma */
  overflow-y: auto;             /* İçerik uzun ise kaydırma */
  padding: 20px;
}

/* Modal İçeriği */
.modal-content {
  background-color: #fff;
  margin: 5% auto;              /* Üstten boşluk bırakıp ortalamak */
  padding: 40px;                /* Konforlu iç boşluk */
  border-radius: 8px;           /* Yuvarlatılmış köşeler */
  max-width: 500px;
  width: 90%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;           /* Close butonunun pozisyonlanması için referans */
}

/* Kapatma Butonu */
.modal-content .close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}
.modal-content .close:hover {
  color: #C0A080;
}

/* Modal İçindeki Form Stil Ayarları */
.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modal-content form label {
  font-size: 16px;
  color: #333;
}
.modal-content form input,
.modal-content form textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
}
.modal-content form input:focus,
.modal-content form textarea:focus {
  border-color: #C0A080;
}
.modal-content form input[type="submit"] {
  background-color: #C0A080;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.modal-content form input[type="submit"]:hover {
  background-color: #a77e5c;
}

/* Bilgi Al Bölümü - Genel Stil Ayarları */
.info-section {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
  color: #333;
}

.info-section .info-title {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
}

.info-section .info-text {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.info-button-container {
  text-align: center;
  margin: 20px 0;
}

.info-cta-button {
  background-color: #C0A080;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: 'Khand', sans-serif;
}

.info-cta-button:hover {
  background-color: #a77e5c;
  transform: translateY(-2px);
}
.project-hero-content p {
  background: rgba(0,0,0,0.8);
  display: inline-block;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 1rem;
}
