/* Sayfanın genel ayarları */
body {
    background-color: #f4f4f4; /* Açık gri arka plan */
    font-family: Arial, sans-serif; /* Yazı tipi */
    text-align: center; /* Metni ortala */
    margin: 0;
    padding: 0;
}

/* Başlık Stili */
h1 {
    color: #ffffff; /* Koyu gri renk */
    font-size: 2em; /* Başlık büyüklüğü */
    margin-top: 50px;
}

/* Paragraf Stili */
p {
    color: #ffffff;
    font-size: 1.2em;
    margin-top: 10px;
}

/* Buton Stili */
/* Modern Buton Stili */
.btn {
    display: inline-block;
    background: linear-gradient(45deg, #007bff, #00d4ff); /* Degrade renk geçişi */
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 50px; /* Butonu oval yap */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Hafif gölge efekti */
}

/* Buton Hover Efekti */
.btn:hover {
    transform: scale(1.1); /* Üzerine gelince büyüme efekti */
    background: linear-gradient(45deg, #0056b3, #008cff); /* Farklı degrade */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Buton Tıklama (Active) Efekti */
.btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


/* Bölüm Stili */
section {
    background: white;
    padding: 50px;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
/* Footer Sabitleme ve Stil */
footer {
    background-color: #161414;
    color: white;
    padding: 2px;
    position: fixed; /* Footer'ı ekrana sabitle */
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 0.5em; /* Daha ince yazı */
    opacity: 1.0; /* Hafif saydamlık */
}

html {
    scroll-behavior: smooth;
}

/* Navigasyon Menüsü */
nav {
    background-color: #2d283a;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: rgb(171, 198, 233);
    text-decoration: none;
    font-size: 1.2em;
    padding: 10px 15px;
    transition: background 0.3s ease;
}

nav ul li a:hover {
    background-color: #e6230a;
    border-radius: 5px;
}
/* Mobil uyumluluk (Responsive Design) */
@media (max-width: 768px) {
    nav ul {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li {
        display: block;
        margin: 10px 0;
    }

    section {
        width: 95%;
        padding: 20px;
    }

    h1 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }
}

/* Yumuşak Animasyonlar */
h1 {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 1s ease-out forwards;
}

/* Buton Hover Efekti */
.btn {
    transition: transform 0.2s ease-in-out;
}

.btn:hover {
    transform: scale(1.1);
}

/* Ana Animasyon */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Arka Plan Resmi */
body {
    background-image: url("assets/img/background.jpg"); /* Görselin konumunu kontrol et */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Sayfa kaydırıldığında sabit kalmasını sağlar */
    background-repeat: no-repeat;
}


/* İletişim Formu Stili */
#iletisim {
    background: rgb(56, 185, 125);
    padding: 50px;
    margin: 20px auto;
    width: 60%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

#iletisim h2 {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-top: 10px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

button {
    margin-top: 15px;
    padding: 10px;
    background-color: #5d1dd4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}
/* Sayfa Geçiş Animasyonu */
body {
    opacity: 0;
    animation: fadeIn 0.8s ease-in forwards;
}

/* Sayfa Açılış Animasyonu */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Uygulamalar Bölümü Stili */
#uygulamalar {
    text-align: center;
    padding: 50px;
    background-color: #f8f9fa; /* Açık gri arka plan */
    border-radius: 10px;
    margin: 20px auto;
    width: 35%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Başlık Stili */
#uygulamalar h2 {
    color: #90c514; /* Mavi başlık */
    font-size: 1.0em; /* Büyük font */
    font-family: 'Arial', sans-serif; /* Arial fontu */
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* Açıklama Metni Stili */
#uygulamalar p {
    color: #333; /* Koyu gri metin */
    font-size: 1.2em; /* Orta büyüklükte font */
    font-family: 'Verdana', sans-serif; /* Verdana fontu */
    font-style: italic; /* Eğik (italik) metin */
    opacity: 0.8; /* Hafif saydamlık */
}

/* Hakkımızda Bölümü */
#hakkimizda {
    background-color: #f8f9fa; /* Açık gri arka plan */
    padding: 50px;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px; /* Köşeleri yuvarlat */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    text-align: center;
}

/* Başlık Stili */
#hakkimizda h2 {
    color: #007bff; /* Mavi başlık */
    font-size: 2.5em; /* Büyük font */
    font-family: 'Arial', sans-serif; /* Arial fontu */
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Metin Stili */
#hakkimizda p {
    color: #333; /* Koyu gri yazı */
    font-size: 1.2em; /* Yazı büyüklüğü */
    font-family: 'Verdana', sans-serif; /* Verdana fontu */
    text-align: justify; /* Yazıyı iki yana yasla */
    line-height: 1.6; /* Satırlar arası boşluk */
}

/* Önemli Noktalar İçin Kalınlık */
#hakkimizda strong {
    color: #0056b3; /* Koyu mavi */
    font-weight: bold;
}

/* Hizmet Listesi Stili */
#hakkimizda ul {
    list-style: none;
    padding: 0;
}

#hakkimizda ul li {
    font-size: 1.2em;
    padding: 10px;
    background: #e3f2fd; /* Açık mavi arka plan */
    margin: 5px 0;
    border-radius: 5px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    #hakkimizda {
        width: 95%;
        padding: 30px;
    }

    #hakkimizda h2 {
        font-size: 2em;
    }

    #hakkimizda p {
        font-size: 1em;
    }
}

/* Uygulama Seçim Bölümü */
#uygulama-secimi {
    text-align: center;
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin: 20px auto;
    width: 80%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Başlık */
#uygulama-secimi h2 {
    color: #007bff;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Açıklama Metni */
#uygulama-secimi p {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Kategori Butonları */
.kategori-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.kategori-btn {
    display: inline-block;
    background: linear-gradient(45deg, #007bff, #00d4ff);
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.kategori-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #0056b3, #008cff);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}



