/* ========================================
   CUSTOM THEME COLORS (From config.inc)
   Config dizisinden aktarılan tüm renk tanımlamaları
   ======================================== */

/*:root {
    !* Ana Renk (Navbar, Butonlar, Başlıklar) *!
    --primary-color: #00a75d;
    --color-primary: #00a75d;
    --color-primary-rgb: 0, 167, 93;

    !* Koyu Versiyon (Hover Efektleri, Vurgular) *!
    --primary-dark: #152b47;
    --color-primary-dark: #152b47;
    --color-primary-dark-rgb: 21, 43, 71;

    !* Açık Versiyon (Hafif Arka Planlar, Overlay) *!
    --primary-light: #2d5a8f;
    --color-primary-light: #2d5a8f;
    --color-primary-light-rgb: 45, 90, 143;

    !* İkincil Renk *!
    --secondary-color: #4a90e2;
    --color-secondary: #4a90e2;
    --color-secondary-rgb: 74, 144, 226;

    !* Vurgu Rengi *!
    --accent-color: #f39c12;
    --color-accent: #f39c12;
    --color-accent-rgb: 243, 156, 18;

    !* Başarı Mesajları *!
    --success-color: #27ae60;
    --color-success: #27ae60;
    --color-success-rgb: 39, 174, 96;

    !* Hata/Uyarı *!
    --danger-color: #e74c3c;
    --color-danger: #e74c3c;
    --color-danger-rgb: 231, 76, 60;

    !* Koyu Arka Plan *!
    --color-dark: #ffffff;
    --color-dark-rgb: 255, 255, 255;

    !* Açık Arka Plan *!
    --color-light: #ecf0f1;
    --color-light-rgb: 236, 240, 241;

    !* Koyu Yazı *!
    --color-text-dark: #333333;
    --text-dark: #333333;
    --color-text-dark-rgb: 51, 51, 51;

    !* Açık Yazı *!
    --color-text-light: #ffffff;
    --color-text-light-rgb: 255, 255, 255;

    !* Ek Renkler *!
    --color-gray-light: #f5f5f5;
    --color-gray-medium: #999999;
    --color-gray-dark: #666666;
    --color-warning: #ff9800;
    --color-info: #2196f3;
}*/

/* ========================================
   GLOBAL TEMA RENK UYGULAMALARI
   ======================================== */

/* Tüm Sayfa Arka Planı */
html, body {
    background-color: var(--color-dark);
    color: var(--color-text-dark);
}

/* Tüm Linkler */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Paragraflar */
p {
    color: var(--color-text-dark);
}

/* ========================================
   MODERN DESIGN OVERRIDE STYLES
   ======================================== */

/* Feature Card Modern */
.feature-card-modern {
    background: white;
    border-radius: 24px;
    padding: 0;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.feature-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--primary-color) 0%,
        var(--primary-light) 50%,
        var(--primary-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.feature-card-modern:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: white;
    border-color: var(--primary-color);
}

.card-inner {
    padding: 50px 35px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.icon-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(30, 58, 95, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.2);
}

.icon-circle::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.feature-card-modern:hover .icon-circle::before {
    transform: rotate(225deg);
}

.icon-circle i {
    font-size: 48px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    color: white !important;
}

.feature-card-modern:hover .icon-circle {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    border-color: var(--primary-light);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.3);
}

.feature-card-modern:hover .icon-circle i {
    transform: scale(1.1);
}

.card-title {
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    color: var(--primary-color) !important;
}

.feature-card-modern:hover .card-title {
    transform: translateY(-3px);
    color: var(--primary-dark) !important;
}

.card-description {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.85;
    margin: 0;
    font-weight: 400;
    transition: all 0.3s ease;
    color: var(--text-dark) !important;
}

.feature-card-modern:hover .card-description {
    opacity: 1;
}

/* ================================================
   MINIMAL HEADER/NAVIGATION
   ================================================ */

.topbar-minimal {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(var(--primary-dark-rgb), 0.2);
}

.topbar-minimal.scrolled {
    box-shadow: 0 4px 12px rgba(var(--primary-dark-rgb), 0.3);
}

.header-minimal-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-minimal a {
    display: flex;
    align-items: center;
}

.site-logo-minimal {
    max-height: 50px;
    filter: brightness(1.1);
}

.site-logo-minimal:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

/* Navigation Buttons Minimal */
.nav-buttons-minimal {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-minimal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-minimal i {
    font-size: 18px;
}

.btn-minimal:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Primary Minimal Button */
.btn-minimal-primary {
    color: white;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-minimal-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 43, 71, 0.3);
}

