/* vCard Oluşturucu Ana CSS Dosyası */

/* Genel stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Kartvizit kartları için stil */
.card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 1.5rem;
}

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

.card-header {
    padding: 1rem;
    font-weight: 500;
}

/* Form stilleri */
.form-control:focus, .form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-label {
    font-weight: 500;
}

/* QR kod görüntüleme bölgesi */
#temp-qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

#temp-qr-code img {
    max-width: 100%;
}

/* Buton stilleri */
.btn {
    border-radius: 5px;
    font-weight: 500;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
}

/* Sosyal medya butonları */
.btn-outline-primary, .btn-outline-info, .btn-outline-danger, .btn-outline-success {
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    transform: scale(1.05);
}

.btn-outline-info:hover {
    transform: scale(1.05);
}

.btn-outline-danger:hover {
    transform: scale(1.05);
}

.btn-outline-success:hover {
    transform: scale(1.05);
}

/* Footer stili */
footer {
    border-top: 1px solid #e9ecef;
    margin-top: 3rem;
}

/* İstatistik kartları */
.card.bg-primary, .card.bg-success, .card.bg-info, .card.bg-warning {
    transition: transform 0.3s ease;
}

.card.bg-primary:hover, .card.bg-success:hover, .card.bg-info:hover, .card.bg-warning:hover {
    transform: translateY(-10px);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.3rem;
    }
    
    h5 {
        font-size: 1.1rem;
    }
}

/* Tema stilleri */
/* Default tema */
.theme-default {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --accent-color: #0dcaf0;
    --text-color: #212529;
    --bg-color: #ffffff;
}

/* Dark tema */
.theme-dark {
    --primary-color: #212529;
    --secondary-color: #343a40;
    --accent-color: #495057;
    --text-color: #f8f9fa;
    --bg-color: #212529;
}

/* Blue tema */
.theme-blue {
    --primary-color: #0d6efd;
    --secondary-color: #0dcaf0;
    --accent-color: #6610f2;
    --text-color: #212529;
    --bg-color: #e6f2ff;
}

/* Green tema */
.theme-green {
    --primary-color: #198754;
    --secondary-color: #20c997;
    --accent-color: #75b798;
    --text-color: #212529;
    --bg-color: #e6f7ef;
}

/* Red tema */
.theme-red {
    --primary-color: #dc3545;
    --secondary-color: #e35d6a;
    --accent-color: #ea868f;
    --text-color: #212529;
    --bg-color: #f8e7e9;
}

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

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* QR Kod merkez logosu için stiller */
.qr-logo-text {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    background-color: white;
    color: #333;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1200px) {
    .h1, h1 {
        font-size: 1.3rem!important;
    }}
.h1, h1 {
    font-size: calc(1.0rem + 1vw)!important;
}    