/* Main Stylesheet */

:root {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --secondary-color: #fbbf24;
    --background: #020617;
    --surface: rgba(15, 23, 42, 0.75);
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --border-color: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;
    width: 100%;
}

/* Override Bootstrap defaults */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-warning {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-warning:hover {
    background-color: var(--secondary-color);
    color: var(--background);
    border-color: var(--secondary-color);
}

.text-white {
    color: var(--text-primary) !important;
}

.lead {
    font-size: 1.1rem;
    font-weight: 300;
}

.display-4 {
    font-weight: 700;
}

.display-5 {
    font-weight: 700;
}

/* Container */
.container {
    max-width: 1200px;
}

/* Navigation */
.navbar-brand {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    border-top: none;
    background: transparent;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 24px;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Text Utilities */
.fw-bold {
    font-weight: 600;
}

.text-center {
    text-align: center;
}

.text-md-end {
    text-align: right;
}

/* Spacing */
.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

/* Grid */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.row > [class*='col-'] {
    padding-right: 12px;
    padding-left: 12px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .text-md-end {
        text-align: left;
        margin-top: 1rem;
    }

    .hero-section {
        padding: 60px 0;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .py-5 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* Utility Classes */
.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-md-end {
    justify-content: flex-end;
}

.text-decoration-none {
    text-decoration: none;
}

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 0.25rem;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.border-0 {
    border: 0;
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.border-secondary {
    border-color: #475569;
}

.opacity {
    opacity: 0.5;
}

.fw-bold {
    font-weight: 700;
}

.p-3 {
    padding: 1rem;
}

.p-4 {
    padding: 1.5rem;
}

.px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-md-0 {
    padding-left: 0;
    padding-right: 0;
}

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.pb-3 {
    padding-bottom: 1rem;
}

/* Grid gap utilities */
.g-3 {
    gap: 1rem;
}

.align-items-center {
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}
