/* BRDC Brand Standards - Master Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rowdies:wght@700&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --pink: #FF469A;
    --teal: #91D7EB;
    --yellow: #FDD835;
    --bg-dark: #1a1a2e;
    --bg-panel: #16213e;
    --bg-card: #1e2a47;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --text-muted: #666;
    --text-light: #f0f0f0;
    --text-dim: #8a8aa3;
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: #000;
    --border-color: rgba(255, 255, 255, 0.15);
    --black: #000000;
    --white: #FFFFFF;
    --glow-pink: rgba(255, 70, 154, 0.3);
    --glow-teal: rgba(145, 215, 235, 0.3);
    --success: #22c55e;
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0f0f23 100%);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 70, 154, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(145, 215, 235, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Sticky Header Bar */
.header-bar {
    background: var(--bg-panel);
    border-bottom: 3px solid var(--pink);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.header-logo {
    width: 40px;
    height: 40px;
    
}

.header-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--pink);
}

/* BRDC Typography */
.brdc-title {
    font-family: 'Bebas Neue', cursive;
    color: var(--pink);
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.8);
    letter-spacing: 4px;
}

.brdc-subtitle {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
}

/* Page Header */
.page-header {
    background: var(--pink);
    padding: 20px;
    text-align: center;
    border-bottom: 4px solid var(--black);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.5);
}

.page-header h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: white;
    letter-spacing: 3px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
}

/* Section Cards */
.section {
    background: var(--bg-panel);
    border: 3px solid var(--border-strong);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--pink), #d63384);
    border: 3px solid var(--border-strong);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
}

.section-icon.teal {
    background: linear-gradient(135deg, var(--teal), #6bc0d4);
}

.section-icon.yellow {
    background: linear-gradient(135deg, var(--yellow), #e6c02f);
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    color: var(--teal);
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* BRDC Buttons */
.brdc-btn {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    padding: 16px 32px;
    border: 4px solid var(--black);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 2px;
    background: linear-gradient(180deg, var(--pink) 0%, #d63384 100%);
    color: var(--white);
    border-radius: 8px;
}

.brdc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5);
}

.brdc-btn:active {
    transform: translateY(2px);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
}

.brdc-btn-secondary {
    background: linear-gradient(180deg, var(--teal) 0%, #6bc0d4 100%);
    color: var(--black);
}

.brdc-btn-yellow {
    background: linear-gradient(180deg, var(--yellow) 0%, #e6c02f 100%);
    color: var(--black);
}

/* Submit Button */
.submit-btn {
    display: block;
    width: 100%;
    padding: 18px 32px;
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--pink), #d63384);
    color: white;
    border: 4px solid var(--border-strong);
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.5);
    transition: all 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5);
}

.submit-btn:active {
    transform: translateY(2px);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
}

.submit-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
}

/* BRDC Cards */
.brdc-card {
    background: var(--bg-panel);
    border: 4px solid var(--black);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.brdc-card-header {
    background: linear-gradient(180deg, rgba(255,70,154,0.3) 0%, rgba(255,70,154,0.1) 100%);
    padding: 20px;
    border-bottom: 3px solid var(--pink);
    margin: -25px -25px 20px -25px;
    border-radius: 8px 8px 0 0;
}

.brdc-card-header h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    color: var(--pink);
    letter-spacing: 2px;
}

.brdc-card-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    color: var(--teal);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-grid .full-width {
    grid-column: 1 / -1;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* BRDC Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group label .required {
    color: var(--pink);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px var(--glow-pink);
}

.helper-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.brdc-input,
.brdc-select {
    width: 100%;
    padding: 14px 16px;
    border: 3px solid var(--border-color);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    border-radius: 8px;
    transition: border-color 0.2s;
}

.brdc-input::placeholder {
    color: var(--text-dim);
}

.brdc-input:focus,
.brdc-select:focus {
    outline: none;
    border-color: var(--pink);
    background: rgba(255,255,255,0.08);
}

.brdc-select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.brdc-label {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
    color: var(--text-dim);
}

/* Tables */
.brdc-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-panel);
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid var(--black);
}

.brdc-table th {
    background: var(--pink);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.brdc-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.brdc-table tr:hover {
    background: rgba(255,255,255,0.05);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.text-center { text-align: center; }
.text-pink { color: var(--pink); }
.text-teal { color: var(--teal); }
.text-yellow { color: var(--yellow); }
.text-dim { color: var(--text-dim); }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-pink { background: var(--pink); color: white; }
.badge-teal { background: var(--teal); color: var(--black); }
.badge-yellow { background: var(--yellow); color: var(--black); }
.badge-success { background: #22c55e; color: white; }
.badge-pending { background: var(--border-color); color: var(--text-light); }

/* Loading Spinner */
.brdc-spinner {
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--pink);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alert Messages */
.brdc-alert {
    padding: 20px;
    border: 3px solid var(--black);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
    margin: 20px 0;
    font-weight: 600;
    border-radius: 8px;
}

.brdc-alert-success {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    color: #22c55e;
}

.brdc-alert-error {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444;
}

.brdc-alert-warning {
    background: rgba(253, 216, 53, 0.2);
    border-color: var(--yellow);
    color: var(--yellow);
}

/* Back Button */
.back-btn {
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 10px 16px;
    font-family: 'Bebas Neue', cursive;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.back-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--pink);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }

    .brdc-card {
        padding: 20px;
        box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.5);
    }

    .brdc-btn {
        font-size: 20px;
        padding: 12px 24px;
    }

    .page-header h1 {
        font-size: 28px;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d63384;
}
