/* Mercan Çim tarzı modern ve ferah peyzaj teması */
:root {
  --mc-green: #3bb143;
  --mc-darkgreen: #168a3d;
  --mc-light: #f7faf7;
  --mc-white: #fff;
  --mc-gray: #e9ecef;
  --mc-accent: #f9c846;
  --mc-shadow: 0 4px 24px rgba(60,60,60,0.08);
}

body {
  background-color: rgb(247, 243, 235);
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #222;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
/* Global görsel ölçekleme */
img { max-width: 100%; height: auto; }
.bg-svg-top {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  line-height: 0;
  height: 180px;
}
.bg-svg-top svg path {
    background-image: linear-gradient(to right,#0a8f08,#558f2b,#12c700,#64dd17,#76ff03, yellow) !important;
}
.bg-svg-bottom {
  width: 100vw;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  line-height: 0;
  height: 180px;
  display: block;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
background-image: linear-gradient(to right,green,rgb(235, 200, 125));
  box-shadow: none;
  padding: 0 32px;
  height: 80px;
  position: relative;
  width: 100%;
  z-index: 2;
  box-sizing: border-box;
}
.navbar-left {
  display: flex;
  align-items: center;
}
.navbar-right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.logo {
  color:#C6D166;
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-menu {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
}
.main-menu a {
  color: #0a8f08;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  justify-content: center;
}
.main-menu a:hover, .main-menu a.active {
  background:#0a8f08;
  color: #fff;
}


.container {
  background-color:none;
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: 1400px;
  box-sizing: border-box;
  gap: 48px;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.content {
  background-color: rgb(247, 243, 235);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% - 200px);
  height: 100%;
  min-height: 400px;
  justify-content: flex-start;
  box-sizing: border-box;
  padding: 0 0 0 0;
  border-radius: 18px;
  margin-left: 50px;
  margin-top:50px;
}
.content h1, .content h2, .content h3 {
  color: var(--mc-green);
  font-weight: 700;
  margin-top: 0;
}
.content p, .content ul, .content li {
  color: #333;
  font-size: 1.08rem;
}
button, .btn {
  background: var(--mc-accent);
  color: var(--mc-darkgreen);
  font-weight: bold;
  font-size: 1.05rem;
  padding: 10px 28px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(60,60,60,0.08);
  transition: background 0.2s, color 0.2s;
  margin-top: 12px;
}
button:hover, .btn:hover {
  background: var(--mc-green);
  color: #fff;
}
.footer {
  background: #064f05;
  color: var(--mc-accent);
  text-align: center;
  padding: 18px 0 12px 0;
  font-size: 1rem;
  margin-top: auto;
  letter-spacing: 1px;
  border-radius: 0 0 18px 18px;
}
/* Galeri için örnek grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.gallery-item {
  background: var(--mc-green);
  color: #fff;
  padding: 32px 0;
  text-align: center;
  border-radius: 12px;
  font-weight: bold;
}
/* İletişim formu */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  background: var(--mc-white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(60,60,60,0.06);
  padding: 28px 18px 18px 18px;
}
.contact-form input, .contact-form textarea {
  padding: 10px;
  border: 1px solid var(--mc-green);
  border-radius: 4px;
  font-size: 1rem;
}
.contact-form button {
  background: var(--mc-green);
  color: #fff;
  border: none;
  padding: 12px 0;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: var(--mc-darkgreen);
}
/* Hamburger Menü ve Sağdan Açılan Panel */
.hamburger {
  display: none;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  font-size: 2rem;
  color: var(--mc-green);
  z-index: 1201;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: transparent;
  z-index: 1200;
  transition: opacity 0.3s;
}
.mobile-menu-panel {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -100vw;
  width: 80vw;
  max-width: 340px;
  height: 100vh;
  background: var(--mc-white);
  box-shadow: -4px 0 32px rgba(60,60,60,0.13);
  z-index: 1202;
  padding: 32px 0 0 0;
  transition: right 0.35s cubic-bezier(.77,0,.18,1);
  opacity: 1;
}
.mobile-menu-panel.open {
  right: 0;
}
.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}
.mobile-menu-panel .close-menu {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--mc-green);
  margin: 0 18px 18px 0;
  cursor: pointer;
}
.mobile-menu-panel nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}
.mobile-menu-panel a {
  color: var(--mc-darkgreen);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.18rem;
  padding: 18px 32px;
  border-bottom: 1px solid var(--mc-gray);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-panel a:last-child {
  border-bottom: none;
}
.mobile-menu-panel a:hover, .mobile-menu-panel a.active {
  background: var(--mc-green);
  color: #fff;
}
.svg-wave {
  position: relative;
  z-index: 3;
}

  .content {
    padding: 0;
  }

@media (max-width: 900px) {
  .content{
    margin-left: 0;
    margin-top: 0;
  }
  .navbar {
    padding: 0 12px;
  }
  .navbar-left {
    flex: 1 1 auto;
    justify-content: flex-start;
  }
  .navbar-right {
    flex: 0 0 auto;
    justify-content: flex-end;
  }
  .container {
    flex-direction: column;
    gap: 0;
  }
  .sidebar {
    display: none !important;
  }
  .content {
    margin-right: 0 !important;
    width: 100% !important;
    padding: 0;
    border-radius: 12px;
    margin: 12px 0 12px 0;
  }
  .main-menu {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
  .references-section {
    padding: 18px 0 8px 0;
    border-radius: 12px 12px 0 0;
  }
  .references-columns {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .references-list {
    width: 98vw;
    min-width: 0;
    font-size: 0.98rem;
  }
  .references-marquee-section {
    padding: 12px 0 8px 0;
    border-radius: 12px 12px 0 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .references-marquee {
    gap: 18px;
    padding: 4px 0;
    width: 100%;
    overflow-x: hidden;
  }
  .references-marquee .reference-item {
    font-size: 0.98rem;
    padding: 8px 16px;
    border-radius: 10px;
  }
  .reference-card {
    min-width: 180px;
    max-width: 220px;
    padding: 7px 12px 6px 12px;
  }
  .ref-title {
    font-size: 0.98rem;
  }
  .ref-location {
    font-size: 0.92rem;
  }
}

@media (max-width: 600px) {
  .navbar {
    height: auto;
    padding: 12px 8px;
    gap: 8px;
  }
  .main-menu {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .logo {
    font-size: 1.2rem;

  }
  .footer {
    font-size: 0.9rem;
    padding: 12px 0 8px 0;
  }
  .sidebar {
    border-radius: 0 0 8px 8px;
    padding: 2px 0 0 0;
    gap: 2px;
  }
  .sidebar a {
    font-size: 0.92rem;
    padding: 5px 2px;
  }
  .content {
    border-radius: 8px;
    margin: 8px 0 8px 0;
  }

}

/* === SAĞ MENÜ === */
        .sidebar{
            position: fixed;
            right: 0px;
            top: 140px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            justify-content: center;
            z-index: 1000;
            
           
        }
        .sidebar a{
           display: flex;
           align-items: center;
           gap: 10px;
           font-size: 1.05rem;
           text-decoration:none;
           color:#2d6a4f;
           padding: 8px 10px;
           transition: color .2s ease;
            

        }
        .sidebar ul{
          justify-content: center;
          width: 170px;
          height: 70px;
            padding-top: 34px;
            margin-bottom: 16px;
            background: #ffffff;
            border: 1.5px solid rgba(45,106,79,0.18);
            border-radius: 14px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.06);
            transition: box-shadow .2s ease, transform .15s ease, background .2s ease, border-color .2s ease;
        }
        .sidebar i{
           color:green;
           transition: color .2s ease;
        }
        .sidebar ul:hover{
            background: #f5fbf7;
            color: #2d6a4f;
            border-color: #2d6a4f;
            box-shadow: 0 10px 50px rgb(235, 200, 125);
            transform: translateY(-3px);
        }
        .sidebar ul:hover i , .sidebar ul:hover a{
            color: #2d6a4f;
        }
/* Responsive tasarım */

@media (max-width: 900px) {
  .sidebar { display: none !important; }
  .content { margin-right: 0 !important; }
}

@media (max-width: 768px) {
  .sidebar { display: none !important; }
}

/* Sidebar korunumu: sayfa içi anchor/kutu stillerinin yan menüyü bozmasını engelle */
.container .sidebar ul {
  width: 170px !important;
  height: 70px !important;
  padding-top: 34px !important;
  margin-bottom: 16px !important;
  background: #ffffff !important;
  border: 1.5px solid rgba(45,106,79,0.18) !important;
  border-radius: 14px !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06) !important;
}
.container .sidebar ul > a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 1.05rem !important;
  color: green !important;
  padding: 8px 10px !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.container .sidebar ul:hover > a {
  color: #2d6a4f !important;
}




    /* WhatsApp sabit buton */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
      z-index: 10000;
      transition: transform 0.3s ease;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    .whatsapp-icon {
      width: 32px;
      height: 32px;
      fill: white;
    }

    /* Responsive küçültme */
    @media (max-width: 768px) {
      .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
      }
      .whatsapp-icon {
        width: 28px;
        height: 28px;
      }
    }