body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f8f8f8;
    color: #333;
}

header {
    text-align: center;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ddd;
}

.about h1 {
   font-family: 'Montserrat';
 font-size: 30px;
  font-style: bold;
}


.about  p {
    font-family:'Montserrat';font-size: 15px; /* İstersen buraya başka bir font da yazabilirsin */
    font-style: italic; /* İstersen yazıya italik de verebilirsin, tamamen opsiyonel */
}

.whoami h1{

     font-family: 'Montserrat';
 font-size: 30px;
  font-style: bold;
}

.whoami p{

  font-family:'Montserrat';font-size: 15px; /* İstersen buraya başka bir font da yazabilirsin */
    font-style: italic; /* İstersen yazıya italik de verebilirsin, tamamen opsiyonel */}

.skills h1{

     font-family: 'Montserrat';
 font-size: 30px;
  font-style: bold;
}

.whatido h1{

font-family: 'Montserrat';
 font-size: 30px;
  font-style: bold;


}



.whatido p{
font-family:'Montserrat';font-size: 15px;
    font-style: italic; /* İstersen yazıya italik de verebilirsin, tamamen opsiyonel */}


.goals h1{

     font-family: 'Montserrat';
 font-size: 30px;
  font-style: bold;
}
.role {
    font-family:'Montserrat';
    color: #555;
    font-style: bold;
    font-weight: bold;
     font-size: 20px;
    margin-top: 5px;
}

.socials a {
    margin: 0 8px;
    font-size: 30px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.socials a.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color: transparent;
}

.socials a.instagram:hover {
    transform: scale(1.3) rotate(10deg);
    filter: brightness(1.3);
}

.socials a.twitter {
    color: black;
}

.socials a.twitter:hover {
    transform: scale(1.3) rotate(-10deg);
    filter: brightness(1.3);
}

.socials a.linkedin {
    color: #0077B5;
}

.socials a.linkedin:hover {
    transform: scale(1.3) rotate(10deg);
    filter: brightness(1.3);
}

.socials a.mail {
    color: #EA4335;
}

.socials a.mail:hover {
    transform: scale(1.3) rotate(-10deg);
    filter: brightness(1.3);
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

h2 {
    border-bottom: 2px solid #333;
    display: inline-block;
    margin-top: 40px;
    font-size: 1.8em;
}

p {
    line-height: 1.6;
}

.bar-container {
    margin-top: 20px;
}

.bar {
    background: #ddd;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress {
    height: 20px;
    border-radius: 20px;
}

.java { width: 70%; background: #f39c12; }
.python { width: 85%; background: #3498db; }
.php { width: 80%; background: #9b59b6; }
.autocad { width: 65%; background: #e67e22; }
.mysql { width: 75%; background: #1abc9c; }
.htmlcss { width: 90%; background: #e74c3c; }

.whatido img {
    width: 40%;
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;

}


 .projects, .contact {
    margin-top: 50px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    
}

.project {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.project h3{
   
font-family: 'Montserrat';
 font-size: 20px;
  font-style: bold; 

}
.project p{
    font-family:'Montserrat';font-size: 15px;; /* İstersen buraya başka bir font da yazabilirsin */
    font-style: italic; /* İstersen yazıya italik de verebilirsin, tamamen opsiyonel */}


.project:hover {
    transform: scale(1.05);
}

.contact form {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    gap: 12px; /* inputlar arasında boşluk */
}
.contact h2{

    font-family: 'Montserrat';
 font-size: 20px;
  font-style: bold; 
  border-bottom: none;
   
}
.contact input, 
.contact textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
  font-family:'Montserrat';font-size: 15px;; /* İstersen buraya başka bir font da yazabilirsin */
    font-style: italic; /* İstersen yazıya italik de verebilirsin, tamamen opsiyonel */

   
    transition: border-color 0.3s, box-shadow 0.3s;

}
.contact input:focus, 
.contact textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.4);
    outline: none;
}

.contact button {
    font-family: 'Montserrat';
    background: linear-gradient(45deg, #3498db, #2ecc71);
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

footer {
    text-align: center;
    padding: 15px;
    background: #222;
    color: #bbb;
    margin-top: 50px;
    border-radius: 12px 12px 0 0;
    font-size: 14px;
}

footer:hover {
    color: #fff;
    background: #111;
}


/* Başa dön butonu */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #3498db;
    color: #fff;
    font-size: 20px;
    padding: 12px 15px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: none;
}

.back-to-top:hover {
    background-color: #2980b9;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 10px;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }

    h1 {
        font-size: 1.5em;
    }

    .socials a {
        font-size: 24px;
        margin: 0 5px;
    }

    .bar {
        height: 15px;
    }
}