:root {
    --custom-primary: #0b6627;
    --custom-primary-dark: #0b6627;
    --custom-secondary: #e6be0e;
    --custom-accent: #06b6d4;
    --custom-success: #10b981;
    --custom-warning: #f59e0b;
    --custom-danger: #ef4444;
    --custom-dark: #504F4E;
    --custom-light: #f8fafc;
    --custom-gradient: linear-gradient(135deg, #f2b80a, #d3a20f);
    --custom-card-bg: #e0e0e0;
}

/* Override Bootstrap colors */
.bg-primary {
    background-color: var(--custom-primary) !important;
}

.bg-menu {
    background-color: var(--custom-secondary) !important;
}

.btn-primary {
    background: var(--custom-primary);
    border-color: var(--custom-primary);
}

.btn-primary:hover {
    background-color: var(--custom-primary-dark);
    border-color: var(--custom-primary-dark);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.btn-secondary {
    background-color: var(--custom-secondary);
    border-color: var(--custom-secondary);
}

.btn-info {
    background-color: var(--custom-accent);
    border-color: var(--custom-accent);
}

.navbar-brand {
    background: var(--custom-primary);
    color: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.card {
    border: none;
    background-color: var(--custom-card-bg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.hero-section {
    background: var(--custom-primary);
    min-height: 30vh;
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--custom-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--custom-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.switch-lg .form-check-input {
    width: 3rem;
    height: 1.5rem;
}

.switch-lg .form-check-input:checked {
    background-size: 1.5rem 1.5rem;
}

.display-1 {
    font-weight: bold;
    font-size: 8rem;
}

.display-2 {
    font-size: 5rem;
}

.display-3 {
    font-size: 3vw;
}

/* Hide on phone/mobile screens */
@media (max-width: 825px) {
    .hide-on-phone {
        display: none !important;
    }

    .icon-only {
        font-size: 0;
    }

    .icon-only img {
        font-size: 1rem;
    }
}

/* Hide text in nav links, keep images only */