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

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFCC00;
    padding: 10px 20px;
}
.logo strong {
    font-size: 24px;
    font-weight: 800;
    color:black;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(215, 60, 8, 0.3); /* Hafif bir gölge */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}
.logo strong {
    font-size: 24px;
    font-weight: 800;
    color: black;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Hafif bir gölge */
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
/* Navbar Link Temel Stili */
nav ul li a {
    color: #ffffff; /* Varsayılan renk (beyaz) */
    text-decoration: none; /* Alt çizgiyi kaldırır */
    font-weight: bold; /* Linkleri vurgulu yapar */
    padding: 10px 15px; /* Tıklanabilir alanı genişletir */
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

/* Navbar Link Hover Efekti */
nav ul li a:hover {
    color: #FF6600; /* Hover'da turuncu renk */
    border-bottom: 2px solid #FF6600; /* Alt çizgi efekti */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Hafif gölge efekti */
}

.contact-info {
    font-weight: bold;
    color: #fff;
    background-color: #FF6600;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Ana İçerik */
.content {
    display: flex;
    padding: 20px;
}

.left-content {
    flex: 1;
    padding: 20px;
}

.left-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.left-content p {
    font-size: 16px;
    margin-bottom: 20px;
}
/* "Hemen Ara" butonu ve WhatsApp ikonunu aynı satırda hizalamak için */
.call-container {
    display: flex;
    align-items: center; /* Dikeyde ortala */
    justify-content: flex-start; /* Soldan hizala */
    gap: 10px; /* Buton ile ikon arasında boşluk */
}

.call-button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.call-button:hover {
    background-color: #218838;
}

.call-container img {
    width: 30px; /* İkon boyutu */
    height: 30px;
    margin-left: 10px; /* İkonu butondan sağa kaydır */
}

/* Arka planın doğru şekilde kaplaması için */
.left-content {
    background-color: black;
    color: white;
    height: 100vh;
    width: 50%; /* Yalnızca solda yer kaplayacak */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-content {
    background-image: url('background_3.jpg');
    background-size: cover; /* Arka planın tamamen kaplanması için */
    background-position: center;
    height: 100vh; /* Yükseklik, tam ekran olacak şekilde */
    width: 50%; /* Yalnızca sağda yer kaplayacak */
}

.call-button {
    display: inline-block;
    background-color: #FFCC00;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px; /* Boyutunu büyüttük */
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px; /* Yazı boyutunu artırdık */
    position: relative; /* Konumlandırmayı etkinleştirdik */
    left: 20px; /* Biraz sağa kaydırdık */
    top: 20px; /* Biraz aşağı kaydırdık */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge eklendi */
    transition: all 0.3s ease; /* Hover için yumuşak geçiş */
}

.call-button:hover {
    background-color: #FF4500; /* Hover durumunda renk değişimi */
    transform: scale(1.05); /* Hover durumunda hafif büyüme */
}



.right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-content img {
    max-width: 100%;
    height: auto;
}
.about-section {
    background-color: #F9F9F9;
    padding: 40px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #FF6600;
}

.about-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
.about-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Resimler arasındaki boşluk */
    margin-top: 20px;
}

.about-images img {
    min-width: 200px;
    width: 200px; /* Resimler ekran genişliğinin %30'u kadar olacak */
    border-radius: 10px; /* Köşeleri yuvarlatma */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Hafif gölge efekti */
    transition: transform 0.3s ease; /* Hover animasyonu */
}

.about-images img:hover {
    transform: scale(1.05); /* Hover durumunda büyüme */
}
.neden-biz .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #FF6600; /* Turuncu başlık rengi */
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center; /* Başlığı ortalar */
}

/* Kartların Hover Efekti */
.neden-biz .card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.neden-biz .card:hover {
    transform: translateY(-10px); /* Hover'da yukarı kalkar */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Daha belirgin gölge */
    background-color: #FFFAF0; /* Hafif turuncu bir arka plan efekti */
}

/* Kart Başlıklarına Hover Renk Efekti */
.neden-biz .card h3:hover {
    color: #FF6600; /* Başlık hover'da turuncu olur */
}
.neden-biz-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Küçük ekranlarda kartların alta geçmesini sağlar */
}

.neden-biz .card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 280px; /* Daha kompakt görünüm */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-section {
    background-color: #F9F9F9;
    padding: 40px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #FF6600;
}

.contact-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
}

.contact-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: center;
}

.contact-section li {
    font-size: 16px;
    margin: 10px 0;
    color: #333;
}

.contact-section a {
    color: #FF6600;
    text-decoration: none;
    font-weight: bold;
}

.contact-section a:hover {
    text-decoration: underline;
}

.social-media a {
    margin: 0 10px;
    display: inline-block;
    color: #fff;
    background-color: #FF6600;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.social-media a:hover {
    background-color: #FFCC00;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #222;
    color: #fff;
    font-size: 14px;
}