* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    display: flex;
   flex-direction: column;
   align-items: center;
   padding: 10px 20px;
   height: 170px;
   }
   header{
   height: 170px;
   border-bottom: solid 1px rgb(206, 206, 206);
   box-shadow: rgb(224, 224, 224) 0 1px 0 0;
   }
   .logo{
         display: flex;
         align-items: center;
         color: #666565;
         font-family: 'Aboreto', system-ui;
         font-weight: lighter;
         font-style: italic;
         font-size: 55px;
         height: 30px;
         margin-top: 55px;
     }
     .containerbar{
         max-width: 1920px;
         margin: 0 auto;
    }
     .menu-toggle {
         display: none;
     }
     
     .bar {
         width: 30px;
         height: 3px;
         background-color: #666565;
         margin: 6px 0;
     }
     
     /* Navbar Linkleri */
     .nav-links {
         list-style: none;
         display: flex;
         margin-left: 55px;
         margin-top: 50px;
   }
     
     .nav-links li {
    margin-right: 40px;
         
     }
     .nav-links li a {
       text-decoration: none;
       color: #312d2d;
       font-size: 18px;
       font-weight: lighter;
       font-family: 'Aboreto', system-ui;
   }
.container-proje {
    max-width: 1300px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container-proje h1, h2 {
    color: #666565;
    font-family: 'Aboreto', system-ui;
}

 .container-proje ul, ol {
    margin: 0 0 20px 20px;
    padding: 0;
}

.container-proje  ul li, ol li {
    margin-bottom: 10px;
}

.container-proje  strong {
    color: #383535;
    font-family: 'Aboreto', system-ui;
}
.container-proje li{
    font-family: Arial, Helvetica, sans-serif;
    color: #666565;
    line-height: 40px;
}
.print-button {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 10px 20px;
    background-color: rgb(230, 54, 113);
    color: white;
    border-radius: 5px;
    border: white 1px solid;
    font-family: 'Aboreto', system-ui;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.print-button:hover {
    background-color: #333;
    color: white;
}


/* Print Styles */
@media print {
    body {
        background-color: #fff;
        color: #000;
    }

    .container {
        box-shadow: none;
        padding: 0;
        margin: 0;
    }

    header, footer, .print-button {
        display: none;
    }

    h1, h2 {
        color: #000;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    strong {
        color: #000;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-proje {
        padding: 15px;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.2em;
    }

    ul, ol {
        margin-left: 15px;
    }
    .container {
        display: flex;
        flex-direction: column;
        max-width: auto;
        margin: 10px;
    }
    .containerbar {
        max-width: auto;
     }
    .logo{
        font-size: 30px;
        margin-top: 10px;
      }
      header{
        height: 100px;
       
      }
      .navbar{
        height: 100px;
      }
      .nav-links {
        list-style: none;
        display: flex;
        
        margin-top: 15px;
       
    }
      .nav-links li a {
        font-size: 12px;
        margin-right: 5px;
        
      }
      .motif{
        display: flex;
        flex-direction: column;
      }
}

@media (max-width: 480px) {
    .container-proje {
        padding: 10px;
    }

    h1 {
        font-size: 1.2em;
    }

    h2 {
        font-size: 1em;
    }

    ul, ol {
        margin-left: 10px;
    }
    header{
        height: 120px;
      }
      .main-content {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          padding: 10px;
         max-width: 1200px;
      }
      .containerbar {
         max-width: auto;
      }
      .logo{
      font-size: 30px;
      margin-top: 10px;
      }
      .container {
          display: flex;
          flex-direction: column;
          max-width: auto;
          margin: 10px;
      }
      .navbar {
        display: flex;
        align-items: center;
        padding: 10px 20px;
        height: 80px;
        position: relative;
      }
      .menu-toggle {
          display: block;
          margin-top: 10px;
      }
      .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        background: rgba(255, 255, 255, 0.8);
        position: absolute;
        top: 70px;
        right: 40px;
        left: 0px;
        z-index: 1;
       }
       .nav-links.active {
          display: flex;
        }
        .nav-links li a {
          font-size: 17px;
      }
        .nav-links li {
          margin: 10px 0;
        }
        .motif{
            display: flex;
            flex-direction: column;
        }
}

