/* Genel stil ayarları */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
    background-color: #f0e4d7; /* 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: 150px 50px; /* Üst ve alt padding */
    min-height: 400px; /* Minimum yükseklik */
    background: url('logo.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: 110px 0; /* Üst ve alt padding azaltıldı */
    background: linear-gradient(180deg, #852fd6, #00f3aa, #852fd6); /* Sabit renk geçişi */
}


.features h2 {
    text-align: center;
    margin-bottom: 51px;
    font-size: 2.2em;
    color: #333; /* Başlıkların rengi koyu gri yapıldı */
}



.features-wrapper {
    display: grid;
    grid-template-columns: 1fr; /* Tek sütun */
    gap: 2000000px;
    max-width: 745px;
    margin: 0 auto;
}

/* Özellik Kartları */
.feature {
    background: linear-gradient(360deg, #05d6f7, #804c9c);
    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;
}



.features {
    padding-top: 120px; /* Header boyutuna göre padding verin */
}




.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: 10px 0;
    font-size: 1.5em;
}

.feature p {
    margin: 10px 0;
}


.feature a.buy-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: #fff;
    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(0.95);
}

/* Responsive Düzen */
@media (max-width: 9200px) {
    .features-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* About ve Contact Bölümleri */
.about, .contact {
    padding: 60px 0;
    background: #f0e4d7;
}

.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%;
}
