@charset "utf-8";

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
     /* [disabled]font-family: "NotoSans Regular", sans-serif; */
     background-color: #f5f5f5;
     line-height: 1.6;
     color: #333;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 10001;
}

.main {
  margin-top: 80px; /* header yüksekliği kadar boşluk */
  
}

.ana {
  width: 100%;
  background-color: #09F;
}

.menug {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.menud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.nlogo {
  flex: 0 0 auto;
  max-width: 30%;
  transition: all 0.3s ease;
}
.nlogo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 96px;
}

/* Hamburger sağa yaslansın */
.menu-toggle {
  display: none; /* default */
  font-size: 28px;
  cursor: pointer;
  color: #333; /* tüm sayfalarda koyu renk */
  margin-left: auto;
  z-index: 1001; /* menünün üstünde olsun */
}

.menuul {
  flex: 1 1 auto;
}
/* Büyük ekranda menü sağda */
.menuul ul {
  list-style: none;
  display: flex;
  justify-content: flex-end; /* sağda sıralansın */
  margin: 0;
  padding: 0;
}
.menuul ul li {
  margin-left: 25px;
}
.menuul ul li a {
  text-decoration: none;
  font-weight: 700;
  color: #4A4A47;
  padding: 10px;
  transition: border-bottom 0.3s;
  display: block;
}
.menuul ul li a:hover {
  border-bottom: 3px solid #336699;
}

/* Mobil uyum */
@media (max-width: 768px) {
    
    
  .menu-toggle {
     display: block;
}
  
  /* Menü mobilde gizli başlar */
 .menuul {
    display: none;
    width: 50%; /* sayfanın yarısı */
    background-color: #fff;
    position: absolute;
    top: 100%;
    right: 5%; /* toggle sağda */
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
    border-radius: 0px 0px 4px 4px;
    z-index: 1000;
  }

   .menuul ul {
    flex-direction: column;
    text-align: center;
  }
  .menuul ul li {
    
     margin-top: 5px;
     margin-right: 0;
     margin-bottom: 5px;
     margin-left: 0;
  }
  
 .menuul ul li a {
    line-height: 30px; /* normal mobil yüksekliği */
    padding: 5px 0;
  }
  
    .menuul ul li a:hover {
     border-left-width: 3px;
     border-left-style: solid;
     border-left-color: #336699;
     border-top-style: none;
     border-right-style: none;
     border-bottom-style: none;
}
}