/* css/style.css */

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

body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

h1, h2 {
    text-shadow: 0 0 10px rgba(220, 53, 69, 0.4); /* subtle red glow */
}

.card-title, .card-header {
    color: #ff4444; /* bright red for headers */
}

.text-highlight {
    color: #ffcc00; /* vivid yellow */
}

.text-lime {
    color: #39ff14; /* lime green accent */
}

.text-orange {
    color: #ff9500;
}

/* ==================== NAVBAR ==================== */
.navbar {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-bottom: 1px solid #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #ff4444 !important;
    text-shadow: 0 0 8px #ff4444aa;
}

.nav-link {
    color: #cccccc !important;
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: #ffcc00 !important;
    text-shadow: 0 0 8px #ffcc00aa;
}

/* ==================== CARDS ==================== */
.card {
    background: #171717;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(220, 53, 69, 0.25);
}

.card-header {
    background: #222;
    border-bottom: 1px solid #444;
    font-size: 1.1rem;
    padding: 12px 20px;
}

.card-body {
    color: #dddddd;
    font-size: 0.98rem;
}

/* Better readability */
.card p, .card li {
    color: #e8e8e8;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    background: #dc3545;
    border: none;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.4);
}

.btn-primary:hover {
    background: #c82333;
    box-shadow: 0 6px 15px rgba(220, 53, 69, 0.6);
}

.btn-secondary {
    background: #fd7e14;
    border: none;
    color: white;
    box-shadow: 0 4px 10px rgba(253, 126, 20, 0.4);
}

.btn-success {
    background: #28a745;
    border: none;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.4);
}

.btn-warning {
    background: #ffc107;
    color: #212529;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.5);
}

.btn-outline-light {
    border-color: #ff4444;
    color: #ff4444;
}

.btn-outline-light:hover {
    background: #ff4444;
    color: white;
}

/* ==================== HERO / JUMBOTRON ==================== */
.jumbotron {
    background: linear-gradient(135deg, #1a0000 0%, #0d0d0d 100%);
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    padding: 5rem 2rem;
}

.jumbotron h1 {
    font-size: 3.5rem;
    color: #ff4444;
    text-shadow: 0 0 20px #ff4444aa;
}

/* ==================== FOOTER ==================== */
footer {
    background: #0a0a0a;
    border-top: 1px solid #222;
    color: #888;
    padding: 2.5rem 0;
}

/* ==================== UTILITIES ==================== */
.glow-red {
    text-shadow: 0 0 10px #dc3545;
}

.glow-yellow {
    text-shadow: 0 0 10px #ffc107;
}