 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

	h2{
		font-family:EB Garamond, serif;
		    letter-spacing: 0.09em;
	}

    html, body {
      height: 100%;
      overflow-y: scroll;
      scroll-snap-type: y mandatory;
      scroll-behavior: smooth;
      font-family: sans-serif;
      color: white;
    }

    section {
      position: relative;
      height: 100vh;
      scroll-snap-align: start;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-size: 2rem;
    }

    section video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;  
      z-index: -1;       
	  background:black;
    }

    section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .content {
      position: relative;
      z-index: 1;
    }
	
.about-section {
  position: relative;
  min-height: 100vh; /* en az ekran boyu kadar */
  height: auto;       /* içeriğe göre uzasın */
  overflow: hidden;
  font-size:12px;
}

.about-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.about-section .content {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: justify;
}

.projects-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap; 
}

.projects-section .card {
  flex: 1 1 calc(33.333% - 20px);
  background: #1e1e1e;
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
   z-index: 5; 
  transition: transform 0.3s, box-shadow 0.3s;
}

.projects-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.projects-section .card h3 {
  margin-bottom: 10px;
}

.projects-section .card p {
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .projects-section .card {
    flex: 1 1 100%;
  }
}

.projects-section .card a {
  display: block;   
  color: inherit;   
  text-decoration: none; 
}