/* 
    Light Spear Studios
    Clean, responsive stylesheet replacing Google Sites cruft 
*/

:root {
    --bg-color: #283335; /* rgba(40, 51, 53, 1) */
    --text-primary: #f9f9f9;
    --text-secondary: rgba(249, 249, 249, 0.7);
    --accent: #f9f9f9;
    --accent-text: #283335;
    
    --font-sans: 'Roboto', 'Google Sans', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Header */
.site-header {
    padding: 15px 0;
}
.logo-img {
    max-height: 48px;
    display: block;
}

/* Main Content */
.main-content {
    padding-top: 40px;
    padding-bottom: 60px;
}

/* Rows & Columns */
.content-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}
.col {
    flex: 1;
    min-width: 300px;
}
.feature-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}
h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}
h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.caption {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 12px;
    text-align: center;
}
.subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}
.paragraph {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Markdown Container Typography */
#markdown-container p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}
#markdown-container h1, 
#markdown-container h2, 
#markdown-container h3 {
    margin-top: 25px;
    margin-bottom: 12px;
}
#markdown-container ul,
#markdown-container ol {
    margin-bottom: 15px;
    padding-left: 20px;
}
#markdown-container strong {
    color: var(--accent);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: var(--accent-text);
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px;
    transition: opacity 0.2s;
}
.btn-primary:hover {
    opacity: 0.9;
}

/* Team Section */
.team-section {
    text-align: center;
    margin-bottom: 60px;
}
.team-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}
.team-member {
    max-width: 260px;
    text-align: center;
}
.team-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
    display: block;
}
.team-member .role {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 4px 0;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
}
.footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.footer-legal {
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.privacy-link {
    color: var(--text-secondary);
    text-decoration: underline;
}
.privacy-link:hover {
    color: var(--text-primary);
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social img {
    width: 32px;
    height: 32px;
    transition: opacity 0.2s;
}
.footer-social img:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-row {
        flex-direction: column;
        text-align: center;
    }
    h1 {
        font-size: 2rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
