
/* Sayfanın tamamında yatay kaydırmayı engelle */
html, body {
    overflow-x: hidden;
}

/* General Styles */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #f8f8f8;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Menü ve logo arasında boşluk */
    max-width: 1200px; /* Merkezlemek için maksimum genişlik */
    margin: 0 auto; /* Ortalamak için otomatik margin */
    padding: 0 20px; /* İçerik kenar boşluğu */
}

.logo img {
    height: 40px; /* Logonun yüksekliği */
    margin-left: 0; /* Logoyu daha sola çekmek için */
}

#nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

#nav-links li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

#nav-links li a:hover {
    color: #e53b2c; /* Papilon kırmızısı */
}

/* Hamburger Icon */
.menu-icon {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    #nav-links {
        display: none; /* Menü başlangıçta gizli */
        flex-direction: column;
        background-color: #f8f8f8;
        position: absolute;
        top: 60px;
        right: 10px;
        width: 200px;
        border: 1px solid #ddd;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    #nav-links.show {
        display: flex; /* 'show' sınıfı eklenince menüyü göster */
    }

    .menu-icon {
        display: flex;
    }
    
    #nav-links li {
        margin: 15px 0;
        text-align: center;
    }
}

/* Main Section */
#home {
    background-color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
}

/* Görsel ve Başlık Yatay Hizalama */
.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Görsel ve başlık arasında boşluk */
}

.title-text {
    text-align: left; /* Yazıyı sola hizalamak için */
}

#home h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#home p {
    font-size: 1.2rem;
    color: #555;
}

#home button {
    background-color: #e53b2c; /* Papilon kırmızısı */
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 2rem; /* Butonu biraz aşağı kaydırmak için */
}

#home button:hover {
    background-color: #cc2f24;
}

/* Face Scan GIF Styling */
.face-scan {
    width: 350px; /* GIF boyutunu ayarlayın; ihtiyaca göre değiştirilebilir */
}

/* Mobil uyumlu tasarım */
@media (max-width: 768px) {
    .title-container {
        display: block; /* Üst üste dizmek için flex yerine block */
    }

    .face-scan {
        width: 200px; /* Mobilde GIF boyutunu küçült */
        margin-bottom: 1rem; /* Görselin altında boşluk bırak */
    }

    #home h1 {
        font-size: 2rem; /* Başlığı biraz küçült */
    }

    #home p {
        font-size: 1rem; /* Paragraf metnini küçült */
        text-align: center; /* Mobilde metni ortala */
    }

    #home button {
        font-size: 1rem;
        padding: 0.6rem 1.2rem; /* Butonu mobilde biraz küçült */
    }
}
/* Features Section */


#features {
    background-color: #e53b2c;
    padding: 4rem 2rem;
    text-align: center;
}

#features h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

#features ul {
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#features li {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 1rem;
    margin: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.1rem;
    color: #555;
    flex-basis: 22%; /* Her bir özellik genişliğini ayarlamak için */
    box-sizing: border-box;
}

/* Icon Styling */
.feature-icon {
    width: 100px; /* İkonun genişliği */
    height: 100px; /* İkonun yüksekliği */
    margin-right: 10px; /* İkon ile metin arasındaki boşluk */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #features li {
        flex-basis: 100%; /* Mobilde tam genişlikte görünmesi için */
    }
}

#use-cases {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
    text-align: center;
}

#use-cases h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.use-case {
    width: calc(33.333% - 20px);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    display: inline-block;
    vertical-align: top;
}

.use-case img {
    width: 100%;
    height: auto;
}

.use-case h3 {
    font-size: 1.3rem;
    color: #333;
    padding: 1rem;
}

.use-case p {
    font-size: 1rem;
    color: #555;
    padding: 0 1rem 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .use-case {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 1.5rem; /* Öğelerin arasını açmak için alt boşluk ekliyoruz */
    }
}


/* Contact Form */
#contact {
    background-color: #f8f8f8;
    padding: 4rem 2rem;
    text-align: center;
}

#contact h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

form {
    max-width: 500px;
    margin: 0 auto;
}

form label {
    display: block;
    text-align: left;
    margin: 0.5rem 0 0.2rem;
    color: #333;
    font-weight: bold;
}

form input, form textarea, form button {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

form input:focus, form textarea:focus {
    border-color: #e53b2c;
    outline: none;
}

form button {
    margin-top: 15px;
    background-color: #e53b2c; /* Papilon kırmızısı */
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}

form button:hover {
    background-color: #cc2f24;
}

/* Privacy Policy Styling */
.privacy-policy {
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 0.9rem;
    color: #333;
}

.privacy-policy input[type="checkbox"] {
    margin-top: 15px;
    margin-right: 5px;
    width: auto; /* Checkbox'ın tam genişliğinde görünmesini sağlar */
    transform: scale(1.6); 

}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    #home, #features, #use-cases, #contact {
        padding: 2rem 1rem;
    }
}

/* Certificates Section */
#certificates {
    background-color: #ffffff;
    padding: 3rem;
    text-align: center;
}

#certificates h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}

.certificates-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.certificates-container img {
    height: 100px;
    width: auto;
}

/* Footer Section */
#footer {
    background-color: #000000;
    color: #f8f8f8;
    padding: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo p {
    color: #bbb;
    font-size: 0.9rem;
}

.newsletter {
    text-align: right;
}

.newsletter-input {
    display: flex;
    align-items: center;
    gap: 5px;
}

.newsletter input[type="email"] {
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    width: 180px;
}

.newsletter button {
    background-color: #e53b2c; /* Papilon kırmızısı */
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.newsletter button:hover {
    background-color: #cc2f24;
}

.newsletter p {
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .newsletter-input {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter input[type="email"] {
        width: 100%;
        max-width: 300px;
        margin-bottom: 0.5rem;
    }
}

/* Supported Systems Section */
#supported-systems {
    background-color: #ffffff;
    padding: 7rem 7rem;
    text-align: center;
}

.systems-container {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.supported-os, .available-apis {
    width: 45%;
    text-align: left;
}

.supported-os h2, .available-apis h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.supported-os ul, .available-apis ul {
    list-style: none;
    padding: 0;
}

.supported-os li, .available-apis li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #555;
    margin: 0.5rem 0;
}

.supported-os li img, .available-apis li img {
    width: 24px;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #supported-systems {
        padding: 2rem 1rem; /* Padding'i azaltarak mobilde daha geniş görünüm sağlama */
    }

    .supported-os, .available-apis {
        width: 100%; /* Mobilde tam genişlikte görünmesi için */
        text-align: center;
    }
}

