/* Genel Stil */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header ve Navigasyon */
header {
    background-color: #000; /* Header arka planını siyah yaptık */
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

header .logo img {
    height: 50px; /* Logonun yüksekliğini ayarladık */
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-menu li {
    margin: 0 10px;
}

.nav-menu li a {
    color: white; /* Menü linklerini beyaz yaptık */
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hamburger Menü */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobil Uyum (768px ve altı cihazlar için) */
@media (max-width: 768px) {
    .container {
        flex-wrap: wrap;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #000; /* Mobil menü arka planı siyah */
        width: 100%;
        text-align: center;
        padding: 0;
        z-index: 999;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
    }
}

/* Hero Bölümü */
#hero {
    position: relative;
    height: 500px; 
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Videonun tam ekranı kaplamasını sağlar */
    z-index: -1; /* Video arka planda kalır */
}

.hero-content {
    position: relative;
    z-index: 1; /* İçerik videonun üzerinde olacak şekilde */
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 5px;
    display: inline-block;
    color: #fff; /* Yazı rengini beyaz yap */
}

.hero-button {
    background-color: #ff0000; /* Düğme kırmızı yapıldı */
    color: white;
    padding: 15px 30px; 
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 25px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-button:hover {
    background-color: #e60000;
    transform: scale(1.1);
}

/* Hizmetler Bölümü */
#hizmetler {
    padding: 50px 0;
    background-color: #ffffff;
    text-align: center;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.service-card img {
    max-width: 100%;
    border-radius: 5px;
}

/* Hakkımızda Bölümü */
#hakkimizda {
    padding: 50px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* İletişim ve Harita */
#iletisim {
    padding: 50px 0;
    background-color: #ffffff;
    text-align: center;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.whatsapp-button, .call-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.whatsapp-button {
    background-color: #25D366;
}

.whatsapp-button:hover {
    background-color: #1EBE56;
}

.call-button {
    background-color: #007bff;
}

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

/* Geri Sayım Sayacı */
#countdown {
    background-color: #000;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    margin: 20px 0;
}

/* Footer */
footer {
    background-color: #000; /* Footer arka planını siyah yaptık */
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Scroll Davranışını Yumuşatmak İçin */
html {
    scroll-behavior: smooth;
}
/* WhatsApp Butonu */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    padding: 10px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
/* Kullanıcı Yorumları Bölümü */
.testimonial-section {
    padding: 50px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
/* SSS Bölümü */
#sss {
    padding: 50px 0;
    background-color: #000; /* Arka planı siyah yap */
    color: white;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #444;
    padding: 10px 0;
}

.faq-question {
    cursor: pointer;
    font-weight: bold;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #444;
}

.faq-answer {
    padding: 10px;
    background-color: #222;
    color: #ccc;
    border-radius: 5px;
    margin-top: 5px;
    display: none; /* Varsayılan olarak gizli */
}


/* Ana Sayfa Blog Kartları Tasarımı */
.blog-section {
    padding: 50px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.blog-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-card {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card img {
    max-width: 100%;
    border-radius: 5px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.read-more:hover {
    background-color: #0056b3;
}

/* Blog İçerik Sayfaları İçin Özel Stil */
.blog-content-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.blog-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-content-section h1 {
    color: #333;
    margin-bottom: 20px;
}

.blog-image {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

.blog-content p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #666;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .blog-container {
        padding: 15px;
    }

    .blog-content-section h1 {
        font-size: 1.5rem;
    }

    .blog-content p {
        font-size: 1rem;
    }

    .blog-cards {
        flex-direction: column;
        align-items: center;
    }

    .blog-card {
        width: 90%;
    }
}


/* Animasyonlar */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

section {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 0.5s;
}
