

html, body {
    height: 100%;
    margin: 0;
}
/* footer için */
body {
    display: flex;
    flex-direction: column;
}
/* içerik alanı */
.page-wrapper {
    flex: 1;
}
/* anasayfax */

.hero {
  min-height: 60vh;
  padding: 80px 0;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.hero-img {
  width: 460px;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
    .hero-img {
        width: 400px;
        height: 400px;
    }
}



/* fotoğraflar*/ 
.position-top-left {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
	border-radius: 20px;       
	font-size: 14px;
}







/* Proje */
.carousel-container {
        overflow: hidden;
        position: relative;
        width: 100%;
        max-width: 1200px;
        margin: auto;
    }

    .carousel-track {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; 
        gap: 10px; 
    }

    .project-card {
        flex: 0 0 calc(25% - 10px); 
        padding: 20px;
        text-align: center;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }

    .project-card img {
        max-width: 100%;
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .project-card .btn {
        display: block;
        margin-top: 10px;
        text-align: center;
    }

    
    /* Responsive Düzenleme */
    @media (max-width: 992px) {
        .project-card {
            flex: 0 0 calc(50% - 10px); 
        }
    } 
    @media (max-width: 576px) {
        .project-card {
            flex: 0 0 100%; 
        }
    } 




/*about me */
.about-container {
    max-width: 100vh;
    margin: auto;
    padding: 50px 20px;
    text-align: justify;
}
.about-container h2 {
    text-align: center;
}


.social-links a {
    margin: 0 10px;
    font-size: 24px;
    color: #333;

}


.footer{
    text-align: center; 
    background: rgba(248, 249, 250, 1.0);
    padding: 20px 0;


}
.page-wrapper {
    flex: 1;
}




