/* Lebanese Wushu Kung Fu Main Styles */
body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
	display: flex;
    flex-direction: column;
}
.shadowbach{text-shadow: 2px 2px 4px rgb(21 21 21 / 75%);}
.container {
    flex: 1;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(16, 33, 62, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: #fff;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-section h5 {
    color: #439fdf;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00ff42;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: #00ff42;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    margin: 2rem 0 1.5rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-developer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-developer a {
    color: #00ff42;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-developer a:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1rem 0;
        margin-top: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
.text-green{color: #00ff42 ;}
.text-gray{color: #a8a4a4;}
.text-time{color: #7c8688;}
/* Navigation Styles */
.navbar {
    background: rgb(21 21 21 / 65%) !important;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1050;
	position: fixed;
    width: 100%;
}
.navbar-brand {
    font-family: 'Orbitron', monospace !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.3rem !important;
        letter-spacing: 0.5px !important;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem !important;
        letter-spacing: 0.2px !important;
    }
}

.navbar-nav .nav-link {
    color: #fff !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #439fdf !important;
}

/* Fix dropdown z-index issues */
.dropdown-menu {
    background: rgba(26, 26, 46, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    z-index: 1060 !important;
    position: absolute !important;
}

.dropdown-item {
    color: #fff !important;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(255, 215, 0, 0.2) !important;
    color: #439fdf !important;
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Main Containers */
.login-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    margin-top: 5rem;
}

.main-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    margin-top: 67px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Typography */
.login-title, .page-title {
    color: #439fdf;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-title {
    font-size: 2rem;
}

.label {
    color: #439fdf;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Form Elements */
.form-control, .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 10px;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #439fdf;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-select option {
    background: #1a1a2e;
    color: #fff;
}

.input-group-text {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #439fdf;
}

/* Buttons */
.btn-login {
    background: linear-gradient(45deg, #439fdf, #28df66);
    border: none;
    color: #000;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-login:hover {
    background: linear-gradient(45deg, #28df66, #439fdf);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    color: #000;
}

.btn-primary {
    background: linear-gradient(45deg, #439fdf, #28df66);
    border: none;
    color: #000;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #28df66, #439fdf);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    color: #000;
}

.btn-success {
    background: linear-gradient(45deg, #28a745, #20c997);
    border: none;
    border-radius: 10px;
}

.btn-success:hover {
    background: linear-gradient(45deg, #20c997, #28a745);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(45deg, #dc3545, #c82333);
    border: none;
    border-radius: 10px;
}

.btn-warning {
    background: linear-gradient(45deg, #ffc107, #e0a800);
    border: none;
    color: #000;
    border-radius: 10px;
}

/* Icons and Symbols */
.wushu-symbol {
    text-align: center;
    font-size: 4rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.martial-arts-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: -1;
    background-size: 200px 200px;
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
}

.alert-success {
    background: rgba(40, 167, 69, 0.2);
    color: #fff;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.2);
    color: #fff;
}

.alert-info {
    background: rgba(23, 162, 184, 0.2);
    color: #fff;
}

/* Tables */
.table {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px;
    overflow: hidden;
    color: #fff !important;
}

.table th {
    background: rgba(255, 215, 0, 0.2) !important;
    border: none !important;
    color: #439fdf !important;
    font-weight: bold;
}

.table td {
    border: none !important;
    color: #fff !important;
    vertical-align: middle;
    background: transparent !important;
}

.table tbody tr {
    background: transparent !important;
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

/* Force white text in tables */
.table, .table td, .table th, .table tr {
    color: #fff !important;
}

/* Table responsive wrapper */
.table-responsive {
    background: transparent !important;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.card-header {
    background: rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #439fdf;
    font-weight: bold;
}

/* Tabs */
.nav-tabs .nav-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.nav-tabs .nav-link.active {
    background: rgba(255, 215, 0, 0.2);
    color: #439fdf;
}

/* Badges */
.badge {
    font-size: 0.8rem;
}

/* Modals */
.modal-content {
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Access Info */
.access-info {
    background: rgba(23, 162, 184, 0.1);
    border: 1px solid rgba(23, 162, 184, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

/* Content Management Styles */
.content-area {
    line-height: 1.8;
}

.content-area h3 {
    color: #439fdf !important;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.content-area ul {
    padding-left: 1.5rem;
    color: #fff;
}

.content-area li {
    margin-bottom: 0.5rem;
    color: #fff;
}

.content-area p {
    color: #fff;
    margin-bottom: 1rem;
}

/* Gallery Styles */
.gallery-admin-card {
    transition: transform 0.2s ease;
    background: rgba(255, 255, 255, 0.1) !important;
}

.gallery-admin-card:hover {
    transform: translateY(-2px);
}

.image-container {
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.image-overlay i {
    color: #439fdf;
    font-size: 2rem;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

/* File upload styling */
input[type="file"] {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
}

input[type="file"]::-webkit-file-upload-button {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: #439fdf;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
}

/* Content editing textarea */
textarea[name="about_content"] {
    font-family: 'Courier New', monospace;
    font-size: 14px;
}
/* Homepage Styles*/

/* Home Container */
.home-container {
    background: transparent;
    padding: 0;
    margin: 67px 0px 0px 0px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(16, 33, 62, 0.9) 50%, rgba(15, 52, 96, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
	margin-top:5px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.admin-edit-notice {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 215, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
}

.admin-edit-notice a {
    color: #439fdf !important;
}

/* Hero Button */
.btn-hero {
    background: linear-gradient(45deg, #439fdf, #28df66);
    border: none;
    color: #000;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    background: linear-gradient(45deg, #28df66, #439fdf);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
    color: #000;
}

.cta-section {
    margin-top: 2rem;
}

/* Statistics Section */
.stats-section {
    margin: 4rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #439fdf;
    margin: 1rem 0;
}

.stat-label {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

/* Features Section */
.features-section {
    margin: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: #439fdf;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: bold;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Gallery Showcase */
.gallery-showcase {
    margin: 4rem 0;
}

.showcase-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-image:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.showcase-image:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h6 {
    margin: 0;
    font-weight: bold;
}

/* Call to Action Footer */
.cta-footer {
    background: rgba(255, 215, 0, 0.1);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-top: 3rem;
}

.cta-footer h3 {
    color: #439fdf;
    font-weight: bold;
}

/* Responsive Design */
@media (min-width: 768px) {
	#homenav{display:none}
}
@media (max-width: 768px) {
    .hero-banner {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn-hero {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .admin-edit-notice {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
        text-align: center;
    }
}
/* Remember Me Checkbox Styling*/

.remember-me-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
}

.remember-me-container .form-check-input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 4px;
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remember-me-container .form-check-input:checked {
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.remember-me-container .form-check-input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.remember-me-container .form-check-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remember-me-container .form-check-label:hover {
    color: #ffd700;
}

.remember-me-container .form-check-label i {
    color: #ffd700;
    font-size: 0.9rem;
}

/* Custom checkbox animation */
.remember-me-container .form-check-input:checked::before {
    content: '✓';
    display: block;
    text-align: center;
    color: #000;
    font-weight: bold;
    font-size: 0.8rem;
    line-height: 1;
    margin-top: 1px;
}
.nav-item{margin-right:5px;}
/* Responsive adjustments */
@media (max-width: 768px) {
    .remember-me-container {
        font-size: 0.9rem;
    }
    
    .remember-me-container .form-check-input {
        width: 1.1em;
        height: 1.1em;
    }
}