/* Genel reset ve yapı */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #fefefe;
    scroll-behavior: smooth;
    color: #333;
    display: flex;
    flex-direction: column;
  }
  
  body {
    min-height: 100vh;
  }
  
  /* Header */
  header {
    background-color: #004d40;
    color: white;
    padding: 1.2rem;
    text-align: center;
  }
  
  /* Navigasyon */
  nav {
    background-color: #00796b;
    padding: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 2.2rem;
    flex-wrap: wrap;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  /* Ana içerik */
  main {
    flex: 1;
    padding: 1.2rem;
  }
  
  /* Hizmetler */
  section {
    margin-bottom: 3rem;
  }
  
  h2 {
    color: #00796b;
    margin-bottom: 2rem;
  }
  
  /* Foto Galeri */
  .foto-galeri {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .foto-galeri img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    border: 3px solid #00796b;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .foto-galeri img:hover {
    transform: scale(1.05);
    border-color: #004d40;
  }
  
  /* Liste */
  ul {
    list-style-type: disc;
    margin-top:3rem;
    margin-left: 20px;
  }
  
  /* Linkler */
  a {
    color: #00796b;
  }
  
  /* Footer */
  footer {
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: auto;
  }
  
  /* Mobil uyum */
  @media (max-width: 600px) {
    nav {
      flex-direction: column;
      align-items: center;
    }
  
    nav a {
      margin: 5px 0;
    }
  
    .foto-galeri {
      grid-template-columns: 1fr;
    }
  }
  