@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');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
}

h1{
    font-size: 2.5rem;
    font-weight: 700;
}

h2{
    font-size: 1.8rem;
    font-weight: 600;
}

h3{
    font-size: 1.4rem;
    font-weight: 800;
}

h4{
    font-size: 1.1rem;
    font-weight: 600;
}

h5{
    font-size: 1rem;
    font-weight: 400;
    color: #1d1d1d;
}

h6{
    color: #d8d8d8;
}

button{
    font-size: 0.8rem;
    font-weight: 700;
    outline: none;
    border: none;
    background-color: #1d1d1d;
    color: aliceblue;
    padding: 13px 30px;
    cursor: pointer;
    /* text-transform: uppercase; */
    transition: 0.3s ease;
}

button:hover{
    background-color: #3a3833;
}

hr{
    width: 30px;
    height: 2px;
    background-color: #c4b583;
}

.star{
    padding: 10px 0;
}

.star i{
    font-size: 0.8rem;
    color: goldenrod;
}

.navbar{
    font-size: 16px;
    top: 0;
    left: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-nav .nav-link{
    padding:  0 20px;
    color: black;
    transition: 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar i:hover,
.navbar-light .navbar-nav .nav-link:hover.active,
.navbar i.active {
    color: coral;
}

.navbar i{
    font-size: 1.2rem;
    padding: 0 7px;
    cursor:pointer;
    /*font-weight: 500;*/
    transition: 0.3s ease;
}

/* Mobile Nav */

#bar{
    font-size: 1.5rem;
    padding: 7px;
    cursor: pointer;
    /*font-weight: 500;*/
    transition: 0.3s ease;
    color: black;
}

#bar:hover,
#bar.active{
    color: #ffffff;
}

@media only screen and (max-width: 991px){
    body > nav > div > button:hover,
    body > nav > div > button:focus {
        background-color: #c4b583;
    }
    body > nav > div > button:hover #bar,
    body > nav > div > button:focus #bar {
        color: #fff;
    }
    #navbarSupportedContent > ul{
        margin: 1rem;
        justify-content: flex-end;
        align-items: flex-end;
        text-align: right;
    }

    #navbarSupportedContent > ul > li:nth-child(n) > a{
        padding: 10px 0;
    }
    #navbarSupportedContent{
        background-color: white;
    }
}

.bg-nav{
    background-color: white;
}

.navbar-light .navbar-toggler {
    border: none;
    outline: none;
}

#home{
    background-image: url("img/dr2.jpg");
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: top 105px center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-repeat: no-repeat;
}

#home span{
    color: coral;
}

#new .one img{
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#new .one .details{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 0.3s ease;
}

#new .one:hover .details{
    cursor: pointer;
    opacity: 0.8;
}

#new .one .details button{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background: none;
    /* text-transform: uppercase; */
    border-bottom: 1px solid white;
    padding: 2.5px;
    transform: translateY(70px);
    transition: 0.3s ease;
}

#new .one .details button:hover{
    color: #fff;
    border-bottom: 1px solid #fff;
}

#new .one:nth-child(1) .details{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
}

#new .one:nth-child(2) .details{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#new .one:nth-child(3) .details{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-end;
    text-align: end;
}

/* Ürünler */

.product{
    cursor: pointer;
    margin-bottom: 2rem;
}

.product img{
    transition: 0.3s all;
}

.product:hover img{
    opacity: 0.7;
}

.product .buy-btn{
    background: #c4b583;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.3s all;
}

.product:hover .buy-btn{
    transform: translateY(0);
    opacity: 1;
}

#banner{
    background-image: url("img/dr2.jpg");
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: top 70px center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-repeat: no-repeat;
}

#banner h4{
    color: #d8d8d8;
}

#banner h1{
    color: #fff;
}

#banner button{
    background-color: #c4b583;
}

footer{
    background-color: #222222;
}

footer h5{
   color: #d8d8d8;
   font-weight: 700;
   font-size: 1.2rem;
}

footer li{
    padding-bottom: 4px;
}

footer li a{
    font-size: 0.8rem;
    color: #999;
    text-decoration: none;
}

footer li a:hover{
    color: #d8d8d8;
}

footer p{
    color: #999;
    font-size: 0.8rem;
}

footer .copyright a{
    color: #000;
    width: 38px;
    height: 38px;
    background-color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    transition: 0.3 ease;
    margin: 0 5px;
}

footer .copyright a:hover{
    color: #fff;
    background-color: #c4b583;

}

#blog-container .post .post-img{
    overflow: hidden;
    cursor: pointer;

}

#blog-container .post img{
    transition: 0.3s ease;
}

#blog-container .post:hover img{
    /* transform: scale(1.3) rotate(-10deg); */
    opacity: 0.8; 
} 

#blog-container .post:hover h3{
   color: #fb774b;
}

#blog-container .post h3{
    transition: 0.3s ease;
    cursor: pointer;
 }

 .nav-item a{
    color: #000;
 }

.creator a:hover{
    color: #fff;
}

.banner {
    position: relative;
    /* background: #aad5f6; */
}
.slide-1 {
    background: url('../img/banner-1.png');

}
.slide-2 {
    background: url('../img/banner-2.png');
}
.slide-3 {
    background: url('../img/banner-3.png');
}
.slide-4 {
    background: url('../img/banner-4.png');
}
.slide {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow-x: hidden;
    padding-left: 0;
    padding-right: 0;

    /* max-height: 500px; */
    overflow-x: hidden; /* Taşan içeriği gizler */
}
.caption {
    background: rgba(0, 0, 0, 0.03);
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 40px 0px;
}
.caption h3 {
    color: #fff;
    text-align: center;
    font-size: 50px;
    padding: 18px;
}
.caption p {
    max-width: 600px;
    width: 90%;
    margin: 0px auto;
    color: #ccc;
    text-align: center;
    font-size: 18px;
    line-height: 1.5em;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 100;
    background: rgba(0, 0, 0, .1);
    border-radius: 50%;
    transform: background 500ms;
}
.arrow img {
    width: 50px;
}
.arrow:hover {
    background: rgba(0, 0, 0, .4);
}
.l {
    left: 0;
}
.r {
    right: 0;
}

@media only screen and (max-width: 900px){
    .banner{
        display: none;
    }
    #brand{
        /* padding-top: px; */
    }
}

@media only screen and (min-width: 900px){
   .mobile{
    display: none;
   }
}

.container-fluid{
    padding-left: 0;
    padding-right: 0;
    width: 100%; /* Banner genişliği ekran genişliğine göre ayarlanır */
    height: auto; /* Yükseklik otomatik olarak ayarlanır */
    /* max-height: 500px; */
    overflow: hidden; /* Taşan içeriği gizler */
}

.mobile img{
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 500px){
   .desktop img{
        display: none;
   }
}
