/* Dark theme overrides */
body {
    background-color: #0f1117;
    color: #e0e0e0;
}


.list-group-item {
    background-color: #1a1e2b;
    color: #e0e0e0;
    border-color: #2d3349;
}

.list-group-item:hover {
    background-color: #2d3349 !important;
}

.card {
    background-color: #1a1e2b;
    border-color: #2d3349;
}

.modal-content {
    background-color: #1a1e2b;
    border-color: #2d3349;
}

.form-control, .form-select {
    background-color: #0f1117;
    color: #e0e0e0;
    border-color: #2d3349;
}

.form-control:focus, .form-select:focus {
    background-color: #1a1e2b;
    color: #e0e0e0;
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.btn-close-white {
    filter: invert(1);
}

.text-warning {
    color: #ffc107 !important;
}

.border-secondary {
    border-color: #2d3349 !important;
}
/* Hero section height adjustment */
.hero-section {
    min-height: 80vh;
}

/* Card image consistency */
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Statistics numbers */
.display-1 {
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

/* Buttons */
/* .btn-warning {
    background-color: #e0a800;
    border-color: #ffc107;
    color: black;
    transition: all 0.3s;
} */


/* Modal improvements */
.modal-content {
    border: 1px solid #ffc107;
}


/* Category cards with hover effects */
.category-card {
    background: rgba(26, 30, 43, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}
.category-card:hover {
    transform: translateY(-10px);
    border-color: #ffc107;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

/* Telegram floating button */
.telegram-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0088cc;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s;
}
.telegram-float:hover {
    background: #0077b5;
    transform: scale(1.1);
    color: white;
}

/* Modal styles */
.donation-method-tabs .nav-link {
    color: #ffc107;
    background: transparent;
    border: 1px solid #ffc107;
    margin: 0 5px;
}
.donation-method-tabs .nav-link.active {
    background: #ffc107;
    color: #000;
}



/* Glassmorphism base */
.glass {
    background: rgba(26, 30, 43, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Blog cards */
.blog-card {
    background: rgba(26, 30, 43, 0.7);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
    overflow: hidden;
}
.blog-card:hover {
    transform: translateY(-10px);
    border-color: #ffc107;
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
}
.blog-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card:hover img {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 193, 7, 0.2);
}
.footer a {
    color: #ffc107;
    text-decoration: none;
    transition: opacity 0.2s;
}
.footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Header */
.navbar {
    background: rgba(26, 30, 43, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}
.navbar .nav-link {
    color: #e0e0e0 !important;
    margin: 0 10px;
    transition: color 0.2s;
}
.navbar .nav-link:hover {
    color: #ffc107 !important;
}
.btn-donate-nav {
    background: #ffc107;
    color: #0f1117 !important;
    font-weight: bold;
    border-radius: 30px;
    padding: 8px 20px !important;
}
.btn-donate-nav:hover {
    background: black;
}
