* {
    margin:0 ;
    padding:0;
    box-sizing: border-box;
    }
body{
    background-color: rgb(32, 32, 32);
}
/* Yaren - [JA-10] - Header Component Start */

.header-container{
    background-color: #2D2D2D;
    height: 80px;
    display: flex;
    align-items: center;
    
    }
    
    .logo-img {
        width: 29px;
        height: 40px;
        margin-right: 1.5%;
    }
    
    .logo-text {
        font-family: Manrope;
        font-size: 20px;
        font-weight: 700;
        line-height: 27.32px;
        color: #DEDEDE;
    }
    
    .header-elements{
    width: 1236px;
    height: 41px;
    opacity: 0px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    
    
    
    }
    
    .header-texts {
    margin-left: auto;
    display: flex;
    gap: 50px;
    
    }
    
    .header-texts a {
        text-decoration: none;
        color: #DEDEDE ;
        font-family: Manrope;
        font-size: 18px;
        font-weight: 500;
    
    }
    
    
    
        @media screen and (max-width: 1270px) {
            .header-elements {
                margin-left: 5%;
                margin-right: 5%;
            }
    }
    
    .hamburger-menu {
        display: none;
        font-size: 30px;
        color: #DEDEDE;
    }
    
    .mobile-menu {
        display: none;
        flex-direction: column;
        background-color: #2D2D2D;
        position: absolute;
        top: 80px;
        width: 100%;
        left: 0;
        padding: 10px 0;
    }
    
    .mobile-menu a {
        text-decoration: none;
        color: #DEDEDE;
        font-family: Manrope;
        font-size: 18px;
        font-weight: 500;
        padding: 10px 20px;
        display: block;
    }
    
    
    @media screen and (max-width: 480px) {
        .header-texts {
            display: none;
        }
    
        .hamburger-menu {
            display: block;
            margin-left: auto;
        }
    }
    
    
    /* Yaren - [JA-10] - Header Component End */
    
    
    .personal-projects-hero{
        width: 100%;
        background-color: rgb(32, 32, 32);
    }
    .personal-projects{
        width: 1248px;
        height: 675px;
        min-height: 675px;
        margin: 0px auto;
        padding: 50px 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        font-family: "Manrope", serif;
    }
    .personal-projects p{
        margin: 0;
        width: 300px;
        height: 49px;
        font-weight: 700;
        font-size: 36px;
        line-height: 49.18px;
        letter-spacing: -0.5px;
        color: rgb(222, 222, 222);
        
    }
    .personal-projects-list{
        width: 1248px;
        height: 560px;
        display: flex;
        gap: 24px;
        padding: 0;
        margin: 0;
    }
    
    .personal-projects-list img{
        width: 400px;
        height: 560px;
        border-radius: 4px;
    }
    
    @media screen and (max-width: 1248px){
        .personal-projects{
            width: 100%;
            height: auto;
            margin: 25px 0;
            padding: 0 4px;
        }
        .personal-projects p{
            width: auto;
            font-size: 24px;
            line-height: 33px;
            text-align: center;
        }
        .personal-projects-list{
            width: 100%;
            height: auto;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 16px;
        }
    
        .personal-projects-list img{
            width: 90%;
            height: auto;
        }
    }
    

