@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;500;600&display=swap');

:root{
    --main-color: #d6d6d6;
    --black-color: #000;
    --border:0.1rem solid rgba(255,255,255,0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    transition: 0.2 ease;
    font-family: "Poppins",sans-serif;
}

/*! base html codes */
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: 0.8rem;
    background-color: #fff;
}

html::-webkit-scrollbar-track{
    background-color: transparent;
}

html::-webkit-scrollbar-thumb{
    width: 0.8rem;
    background-color: var(--black-color);
    border-radius: 30rem;
}

body{
    background-color: var(--main-color);
}

section{
    padding: 3.5rem 7%;
}

h1{
    font-size: 5rem;
}

h3{
    font-size: 2.8rem;
}

h6{
    font-size: 1.8rem;

}

/*! header start */
.header .logo img{
    height: 5rem;
}

.header{
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    margin: 2rem 7%;
    border-radius: 3rem;
}

.header .navbar a {
    margin: 0 1rem;
    font-size: 1.6rem;
    color: var(--black-color);
    border-bottom: 0.1rem solid transparent;
}

.header .navbar .active, .header .navbar a:hover {
    border-color: var(--main-color);
    padding-bottom: 0.5rem;
}

.header .button button{
    cursor: pointer;
    font-size: 2.5rem;
    background-color: transparent;
    border-color: transparent;
}
/*! header end */

/*! home start */
.home{
    min-width: 100vh;
}

.main_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr)); 
    padding: 2rem;
  }
  
.main_photo{
    width: 50rem;
    height: 50rem;
    border-radius: 50%;
    object-fit: cover;
}

.main_content_right{
    display: grid;
    gap: 5rem;
}

.content_text{
    display: grid;
    gap: 1rem;
}

.content_text_grid1 {
    font-size: 10rem;
    max-width: fit-content;
}

.content_text_grid2 {
    font-size: 3rem;
    max-width: fit-content;
}

.content_text_grid3 {
    font-size: 1.6rem;
    max-width: fit-content;
    text-decoration: none;
    font-weight: 300;
}

.circular_items{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(18rem,auto));
    max-width: max-content;
    grid-auto-flow: column;
    gap: 15rem;
}

.circular1{
    background-color: #EEA302;
    width: 18rem;
    height: 18rem;
    border-radius: 15rem;
    border: 0.2rem solid black;
    text-align: center;
}

.circular1_text{
    max-width: fit-content;
    font-size: 3rem;
    color: var(--black-color);
    text-align: center;
    margin-top: 6.7rem;
    margin-left: 2.7rem;
}

.circular1:hover{
    background-color: var(--main-color);
}

.circular2{
    background-color: #59ead4;
    width: 18rem;
    height: 18rem;
    border-radius: 15rem;
    border: 0.2rem solid black;
}

.circular2_text{
    max-width: fit-content;
    font-size: 3rem;
    color: var(--black-color);
    text-align: center;
    margin-top: 6.7rem;
    margin-left: 2.9rem;
}

.circular2:hover{
    background-color: var(--main-color);
}
/*! home end */

/*! separator start */
.separator{
        width: calc(100% - 20.8rem); /* Soldan ve sağdan 104px boşluk bırak */
        height: 0.1rem; /* 1px yüksekliğinde çizgi */
        background-color: #000; /* Siyah çizgi */
        margin: 2rem auto; /* Üstten ve alttan boşluk, ortalamak için */  
}
/*! separator end */

/*! work_style start */

.work_style_heading{
    text-align: center;
    margin-bottom: 5.5rem;
}

.work_card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 1rem;
    text-align: center;
}
    
.card1{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 2rem;
    background-color: #fff;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
 }
  
.card2{ 
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 2rem;
    background-color: #fff;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.card3{ 
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 2rem;
    background-color: #fff;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;  
}

.card1:hover, .card2:hover, .card3:hover {
    transform: translateY(-1rem); 
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
    background-color: var(--main-color);
}

.icon{
    height: 10rem;
}

.work_card_p{
    font-size: 1.4rem;
    font-weight: 300;
    text-align: justify;
}
/* work_style end */

/* footer start */
.footer_content {
    display: flex;
    justify-content: space-between;
}

.content{
    display: flex;
    flex-direction: column;
    font-size: 1.4rem;
    gap: 1rem;
}

.social_media{
    display: flex;
    gap: 1rem;
}

.copyright{
    font-size: 1.2rem;
    font-weight: 800;
}

.footer a {
    color: var(--black-color);
  }
  
  .footer a:hover {
    color: #EEA302;
    font-weight: 800;
  }
  