/* Voucher.co.za Brand Colors */
:root {
    /* Primary Brand Colors */
    --brand-primary: #1976D2;        /* Primary Blue */
    --brand-secondary: #42A5F5;      /* Light Blue */
    --brand-accent: #2196F3;         /* Accent Blue */

    /* Gradient Combinations */
    --gradient-primary: linear-gradient(135deg, #42A5F5 0%, #1976D2 100%);
    --gradient-secondary: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    --gradient-accent: linear-gradient(135deg, #42A5F5 0%, #2196F3 100%);

    /* Neutral Colors */
    --color-text-primary: #333333;
    --color-text-secondary: #666666;
    --color-text-muted: #999999;
    --color-border: #e0e0e0;
    --color-border-light: #f0f0f0;
    --color-background: #FAFAFA;
    --color-white: #ffffff;

    /* Status Colors */
    --color-success: #4caf50;
    --color-warning: #ff9800;
    --color-error: #d32f2f;
    --color-info: #2196f3;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(25, 118, 210, 0.1);
    --shadow-md: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(25, 118, 210, 0.15);
    --shadow-button: 0 4px 12px rgba(25, 118, 210, 0.3);
}

/* Brand Buttons */
.btn-brand-primary {
    padding: 12px 30px;
    border: none;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-brand-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
    color: var(--color-white);
    text-decoration: none;
}

.btn-brand-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-brand-secondary {
    padding: 12px 30px;
    border: 2px solid var(--brand-secondary);
    background: var(--color-white);
    color: var(--brand-secondary);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-brand-secondary:hover {
    background: var(--brand-secondary);
    color: var(--color-white);
    text-decoration: none;
}

.btn-brand-outline {
    padding: 12px 30px;
    border: 2px solid var(--brand-primary);
    background: transparent;
    color: var(--brand-primary);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-brand-outline:hover {
    background: var(--brand-primary);
    color: var(--color-white);
}

/* Brand Cards */
.brand-card {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 30px;
    transition: all 0.3s;
}

.brand-card:hover {
    box-shadow: var(--shadow-lg);
}

.brand-card-header {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 20px;
    border-radius: 8px 8px 0 0;
    margin: -30px -30px 30px -30px;
}

/* Brand Tabs */
.brand-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--color-border);
}

.brand-tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    color: var(--color-text-secondary);
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.brand-tab.active {
    color: var(--brand-secondary);
    border-bottom-color: var(--brand-secondary);
}

.brand-tab:hover {
    color: var(--brand-secondary);
    text-decoration: none;
}

/* Brand Forms */
.brand-form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.brand-form-control:focus {
    border-color: var(--brand-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(92, 104, 226, 0.1);
}

/* Brand Links */
.brand-link {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.brand-link:hover {
    color: var(--brand-accent);
    text-decoration: underline;
}

/* Brand Badge */
.brand-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    background: var(--gradient-primary);
    color: var(--color-white);
}

/* Brand Alert */
.brand-alert-success {
    background: #e8f5e9;
    border: 1px solid var(--color-success);
    color: #2e7d32;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.brand-alert-error {
    background: #ffebee;
    border: 1px solid var(--color-error);
    color: var(--color-error);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.brand-alert-error ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.brand-alert-warning {
    background: #fff3e0;
    border: 1px solid var(--color-warning);
    color: #e65100;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Brand Container */
.brand-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

/* Brand Section Headers */
.brand-section-header {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-section-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

/* Brand Logo Header */
.brand-logo-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.brand-logo-header img {
    max-width: 200px;
    height: auto;
}

/* Navigation Brand Override */
.navbar-dark {
    background: linear-gradient(90deg, #2c3e50 0%, #34495e 100%) !important;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    vertical-align: middle;
    filter: brightness(1.1);
}