/* Secondary Minimal Button */
.btn-minimal-secondary {
    color: white;
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-minimal-secondary:hover {
    background: #3a7bc8;
    border-color: #3a7bc8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* Danger Minimal Button */
.btn-minimal-danger {
    color: white;
    background: var(--danger-color);
    border-color: var(--danger-color);
}

.btn-minimal-danger:hover {
    background: #c0392b;
    border-color: #c0392b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* ================================================
   BUTON UYGULAMALARI
   ================================================ */

.btn,
.btn-primary,
button[type="submit"],
input[type="submit"] {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
    font-weight: 600;
    border-radius: 8px;
}

.btn:hover,
.btn-primary:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-dark-rgb), 0.3);
}

.btn:active,
.btn-primary:active {
    background-color: var(--primary-dark);
    transform: translateY(0);
}

/* Secondary Buttons */
.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #3a7bc8;
    border-color: #3a7bc8;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Success Buttons */
.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.btn-success:hover {
    background-color: #229954;
    border-color: #229954;
}

/* Danger Buttons */
.btn-danger {
    background-color: var(--danger-color);
    border-color: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

/* ================================================
   LOGIN MODAL - BASIC & ELEGANT
   ================================================ */

.modal-clean {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-clean-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 30px;
    text-align: center;
}

.modal-clean-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.modal-clean-body {
    padding: 30px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 12px;
    color: var(--primary-color);
    pointer-events: none;
    font-size: 16px;
}

.input-wrapper input {
    padding-left: 35px;
    width: 100%;
    padding: 12px 12px 12px 35px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
    outline: none;
}

.forgot-link {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 15px;
}

.forgot-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.recaptcha-disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    text-align: center;
}

.recaptcha-disclaimer a {
    color: var(--primary-color);
}

body.hide-recaptcha-badge .grecaptcha-badge {
    display: none !important;
}

/* ================================================
   BANNER & SLIDER
   ================================================ */



.slider-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    text-align: center;
}

.bg-image-holder {
    background-size: cover;
    background-position: center;
    position: relative;
}

.bg-image-holder::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.slider-caption .caption-content {
    position: relative;
    z-index: 3;
}

.slider-rounded {
    border-radius: 12px;
    overflow: hidden;
}






/* Social Icons */
.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

.btn-social:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(var(--primary-dark-rgb), 0.3);
}

.btn-social.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-social.facebook:hover {
    background-color: #3b5998;
}

.btn-social.linkedin:hover {
    background-color: #0077b5;
}

.btn-social.youtube:hover {
    background-color: #ff0000;
}

.copyright {
    border-top: 1px solid rgba(var(--primary-color-rgb), 0.2);
    margin-top: 30px;
    padding-top: 30px;
    color: var(--color-text-dark);
}

.copyright p {
    margin: 0;
    opacity: 0.8;
}

/* ================================================
   UTILITY CLASSES
   ================================================ */

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-primary-dark {
    color: var(--primary-dark) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

.text-white {
    color: white !important;
}

/* Background Colors */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-white {
    background-color: white !important;
}



/* Animations */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .card-inner {
        padding: 40px 30px;
    }

    .icon-circle {
        width: 90px;
        height: 90px;
    }

    .icon-circle i {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .nav-buttons-minimal {
        flex-wrap: wrap;
        gap: 8px;
    }

    .btn-minimal {
        font-size: 0.85rem;
        padding: 8px 12px;
        flex: 0 1 calc(50% - 4px);
    }

    .btn-minimal span {
        display: none;
    }

    .slider-title {
        font-size: 1.5rem;
    }

    .card-inner {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .topbar-minimal {
        padding: 10px 0;
    }

    .header-minimal-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .btn-minimal {
        flex: 1;
        justify-content: center;
    }

    .slider-title {
        font-size: 1.2rem;
    }
}

/* ================================================
   MODAL BAŞLIK RENK DÜZELTMELERİ
   ================================================ */

/* Bootstrap Modal Başlık - Beyaz Metin */
.modal-header {
    color: white !important;
}

.modal-header .modal-title {
    color: white !important;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.3px;
}

.modal-header .close {
    color: white !important;
    opacity: 0.8;
}

.modal-header .close:hover {
    color: white !important;
    opacity: 1;
}

/* Modal Başlığında H5 Başlıkları */
.modal-header h5 {
    color: white !important;
    font-weight: 700 !important;
}

/* ================================================
   KİTAP SETİ MODAL RENK UYGULAMALARI
   ================================================ */

/* Modal Başlığı Arka Planı - Gradient */
#setModal_* .modal-header,
.modal-header[style*="background"] {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: white !important;
}

/* Modal İçinde Buton Stilleri */
.modal-body .btn-primary {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.modal-body .btn-primary:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.modal-body .btn-success {
    background: var(--success-color) !important;
    border-color: var(--success-color) !important;
}

.modal-body .btn-success:hover {
    background: #229954 !important;
    border-color: #229954 !important;
}


