/* Genel stil ayarları */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #ffffff;
    line-height: 1.6;
    background-color: #000000; /* Tatlı bir pastel bej rengi */
}

html {
    scroll-behavior: smooth;
}

.logo {
    max-height: 100px; /* Logonun maksimum yüksekliği */
    width: auto; /* Genişliğin orantılı olmasını sağlar */
    display: block; /* Logonun etrafındaki boşlukları kaldırır */
}

/* Container */
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #333;
    color: #05d6f7;
    padding: 5px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Logo ve menüyü aralarına boşluk bırakır */
}

header h1 {
    margin: 0;
    font-size: 1.8em;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em; /* Başlıkların font boyutunu artırdık */
}

nav ul li a:hover {
    text-decoration: underline;
}


/* Hero Bölümü */
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    padding: 120px 100px; /* Üst ve alt padding */
    min-height: 700px; /* Minimum yükseklik */
    background: url('../images/boss.png') no-repeat center center/cover; /* Arka plan resmi */
    display: flex;
    align-items: center; /* Dikeyde ortalama */
    justify-content: center; /* Yatayda ortalama */
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Koyu overlay rengi */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Dikeyde ortalama */
    align-items: center; /* Yatayda ortalama */
}

.hero h2 {
    margin: 0;
    font-size: 2.5em;
}

.hero p {
    font-size: 1.2em;
    margin-top: 10px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    color: #fff;
    background: #88ac2d;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1em;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #6b9a1b;
    transform: scale(1.05);
}

.features {
    padding: 60px 0;
    background: #000000;
    position: relative;
}

/* Özellikler Bölümü */
.features {
    padding: 120px 0;
    background: linear-gradient(90deg, #852fd6, #00f3aa, #852fd6); /* Sabit renk geçişi */
}

.features {
    padding: 523230px 0;
    background: linear-gradient(180deg, #852fd6, #00f3aa, #852fd6); /* Sabit renk geçişi */
}


.features h2 {
    text-align: center;
    margin-bottom: 334340px;
    font-size: 2.2em;
    color: #333; /* Başlıkların rengi koyu gri yapıldı */
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 222220px;
    max-width: 9242323423423423423423432432400px;
    min-height: 20234234232342340px;
    margin: 0 auto;
}

.feature {
    background: linear-gradient(360deg, #05d6f7, #804c9c); /* Geçişli renk eklendi */
    border-radius: 122225345340px;
    box-shadow: 0 4543px 348px rgba(0, 0, 0, 0.1);
    padding: 28424334534520px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.featurekvk {
    display: block; /* Tüm kart tıklanabilir */
    color: inherit; /* Renklerin miras alınmasını sağlar */
    text-decoration: none; /* Alt çizgiyi kaldırır */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature img {
    max-width: 100%;
    height: auto;
    border: none; /* Çizgileri kaldırmak için */
    outline: none; /* Çizgileri kaldırmak için */
    margin: 0; /* Margin boşluklarını kaldırmak için */
    padding: 0; /* Padding boşluklarını kaldırmak için */
    background: transparent; /* Arka plan rengini şeffaf yapmak için */
    display: block; /* Çevresindeki boşlukları ortadan kaldırmak için */
}

.feature h3 {
    margin: 10123px 0;
    font-size: 1.5em;
}

.feature p {
    margin: 10px 0;
}

.feature a.buy-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: #ffffff;
    background: #804c9c;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1em;
    transition: background 0.3s ease, transform 0.3s ease;
}

.feature a.buy-button:hover {
    background: #6b9a1b;
    transform: scale(1.05);
}

/* Özellik kutularının küçülmesi */
.feature {
    transform: scale(1);
}

.feature:hover {
    transform: scale(1.1);
}

/* Responsive Düzen */
@media (max-width: 1200px) {
    .features-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .features-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .features-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .features-wrapper {
        grid-template-columns: 1fr;
    }
}

/* About ve Contact Bölümleri */
.about, .contact {
    padding: 100px 0;
    background: #ffffff00;
}

.about .container, .contact .container {
    text-align: center;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