/* mehmetAli/JA-11 - Work Card Component */
.work-card-hero{
    width: 100%; 
    background-color: rgb(32, 32, 32);
}
.work-card-container{
    width: 1248px;
    height: 2066px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    gap: 32px;

}
.work-card-header{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 16px;
}
.work-card-header h3{
    width: 150px;
    height: 16px;
    color: rgba(222, 222, 222, 1);
    font-family: Manrope;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1.5px;
    opacity: 0.7;
    text-transform: uppercase;
    text-wrap: nowrap;
}
.work-cards{
    width: 1248px;
    height: 1938px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 24px;
}
.work-card:nth-child(3){
    margin-top: 100px;
}
.work-card{
    position: relative;
}
.work-card img{
    width: 612px;
    height: 888px;
    border-radius: 4px;
    object-fit: cover;
    display: block;
    z-index: 1;
}
.work-card-info{
    visibility: hidden;
    position: absolute;
    top: 0;
    color: rgba(222, 222, 222, 1);
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
.work-card-info h4{
    font-family: Manrope;
    font-weight: 700;
    font-size: 40px;
    line-height: 54.64px;
    letter-spacing: -0.5px;
}
.work-card:hover .work-card-info{
    visibility: visible;
}

@media screen and (max-width: 1248px) {
    .work-card-container {
        width: 100%;
        height: auto;
        margin: 25px auto;
        gap: 24px;
    }

    .work-card-header h3{
        font-size: 12px;
    }

    .work-cards {
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        flex-wrap: nowrap;
        gap: 16px;
    }

    .work-card:nth-child(3) {
        margin-top: 0px;
    }

    .work-card img {
        width: 100%;
        height: auto;
        max-width: 480px;
        border-radius: 4px;
    }

    .work-card-info {
        width: 100%;
        height: 100%;
        font-size: 18px;
        text-align: center;
    }

    .work-card-info h4 {
        font-size: 24px;
        line-height: 32px;
    }
}

/* yaren/JA-20 - Visual Explorations Section */

    .visual-explorations-h2 {
    font-family: Manrope;
    font-size: 36px;
    font-weight: 700;
    line-height: 49.18px;
    letter-spacing: -0.5px;
    text-align: center;
    color: #DEDEDE;
    margin-bottom: 50px;
}

.visual-explorations-images {

        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px; 
        max-width: 1248px;
        margin: 0 auto;
        padding: 20px;
        justify-content: center;
    }

.visual-explorations-images img{
    width: 400px;
    height: 408px;
    border-radius: 4px 0px 0px 0px;
    opacity: 0px;
    display: block;
    margin: 0 auto; 
}


@media (max-width: 1248px) {
    .visual-explorations-images {
        grid-template-columns: repeat(2, 400px);
    }
}

@media (max-width: 840px) {
    .visual-explorations-images {
        grid-template-columns: repeat(1, 400px);
    }
}

@media (max-width: 418px) {
    .visual-explorations-images {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0;
        margin: 0;
    }
    .visual-explorations-images img {
        width: 100%;
        height: auto;
    }
    .visual-explorations-big-container {
        padding: 0;
        margin: 0;
    }
    /* mehmet ali edit visiusl explorations */
    .visual-explorations-big-container{
        margin: 25px 0;
    }
    .visual-explorations-h2 {
        font-size: 24px;
        margin: 10px 0;
    }
 }

/* mehmetAli/JA-17 - Personal Projects Responsiveness */
.personal-projects-hero{
    width: 100%;
    background-color: rgb(32, 32, 32);
}
.personal-projects{
    width: 1248px;
    height: 675px;
    min-height: 675px;
    margin: 0px auto;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-family: "Manrope", serif;
}
.personal-projects p{
    margin: 0;
    width: 300px;
    height: 49px;
    font-weight: 700;
    font-size: 36px;
    line-height: 49.18px;
    letter-spacing: -0.5px;
    color: rgb(222, 222, 222);
    
}
.personal-projects-list{
    width: 1248px;
    height: 560px;
    display: flex;
    gap: 24px;
    padding: 0;
    margin: 0;
}

.personal-projects-list img{
    width: 400px;
    height: 560px;
    border-radius: 4px;
}

@media screen and (max-width: 1248px){
    .personal-projects{
        width: 100%;
        height: auto;
        margin: 40px 0;
        padding: 0;
    }
    .personal-projects p{
        width: auto;
        font-size: 24px;
        line-height: 33px;
        text-align: center;
    }
    .personal-projects-list{
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }

    .personal-projects-list img{
        width: 100%;
        height: auto;
    }
}

/**pelin ja-7 conclusion section**/

.Conclusion-section-wrapper{
    width: 100%;
	height: 100%;
    display: flex;
    justify-content: center;  
    background-color: rgba(32, 32, 32, 1);
    padding: 100px 0;    
    font-family: 'Manrope';
}

.Conclusion-section{

	width: 90%;
    max-width: 1280px;
	height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
       
}

.conclusion-section-texts{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: flex-start;
    gap: 1em;
}


.conclusion-section-title{

    font-size: clamp(8px,2.5vw,16px);
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-align: left;
    color: rgba(222, 222, 222, 1);
    margin: 0;

}
.conclusion-section-description{

    font-size: clamp(20px,2.5vw,32px);
    font-weight: 700;
    line-height: 54px;
    letter-spacing: -0.5px;
    color: rgba(222, 222, 222, 1);
    margin: 0;

    
}


.conclusion-section-image{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conclusion-section-image img{
    width: 100%;
}

.conclusion-button{

    font-size: clamp(20px,2.5vw,32px);
    font-weight: 700;
    line-height: 54px;
    letter-spacing: -0.5px;
    color: rgba(222, 222, 222, 1);
    background-color: rgba(32, 32, 32, 1); 
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid rgba(196, 196, 196, 1);
}
/* mehmet ali edit conclusion section */
@media screen and (max-width: 700px) {
    .Conclusion-section-wrapper{
        height: auto;
        padding: 40px 0; 
    }
    .Conclusion-section{
        width: 100%;
        gap: 40px;
    }
    .conclusion-section-texts{
        width: 90%;
        height: auto;
        gap: 10px;
    }
    .conclusion-section-title{
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 2px;
        line-height: 40px;
    }
    .conclusion-section-description{
        font-size: 24px;
        font-weight: 700;
        letter-spacing: -0.5px;
        line-height: 35px;

    } 
    .conclusion-section-image{
        width: 100%;
        height: auto;
    }
    .conclusion-section-image img{
        width: auto;
        height: 400px;
        object-fit: cover;
        overflow: hidden;
    }
}
/**pelin ja-7 conclusion section**/


/**pelin ja-16 footer**/

.footer-wrapper{
    width: 100%;
	height: 100%;
    display: flex;
    justify-content: center;  
    background-color: rgba(32, 32, 32, 1);
    padding: 5% 0;    
    font-family: 'Manrope';
    border-top: 1px solid rgba(105, 105, 105, 1);  
}

.footer-section{

	width: 90%;
    max-width: 1280px;
	height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;    
}

.footer-text{
    font-size: clamp(8px,2.5vw,16px);
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.5px;
    color: rgba(149, 149, 149, 1);
}

.footer-highlight{
    color: rgb(222, 222, 222);
}

.footer-icons{
    width: 25%;
    display: flex;
    justify-content: space-between;
}

.footer-icon{
    width: 21px;
    height: 21px;
}

@media (max-width: 1100px) {
    .footer-section {
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        gap: 24px;
        padding: 2% 0;
    }

    .footer-icons{
        width: 30%;
    }
}
@media (max-width: 900px) {
    .footer-icons{
        width: 35%;
    }
}

@media (max-width: 750px) {
    .footer-icons{
        width: 40%;
    }
}
@media (max-width: 650px) {
    .footer-icons{
        width: 45%;
    }
}
/**hero section pelin/ja-12**/
.hero-section-wrapper{
    width: 100%;
	height: 100%;
    display: flex;
    justify-content: center; 
    background-color: rgba(32, 32, 32, 1);
    padding: 100px 0; 
    font-family: 'Manrope';
}

.hero-section{

	width: 80%;
	height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: rgba(32, 32, 32, 1);
       
}

.hero-section-information{
    display: flex;
    flex-direction: column;
    width: 30%;
    height: 100%;
    gap:32px;
}

.hero-section-description{
    width: 75%;
    font-size: clamp(12px,2vw,20px);
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.5px;
    color: rgba(149, 149, 149, 1);
}

.hero-section-email{
    width: 65%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(157, 157, 157, 1);
    color:rgba(255, 255, 255, 1);
    gap: 16px;
    border-radius: 4px;
    font-size: clamp(10px,3vw,18px);
    line-height: 24px;
    border: none;
    cursor: pointer;
    padding: 0 16px;

}

.hero-section-image{
    width: 35%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: flex-end;
}

.hero-section-image img{
    width: 100%;
    height: 100%;
    display: flex;
}

.hero-section-intro{
    font-size: clamp(24px,2vw,60px);
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -0.5px;
    color: rgba(222, 222, 222, 1);
    margin: 0;
}

@media (max-width: 1500px) {
    .hero-section-information{
        width: 30%;
    }
    .hero-section-email{
        width: 60%;
    }
}

@media (max-width: 1300px) {
    .hero-section-information{
        width: 30%;
    }
    .hero-section-email{
        width: 70%;
    }
}
@media (max-width: 1100px) {
    .hero-section {
        display: flex;
        flex-direction: column-reverse; 
        justify-content: center;
        gap: 32px;
    }

    .hero-section-information{
        gap:32px;
        width: 60%;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .hero-section-intro{
        margin: 0;
        text-align: center;
        width: 75%;
    }
    .hero-section-description{
        margin: 0;
        text-align: center;
    }

    .hero-section-email{
        width: 60%;
    }
}
/* mehmet ali edit hero section */
@media screen and (max-width: 700px) {
    .hero-section-wrapper{
        height: auto;
        padding: 25px 0; 
        display: block;
        margin-bottom: 25px;
    }
    .hero-section{
        width: 100%;
        height: auto;
    }
    .hero-section-information{
        width: 100%;
        height: auto;
        gap: 12px;
    }  
    .hero-section-intro{
        width: 90%;
        font-size: 24px;
        font-weight: 500;
        letter-spacing: 2px;
        line-height: 50px;
    }
    .hero-section-description{
        width: 90%;
        font-size: 20px;
        font-weight: 400;
        letter-spacing: 0px;
    } 

    .hero-section-email{
        min-width: 210px;
        width: 65%;
        height: 60px;
        gap: 10px;
        font-size: 20px;
    }
}

/* mehmet ali problem statement  */

.hero-problem-statement{
    width: 100%;
    background-color: rgb(32, 32, 32);
    display: flex;
    justify-content: center;
}

.problem-statement {
    margin: 0px auto;
    padding: 50px 0;
    width: 1248px;
    min-height: 136px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    color: white;
}

.problem-statement h5 {
    margin: 0;
    width: 213px;
    height: 16px;
    opacity: 0.6;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.problem-statement p {
    margin: 0;
    width: 1248px;
    height: 108px;
    font-size: 32px;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: -0.5px;
    color: rgb(222, 222, 222);
}

/* 1440px'den küçük ekranlar için */
@media screen and (max-width: 1439px) {
    .problem-statement {
        padding: 10px 0;
        height: auto;
        width: 90%;
        margin: 25px 0;
    }

    .problem-statement p {
        width: 100%;
        height: auto;
        font-size: 24px;
        line-height: 35px;
    }
    
}
/* selin prototype component */
.prototype{
    margin: 25px 0;
}
.prototype p{
    width: 188px;
    height: 58px;
    text-decoration: underline;
    font-size: 16px;
    color: #A5A5A5;
    font-family: 'Manrope', sans-serif;
}
.prototype img{
    width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .prototype {
        padding: 0 10px;
    }
}


/* Yaren - [JA-19] - Solution Component Start */
.solution-section {
    background-color: #202020;
}
.solution-big-container {
    max-width: 1248px;
    max-height: 743px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3%;
}
.solution-image-container {
    margin-top: 5%;
}
.solution-img {
    max-width: 506px;
    height: 763px;
}
.solution-texts {
    margin-left: 3%;
    margin-top: 10%;
    font-family: "Manrope", serif;
}
.solution-text1 {
    color: #979797;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
}
.solution-text2 {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 500;
    line-height: 54px;
}
@media screen and (max-width: 870px) {
    .solution-img {
        max-width: 80%;
        height: auto;
    }
    .solution-big-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2%;
    }
    .solution-texts {
        margin-top: 3%;
    }
    .solution-text1 {
        font-size: 14px;
        line-height: 14px;
    }
    .solution-text2 {
        font-size: 22px;
        line-height: 40px;
    }
}
.solution-section2 {
    margin-top: 80px;
    background-color: #202020;
    height: auto;
}
.solution-big-container2 {
    max-width: 1248px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3%;
}
.solution-image-container2 {
    margin-top: 5%;
}
.rectangle-img {
    max-width: 506px;
    height: 763px;
}
.solution-texts2 {
    margin-left: 3%;
    margin-top: 10%;
    font-family: "Manrope", serif;
}
.solution-text3 {
    color: #979797;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}
.solution-text4 {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 500;
    line-height: 54px;
}
@media screen and (max-width: 870px) {
    .rectangle-img {
        max-width: 80%;
        height: auto;
    }
    .solution-big-container2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2%;
    }
    .solution-texts2 {
        margin-top: 3%;
    }
    .solution-text3 {
        font-size: 14px;
        line-height: 14px;
    }
    .solution-text4 {
        font-size: 22px;
        line-height: 40px;
    }

    .solution-big-container2 {
        display: flex;
        flex-direction: column;
          }
    .solution-texts2 {
        
        order: 0;
         }
        
     .solution-image-container2 {
            order: -1;
         }
}
@media screen and (max-width: 450px) {
    .rectangle-img {
        max-width: 95%;
    }
    .solution-img {
        max-width: 95%;
    }
    .solution-texts,
    .solution-texts2 {
        margin-top: 2%;
        margin-left: 0;
    }
    .solution-text1,
    .solution-text3 {
        font-size: 12px;
        line-height: 12px;
    }
    .solution-text2,
    .solution-text4 {
        font-size: 18px;
        line-height: 30px;
    }
    .solution-section2{
        margin-top: 10px;
    }
}
/* Yaren - [JA-19] - Solution Component End */

/* selin contact me component */
.contact-me{
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    max-width: 479px;
    width: auto;
    height: 252px;
    margin: 25px auto;
}
.contact-me h2{
    margin-top: 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 30px;
    color: #DEDEDE;
    text-align: center;
    margin-bottom: 40px;
}
.contact-me p{
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -0.5px;
    text-align: center;
    color: #959595;
}
.contact-me button{
    width: 50%;
    max-width: 300px;
    height: 57px;
    padding: 16px 48px ;
    border: 2px solid #9D9D9D;
    border-radius: 9px;
    background: #9D9D9D;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin: 50px auto;
}
.contact-me img{
    width: 20px;
    height: 16px;
    color: #FFFFFF;
    margin-right: 10px;
}
.metin{
    color:  #FFFFFF;
    font-family: Manrope;
    font-size: 18px;
    font-weight: 600;
}
@media (max-width: 768px) {
    .contact-me h2 {
        font-size: 28px; 
    }
    .contact-me p{
        font-size: 20px; 
        line-height: 28px;
    }
    .contact-me button {
        width: 80%; 
        padding: 14px 32px; 
    }
}
@media (max-width: 480px) {
    .contact-me h2 {
        font-size: 24px; 
    }
    .contact-me p{
        font-size: 18px; 
        line-height: 26px;
        max-width: 100%;
    }
    .contact-me button {
        width: 90%; 
        padding: 12px 24px;
        flex-direction: column; 
        text-align: center;
    }
    .contact-me button img {
        margin-right: 0;
        margin-bottom: 5px; 
    }
}