@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --main-color: #e84242;
    --black-color: #000000;
    --border: 0.1rem solid rgba(255,255,255,
    0.4);
}


* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2s ease;
}

/*! base html codes */
html{
    font: 62.5%;
   overflow-x: hidden;
   scroll-padding-top: 9rem;
   scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: 0.8rem;
    background-color: #000000;

}

html::-webkit-scrollbar-track{
background-color: black

}
html::-webkit-scrollbar-thumb{
    border-radius: 3rem;
    background-color: var(--black-color);


}

body {
    background-color: #fff;
}
section{
    padding: 3.5rem 7%;
}

a{
    color:rgb(0, 0, 0) ;
    text-decoration: none;

}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: 1rem 1.95rem;
    border-radius: 30rem;
    font-size: 1rem;
    color: #ffffff;
    background-color: red;
    align-items: center;
    cursor: pointer;

}
.buttons i{
    color: #fff;
    
}

.btn:hover{
   opacity: 0.7;
}

.title{
    font-size: 2rem;
}



.heading{
    color: #ff0000;
    text-transform:uppercase ;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    border-bottom: 0.1rem solid #000000;
    
}

.heading span{
    color: var(--black-color);
text-transform: uppercase;

}
.search-input{
    font-size: 1rem;
    color: #212122;
    padding: 1rem;
    text-transform: 1rem;
    border-radius: 3rem;
    display: flex;
}
/*! header start*/

.header .search-form{
    position: absolute;
    top: 115%;
    right: 7%;
    background-color: #fff;
    width: 50rem;
    height: 4rem;
    align-items: center;
    display: flex;
    border-radius: 3rem;
    box-shadow:0px 0px 25px 2px rgb(0 0 0 / 75%);
    transform: scaleY(0);
} 

.header .search-form.active{
    transform: scaleY(1);
}

.header .search-form i{
    cursor: pointer;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    color: #000000;
}

.header .search-form input{
    width: 100%;
}

.header {
    background-color: gray;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    margin: 2rem 7%;
    border-radius: 30rem;
    box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 
    0.75);
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: center;
}
.header .navbar a{
    margin: 0 1rem;
    font-size: 1.6rem;
    color: #fff;
    border-bottom: 0.1rem solid transparent;
    text-align: center;

}


.header .navbar .active,
.header .navbar a:hover{
    border-color: var(--main-color);
    padding-bottom: 0.5rem;

}

.header .buttons button {
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
    background-color: transparent;
    text-align: center;
}

.header img{
    height: 5rem;
    position: relative;
    margin-left: 150px;
}




#menu-btn{
    display: none;
}

/*! header end*/

/*! Home Start*/
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1080px; 
    margin: auto;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider img {
    width: 100%;      
    height: auto;     
    display: block;
}

button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 36px;
    z-index: 10;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

button.prev:hover,
button.next:hover {
    background-color: rgba(0,0,0,0.8);
}





/*! Home End*/



/*! menu start */
.menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;

}
.menu .box-container .box  img{
    width: 100%;
    object-fit: cover;
    height: 30rem;
    border-radius: 2rem;
    flex-wrap: wrap;
}

.menu .box-container .box{
    padding: 3rem;
    border-radius: 3rem;
    min-height: 30rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.menu .box-container .box  .menu-category{
   font-size: 1.4rem;
   text-transform: lowercase;
}

.menu .box-container .box  h3{
    color: #000000;
   font-size: 2rem;
   display: flex;
}

.menu .box-container .box  p{
display: flex;
color: #ff0000;
}




/*! menu end */

/*! products start */
.products .box-container{
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(30rem, 1fr)) ;
    gap: 0.1rem;
}

.products .box-container .box{
    text-align: center;
    background-color: rgba(102, 102, 102, 0.151);
    position: relative;
    border-radius: 2rem;
    height: 40rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    width: 32rem;
    

}

.products .box-container .box .box-head{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 10;

}
.products .box-container .box .box-head .title{
font-size: 1.4rem;

}

.products .box-container .box .box-head .name{
font-size: 2rem;
font-weight: bold;
text-align: start;
overflow-wrap: anywhere;

}

.products .box-container img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    object-fit: cover;
    border-radius: 2rem;

}

