@charset "utf-8";
/* CSS Document */

/*genel ayarlaro*/
body{
	background-color: #0d0d0d;
	color: white;
	font-family: Arial, Helvetica, sans-serif;
}

/*navbar*/
.navbar{
	background-color: rgba(0,0,0,0.7);
	padding: 15px 0;
}

.logo{
	font-size: 28px;
	font-weight: bold;
	color: #00bfff !important;
}

.nav-link{
	color: white;
	margin-left: 15px;
	transition: 0.3s;
}

.nav-link:hover{
	color: #00bfff !important;
}

/*Hero section*/
.hero{
	padding-top: 100px;
}

.hero-text h1{
	font-size: 55px;
	font-weight: bold;
	margin-bottom: 20px;
}

/* MOBİL UYUMLULUK */
@media(max-width:768px){

    .hero-text{
        text-align: center;
    }

    .hero-text h1{
        font-size: 38px;
    }

    .hero-text p{
        font-size: 16px;
    }

    .hero-image{
        width: 100%;
        margin-top: 40px;
    }

    .campaign-box{
        text-align: center;
    }

    .campaign-box h2{
        font-size: 32px;
    }

    .campaign-image{
        width: 100%;
        margin-top: 30px;
    }

    .footer{
        text-align: center;
    }

    .social-icons{
        margin-bottom: 30px;
    }

}


.hero-text p{
	font-size: 18px;
	color: #cfcfcf;
	margin-bottom: 30px;
}

.hero-btn{
	background-color: #00bfff;
	color: white;
	padding: 12px 30px;
	border-radius: 30px;
	transition: 0.3s;
}

.hero-btn:hover{
	background-color: white;
	color: black;
}

.hero-image{
	width: 450px;
	border-radius: 20px;
}



/*ÜRÜNLER*/
.products{
	padding: 100px 0;
}

.section-title h2{
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 10px;
}

.section-title p{
	color: #bdbdbd;
	margin-bottom: 50px;
}

/*kart*/
.product-card{
	background-color: #1a1a1a;
	padding: 20px;
	border-radius: 20px;
	text-align: center;
	transition: 0.4s;
	height: 100%;
}

.product-card:hover{
	transform: translateY(-10px);
	box-shadow: 0 0 25px rgba(0, 191, 255, 0.4);
}

.product-card img{
	border-radius: 15px;
	margin-bottom: 20px;
	height: 220px;
	width: 100%;
	object-fit: cover;
}

.product-card h3{
	margin-bottom: 15px;
	font-size: 24px;
}

.product-card p{
	color: #cfcfcf;
	margin-bottom: 20px;
}

.product-btn{
	background-color: white;
	color: white;
	border-radius: 30px;
	padding: 10px 25px;
	transition: 0.3s;
}

.product-btn:hover{
	background-color: white;
	color: black;
}


/*KAMPANYA*/
.campaign{
	padding-bottom: 100px;
}

.campaign-box{
	background: linear-gradient(135deg, #00bfff, #0066ff);
	border-radius: 30px;
	padding: 50px;
}

.campaign-box h2{
	font-size: 45px;
	font-weight: bold;
	margin-bottom: 20px;
}

.campaign-box p{
	font-size: 18px;
	margin-bottom: 30px;
}

.campaign-btn{
	background-color: white;
	color: black;
	border-radius: 30px;
	padding: 12px 30px ;
	font-weight: bold;
	transition: 0.3s;
	margin-bottom: 12px;
}

.campaign-btn:hover{
	background-color: black;
	color: white;
}

.campaign-image{
	width: 400px;
	border-radius: 20px;
}

/*whatsapp*/
.whatsapp-btn{
	position: fixed;
	right: 20px;
	bottom: 20px;
	background-color: #25D366;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 35px;
	text-decoration: none;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
	z-index: 1000;
	transition: 0.3s;
}

.whatsapp-btn:hover{
	transform: scale(1.1);
	color: white;
}

/* FOOTER */
.footer{
    background-color: #111;
    padding: 70px 0 20px;
}

.footer-logo{
    color: #00bfff;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer p{
    color: #cfcfcf;
}

.footer h4{
    margin-bottom: 20px;
}

.footer-links{
    list-style: none;
    padding: 0;
}

.footer-links li{
    margin-bottom: 10px;
}

.footer-links a{
    color: #cfcfcf;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover{
    color: #00bfff;
}

.social-icons a{
    color: white;
    font-size: 28px;
    margin-right: 15px;
    transition: 0.3s;
}

.social-icons a:hover{
    color: #00bfff;
}

.footer-bottom{
    text-align: center;
    margin-top: 20px;
}















