/* Genel HTML ve Body Ayarları */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: Arial, sans-serif;
    color: var(--primary-color);
    background-image: url('/imgs/background.png'); /* Arka plan PNG */
    background-size: cover; /* Dinamik olarak tüm siteyi kapla */
    background-position: center; /* Ortalanmış arka plan */
    background-repeat: no-repeat; /* Görsel tekrarını engelle */
    background-attachment: fixed; /* Görsel sabit kalsın */
    margin-bottom: 60px;
}

/* Başlıklar */
h1, h2, h4 {
    font-family: 'Georgia', serif;
    font-weight: bold;
    color: var(--primary-color);
}

/* Jumbotron */
.jumbotron-background {
    background-image: url('/imgs/image2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    width: 100%;
    padding: 0;
    margin: 20px 0;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .jumbotron-background {
        height: auto;
        padding: 20px;
        background-size: contain;
    }
}

/* Hizmet Kartları */
.service-card {
    background-color: var(--card-bg-color);
    color: var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    position: relative;
    overflow: hidden;
    margin: 10px 0;
    padding: 20px;
    border-radius: 10px;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        background-color: #f9f9f9;
    }

    .service-card .card-body i {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: #258cfb;
        transition: transform 0.3s ease-in-out;
    }

    .service-card:hover .card-body i {
        transform: scale(1.2);
        color: #1a6ab3;
    }

    .service-card h4 {
        font-size: 1.2rem;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 1rem;
        line-height: 1.5;
        margin: 0;
    }

@media (max-width: 768px) {
    #services .row {
        justify-content: center;
    }
}

/* Genel Buton Stilleri */
.btn-primary, .btn-outline-primary {
    background-color: #ffffff;
    color: #000000;
    border-color: #dddddd;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .btn-primary:hover, .btn-outline-primary:hover {
        background-color: #f0f0f0;
        color: #000000;
        border-color: #cccccc;
    }

/* Navbar */
.navbar {
    background-color: var(--card-bg-color);
    padding: 10px 15px;
}

    .navbar .nav-link {
        font-size: 1rem;
        color: var(--primary-color);
    }

        .navbar .nav-link:hover {
            color: #ffffff;
        }

/* WhatsApp İletişim Balonu */
.whatsapp-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25D366, #1ebc58);
    color: white;
    border-radius: 50%;
    padding: 20px;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 9999;
}

    .whatsapp-bubble:hover {
        background: linear-gradient(135deg, #1ebc58, #25D366);
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

@media (max-width: 768px) {
    .whatsapp-bubble {
        bottom: 30px;
        right: 15px;
        padding: 15px;
        font-size: 24px;
    }
}

/* Footer */
.footer {
    font-size: 0.85rem;
    background-color: #f8f9fa;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    color: #6c757d;
}

    .footer p {
        margin: 0;
        line-height: 1.5;
    }

/* Genel Responsive Ayarlar */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.95rem;
    }
}

/* Kart Hover Efekti */
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