.products .box-container .box-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.products .box-container .box-bottom .info{
   display: flex;
   flex-direction: column;
   align-items:flex-start ; 
}

.products .box-container .box-bottom .info .price{
    font-size: 2rem;
    color: rgb(0, 0, 0);

}

.products .box-container .box-bottom .info .amount{
    font-size: 1.4rem;
    color: #000000;
}
.products .box-container .box-bottom .product-btn a{
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 50%;
 width: 4rem;
 height: 4rem;
 border: 0.2rem solid var(--main-color);


}
.products .box-container .box-bottom .product-btn a i{
    font-size: 1.6rem;
    color: var(--main-color);
}


/*! products end */

/*! about start */
.about .row {
    display: flex;
    flex-wrap: wrap;
    column-gap: 3rem;


}
.about .row .image{
flex: 1 1 45rem;
}

.about .row .img{
    width: 2rem;
    height: 2rem;
}

.about .row .content{
    flex: 1 1 45rem;
}

.about .row .content h3{
  font-size: 3rem;
  color: #fff;  
}


.about .row .content p{
    font-size: 0.9rem;
    color: #000;
    padding: 1rem 0 ;
    line-height: 1.8;
}

/*! about end */

/*! reviews start */
.review .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.review .box-container .box{
   border: var(--border);
    text-align: center;
     padding: 3rem 2rem;
      background-color: rgba(102, 102, 102, 0.151);
       border-radius: 3rem; 
}

.review .box-container .box p{
    color: #000000;
 font-size: 1rem;
 line-height: 1.8rem;
 padding: 2rem 0;   
}

.review .box-container .box .user{
   height: 7rem;
   width: 7rem;
   border-radius: 50%;
    object-fit: cover;

}

.review .box-container .box h3{
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--main-color);
}

.review .box-container .box .stars i{
    font-size: 1rem;
    color: gold;
}
/*! reviews end */

.contact .row{
    display: flex;
    background-color: black;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact .row .maps{
    display: flex;
    flex: 1 1 45rem;
    height: auto;
    object-fit: cover;
}

.contact .row form{
    padding: 5rem 2rem;
    flex: 1 1 45rem;
    text-align: center;
}

.contact .row form h3{
    text-transform: uppercase;
    font-size: 3.5rem;
    color: #fff;
}

.contact .row form .inputBox{
    display: flex;
    align-items: center;
    margin-top: 2rem 0;
    border: var(--black-color);
}

.contact .row form .inputBox i{
    color: #fff;
    font-size: 1rem;
    padding-left: 1rem;
}

.contact .row form .inputBox input{
    width: 100%;
    padding: 1.3rem;
    font-size: 0.9rem;
    color: #fff;
    text-transform: none;
    background: none;
}

.contact .row form .btn{
    color: var(--main-color);
    background-color:#fff ;
    font-weight: bold;
}

/* Popup stili */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    background: #000;
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 25px rgba(0,0,0,0.5);
    z-index: 9999;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    max-width: 320px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.popup.show {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1.05);
}

.popup .close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #fff;
}

.popup p {
    margin: 0;
    font-size: 1rem;
}



/*! blogs start */
.blogs .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1.5rem;
}
.blogs .box-container .box .image{
 height: 15rem;
 overflow: hidden;
 width: 100%;
 border-top-left-radius: 3rem;
 border-top-right-radius: 3rem;
}

.blogs .box-container .box{
    width: 30rem;
    height: 50rem;
 background-color: rgba(102, 102, 102, 0.151);
 border-radius: 3rem;
}

.blogs .box-container .box .image img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.blogs .box-container .box:hover .image img{
    transform: scale(1.2);
}
.blogs .box-container .box .content{
    padding: 2rem;
}
.blogs .box-container .box .content title{
    font-size: 2.5rem;
    line-height: 1.5;
}
.blogs .box-container .box .content span{
    display: block;
    padding-top: 1rem;
    font-size: 2rem;
}
.blogs .box-container .box .content p{
font-size: 1rem;
line-height: 1.8;
color: black;
padding: 1rem 0;

}
.blogs .box-container .box .btn{
    padding: 1rem;
    
}
    
/*! blogs end */

