/* Zenobet Partners - Main Stylesheet */

/* Base Styles */
body {
    background: #000000;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Hero Section */
.hero-section {
    background: #000000;
    color: white;
    padding: 100px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Navbar fixes */
    .navbar-brand {
        font-size: 1rem !important;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .navbar-brand img {
        height: 35px !important;
        width: auto !important;
        max-width: 150px !important;
        object-fit: contain;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
    }
    
    /* Hero section */
    .hero-section {
        padding: 30px 0;
    }
    
    .hero-section h1 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-section .lead {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-section img {
        max-height: 150px !important;
        margin-top: 20px;
        width: 100%;
        object-fit: contain;
    }
    
    .hero-section .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Typography */
    .display-4 {
        font-size: 1.8rem !important;
    }
    
    .display-5 {
        font-size: 1.3rem !important;
    }
    
    /* Cards */
    .feature-card {
        margin-bottom: 1rem;
    }
    
    /* Sections padding */
    section {
        padding: 2rem 0 !important;
    }
}

/* Features Section */
#features {
    background: #000000;
    color: #e0e0e0;
}

#features h2, #features .lead {
    color: #e0e0e0;
}

.feature-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #39B54A;
    box-shadow: 0 8px 12px rgba(57, 181, 74, 0.3);
}

.feature-card .card-body {
    background: #1a1a1a;
}

.feature-card .card-title {
    color: #39B54A;
}

.feature-card .card-text {
    color: #b0b0b0;
}

/* Navigation */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Buttons */
.btn-primary {
    background: #39B54A;
    border: none;
}

.btn-primary:hover {
    background: #32A042;
}

.btn-outline-light {
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background-color: rgba(57, 181, 74, 0.2);
    border-color: #39B54A;
    color: #39B54A;
}

/* Text Colors */
.text-primary {
    color: #39B54A !important;
}

/* About Section */
#about {
    background: #000000;
    color: #e0e0e0;
}

#about h2, #about .lead {
    color: #e0e0e0;
}

#about .bg-white {
    background: #1a1a1a !important;
    border: 1px solid #2a2a2a;
    color: #e0e0e0;
}

#about .bg-white h4 {
    color: #39B54A;
}

#about .bg-white ol li {
    color: #b0b0b0;
}

/* Background Utilities */
.bg-light {
    background: #000000 !important;
}

.bg-dark {
    background: #0a0a0a !important;
}

/* Cards */
.card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #e0e0e0;
}

.card-header {
    background: #0a0a0a;
    border-bottom: 1px solid #2a2a2a;
    color: #39B54A;
}

/* Forms */
.form-control {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #e0e0e0;
}

.form-control:focus {
    background: #1a1a1a;
    border-color: #39B54A;
    color: #e0e0e0;
    box-shadow: 0 0 0 0.2rem rgba(57, 181, 74, 0.25);
}

.form-label {
    color: #e0e0e0;
}

/* Tables */
.table {
    color: #e0e0e0;
}

.table-dark {
    background: #1a1a1a;
}

.table-dark th {
    background: #0a0a0a;
    border-color: #2a2a2a;
}

.table-dark td {
    border-color: #2a2a2a;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: #e0e0e0;
    border-top: 1px solid #2a2a2a;
}

footer a {
    color: #39B54A;
    text-decoration: none;
}

footer a:hover {
    color: #32A042;
}

/* Alerts */
.alert-success {
    background: #1a3a1a;
    border-color: #39B54A;
    color: #39B54A;
}

.alert-danger {
    background: #3a1a1a;
    border-color: #dc3545;
    color: #ff6b6b;
}

.alert-info {
    background: #1a1a3a;
    border-color: #17a2b8;
    color: #5bc0de;
}

/* Badges */
.badge {
    font-weight: 600;
}

.badge-success {
    background: #39B54A;
}

.badge-warning {
    background: #ffc107;
    color: #000;
}

.badge-danger {
    background: #dc3545;
}

/* Links */
a {
    color: #39B54A;
    text-decoration: none;
}

a:hover {
    color: #32A042;
}

/* Navbar Dark Theme */
.navbar-dark {
    background: #0a0a0a !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: #e0e0e0;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #39B54A;
}

