/* ==================== */
/* Public Frontend Styles */
/* ==================== */

/* Base */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.hero-gradient {
    background: linear-gradient(135deg, #0A1628 0%, #1a2d4a 50%, #0A1628 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #0565ab, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-content {
    padding-top: 64px;
}

/* Homepage Hero */
.hero-container {
    position: relative;
    overflow: hidden;
    height: calc(100vh + 64px);
    display: flex;
    align-items: center;
    background-image: url('/static/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -64px;
    padding-top: 64px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 45, 74, 0.8) 50%, rgba(10, 22, 40, 0.85) 100%);
    z-index: 1;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Inner Page Hero */
.page-hero {
    position: relative;
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('/static/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -64px;
    padding-top: 64px;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(26, 45, 74, 0.85) 50%, rgba(10, 22, 40, 0.88) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 10;
}

/* Prose */
.prose {
    line-height: 1.8;
}

.prose p {
    margin-bottom: 1rem;
}

.prose h1, .prose h2, .prose h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.prose ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.prose a {
    color: #3B82F6;
    text-decoration: underline;
}