/*! footer start */
  .footer .search{
    display: flex;
    justify-content: center;
  }

  .footer .search .search-input{
    background-color: #000;
    color: #fff;
    width: 60rem;
    height: 4rem;
  }

  .footer .search .btn-primary{
    background-color: var(--black-color);
    color: #ffffff;
    padding: 1rem 2rem;
    margin: 1rem;
  }

  .footer .share {
    padding: 1rem 0;

  }

  .footer .share a{
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    color: #000000;
    font-size: 1.5rem;
    border: var(--border);
    border-color: #000000;
    border-radius: 50%;
    margin: 0.3rem;
    border-width: 0rem;
    flex-wrap: wrap;
    
  }

.footer .share a:hover{
  background-color: #00000062;


  }

  .footer .links{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    border: var(--border);
    border-color: #fff;
  }

  .footer .links a{
    background: var(--black-color);
    color: #ffffff;
    padding: 0.7rem 2rem;
    font-size: 1rem;
    border-radius: 3rem;
  }

   .footer .links a:hover{
    background-color: var(--black-color);
    opacity: 0.7;
    
   }
   .footer .links a.active {
    background-color: rgb(39, 38, 38);
   }

   .footer .credit{
    font-size: 1rem;
    color: #ff0000;
    font-weight: 300;
    padding-top: 1.5rem;
    
   }

   .footer .credit span{
    color: #000000;
    font-style: italic;
    font-weight: bold;
   }
/*! footer end */

/*! responsive start */
@media (max-width: 991px){
    html{
        font-size: 55%;
    }

    .header{
        padding: 1.5rem 2rem;
    }

    .header .logo .img{
        height: 7rem;
    }
    
    section{
        padding: 2rem;
    }
    .products .box-container .box .box-head .name{
        font-size: 3.4rem;
    }
}

@media (max-width: 768px){
    #menu-btn{
        display: inline-block;
    }
    .header .navbar{
        position: absolute;
        top: 95%;
        background-color:#000000;
        height: calc(100vh - 9rem);
        width: 30rem;
        box-shadow: 0px 20px 14px 0px rgb(0 0 0 / 75%);
        right: -100%;
    }

.header .navbar.active{
     right: 3rem;
}


    .header .navbar a{
        color: white;
        display: block;
        margin: 1.5rem;
        padding: 0.5rem;
        font-size: 2rem;
    }
}

/*! responsive end */

.babalar a{
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    color: #000000;
    font-size: 1.5rem;
    border: var(--border);
    border-color: #000000;
    border-radius: 50%;
    margin: 0.3rem;
    border-width: 0rem;
    flex-wrap: wrap;
    padding: 0rem;
}

.babalar a:hover{
    background-color: #00000062;
}

.krallar a{
    bottom: 5rem;
    gap: 50px;
    font-size: 1.5rem;


}

.krallar a:hover{
    transform: scale(1.4);
    background-color: #00000062; border-radius: 3rem;
    
}

.capelli h3{
    font-size: 1rem;
    color: #212122;
}

.capelli h1{
color: #212122;
font-size: 2rem;
}

.dentela img{
    height: 30rem;
    width: 30rem;
    border-radius: 50%;
}

.dentela {
   padding: 2rem;
   margin-bottom: 10px;
   line-height: 2.5rem;
}

.plastica{
    padding: 2rem;
   margin-bottom: 10px;
   line-height: 2.5rem;
}

.barba img{
    height: 30rem;
}

.barba{
    padding: 2rem;
    margin-bottom: 10px;
    line-height: 2.5rem;
}






.contact-form-area {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 0;
  background: transparent; /* senin sitenin arka planı neyse o kalsın */
}

.contact-form-container {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 500px;
  text-align: center;
  animation: contactFadeIn 0.8s ease;
}

.contact-form-title {
  margin-bottom: 25px;
  color: #2c3e50;
  font-weight: 600;
  font-size: 22px;
}

.contact-label {
  display: block;
  text-align: left;
  font-size: 14px;
  margin-bottom: 5px;
  color: #333;
}

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.3s;
  outline: none;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

.contact-textarea {
  height: 120px;
  resize: none;
}

.contact-button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-button:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

@keyframes contactFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
