
/*--------------------------------------------------------------
# Basics
--------------------------------------------------------------*/
body {
	overflow-x: hidden;
}
html {
	overflow-y: scroll;
	overflow-x: hidden;
}
ul {
	list-style: none;
}
textarea, input, a, button { 
	outline: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: #fff;
	background-image: url("../img/bg.png");
    background-color: #cccccc;
    background-attachment: fixed;
}
h1, h2, h3, h4, h6 {
	font-weight: 700;
}
a {
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}
a:hover, a:visited, a:focus, a:active, button:hover, button:visited, button:active, button:focus; {
	text-decoration: none !important;
	outline: none !important;
}
::selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}
::-moz-selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
.animation-delay-100 {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}
.animation-delay-200 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.animation-delay-300 {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
.animation-delay-400 {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
.animation-delay-600 {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.animation-delay-800 {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}
.animation-delay-1000 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.animation-delay-2000 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
/*--------------------------------------------------------------
# Video BG
--------------------------------------------------------------*/
#videoBg {
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%; 
	min-height: 100%;
	z-index: -20;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
	color: #fff;
	position: relative;
	padding: 20px 0 30px 0;
}
.header-content {
	text-align: center;
}
.header-content h1 {
	font-weight: 900;
	font-size: 8em;
	letter-spacing: 2px;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 2px 2px 0 rgba(0, 0, 0, 0.7);
}
.header-content p {
	font-size: 1.7em;
	font-weight: 300;
	letter-spacing: 2px;
}

.logo {
    width: 80%;
    height: auto;
    padding-bottom: 20px;
}

.features {
    display: grid;
    margin: auto;
    width: 50%;
}

.features img {
    max-height: 15px;
}

.feature {
    background-color: #10102e;
    border: solid 2px #503cad;
    border-radius: 25px;
    padding: 8px 5px;
    font-size: 0.5em;
    font-family: 'Poppins', sans-serif;
    margin: auto;
    width: auto;
    text-align: center;
}

.feature p {
    margin-bottom: 0;
    text-align: center;
}
/*--------------------------------------------------------------
# App Grid
--------------------------------------------------------------*/

.app-icon-img {border-radius:20px!important;}

.app-item {
	position: relative;
}
.app-link-wrapper {
	position: relative;
	top: -40px;
}
.app-link-wrapper img {
	display: table;
	margin: 0 auto;
}
.app-link-wrapper a {
	background: #fff;
	display: table;
	margin: 0 auto;
	padding: 20px 35px 20px 55px;
	color: #000;
	border-radius: 10px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 2px;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5);
	text-decoration: none !important;
	border: 2px solid #eee;
	position: relative;
}
.app-link-wrapper a:hover {
	background: #8400ff;
	color: #fff;
}
.app-link-wrapper a span.lnr {
	position: absolute;
	left: 17px;
	top: 20px;
	font-size: 1.4em;
	color: #8400ff;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}
.app-link-wrapper a:hover span.lnr {
	color: #fff;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
	margin-top: 120px;
	text-align: center;
	padding: 5px 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 1em;
	position: relative;
	z-index: 10;
}

.fix {
    position:fixed;
    bottom:0px;
    z-index: -1;
    width: 100%;
    height: auto;
    min-height: 50%;
    min-width: 50%;
}


/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media screen and (max-width: 1920px) {
	.header-content h1 {
		font-size: 7em;
	}
	.header-content p {
		font-size: 1.6em;
	}
	.container {
		max-width: 800px;
	}
	.app-link-wrapper a {
		padding: 15px 25px 15px 45px;
		letter-spacing: 1px;
	}
	.app-link-wrapper a span.lnr {
		top: 15px;
	}
}
@media screen and (max-width: 767px) {
	.header-content h1 {
		font-size: 5em;
	}
	.header-content p {
		font-size: 1.2em;
	}	
	.app-link-wrapper {
		top: -15px;
	}
	.app-link-wrapper a {
		padding: 12px 15px 10px 35px;
		letter-spacing: 0;
	}
	.app-link-wrapper a span.lnr {
		font-size: 1em;
		left: 12px;
	}
}
@media screen and (max-width: 500px) {
	.header-content, .footer-content {
		padding: 0 25px;
	}
	header {
		padding-top: 50px;
	}
	.header-content h1 {
		font-size: 3.2em;
	}
	.app-link-wrapper {
		top: -15px;
	}
	.app-item img {
		max-width: 70%;
		display: table;
		margin: 0 auto;
	}
	.app-section-content {
		padding: 0 25px;
	}
	.app-link-wrapper a {
		padding: 10px 10px 8px 35px;
		letter-spacing: 0;
		font-size: 0.7em;
	}
	.app-link-wrapper a span.lnr {
		font-size: 1em;
		left: 17px;
	}
	#videoBg {
		right: none;
		left: -55% !important;
	}
}





/* Arama Çubuğu Stilleri */
.search-container {
    position: relative;
    width: 50%; /* Masaüstünde genişlik ayarı */
    max-width: 400px;
    margin: 0 auto; /* Ortalamak için */
    z-index: 1000;
}

.search-input {
    width: 100%;
    padding: 10px 50px 10px 20px; /* Sağda çarpı butonu için boşluk artırıldı */
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Çarpı simgesi stili */
.clear-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px; /* Çarpı simgesi boyutunu artırdık */
    color: #888;
    cursor: pointer;
    display: none; /* Başlangıçta gizli */
    transition: color 0.2s ease;
}

.clear-btn:hover {
    color: #555; /* Çarpı simgesinin üstüne gelince renk değişimi */
}

.search-input:focus + .clear-btn,
.search-input:not(:placeholder-shown) + .clear-btn {
    display: block; /* Çarpı simgesi, arama alanı doluyken gösterilir */
}

/* Arama sonuçları stili */
.search-results {
    position: absolute;
    top: 45px;
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

/* Scrollbar Stili */
.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 8px;
}

.search-results::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 8px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .search-container {
        width: 90%; /* Mobilde tam genişlik */
    }

    .search-input {
        font-size: 14px;
    }

    .clear-btn {
        font-size: 20px; /* Mobilde çarpı simgesi boyutunu biraz küçültüyoruz */
        right: 10px; /* Sağdaki boşluğu mobilde azaltıyoruz */
    }
}
