/* ========================================
   THEME VARIABLES
   ======================================== */

/* Default gray theme */
/*:root {*/
/*    --theme-primary: #374151;*/
/*    --theme-primary-dark: #1f2937;*/
/*    --theme-primary-light: #6b7280;*/
/*    --theme-accent: #9ca3af;*/
/*    --theme-text: #1f2937;*/
/*    --theme-text-light: #6b7280;*/
/*    --theme-text-muted: #9ca3af;*/
/*    --theme-bg: #ffffff;*/
/*    --theme-bg-light: #f3f4f6;*/
/*    --theme-border-light: #f9fafb;*/
/*    --theme-border: #e5e7eb;*/
/*    --theme-border-heavy: #d1d5db;*/
/*    --theme-hover-bg: #f9fafb;*/
/*    --theme-font-body: 'Lora', sans-serif;*/
/*    --theme-font-heading: 'Montserrat', sans-serif;*/
/*}*/

/* Alternative blue theme */
:root {
    --theme-primary: #2563eb;
    --theme-primary-dark: #1d4ed8;
    --theme-primary-light: #3b82f6;
    --theme-accent: #60a5fa;
    --theme-text: #1f2937;
    --theme-text-light: #4b5563;
    --theme-text-muted: #9ca3af;
    --theme-bg: #ffffff;
    --theme-bg-light: #eff6ff;
    --theme-border-light: #f8fcff;
    --theme-border: #dbeafe;
    --theme-border-heavy: #b2b9c8;
    --theme-hover-bg: #dbeafe;
    --theme-font-body: 'Lora', sans-serif;
    --theme-font-heading: 'Lora', sans-serif;
}

/* ========================================
   CUSTOM FONTS
   ======================================== */

/* --- Lora Regular --- */
@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora/Lora-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* --- Lora Italic --- */
@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora/Lora-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

/* --- Montserrat Regular --- */
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* --- Montserrat Italic --- */
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

/* ========================================
   BASE STYLES
   ======================================== */

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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--theme-font-body), sans-serif;
    line-height: 1.6;
    color: var(--theme-text);
    background: var(--theme-bg);
}

main {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
    background: var(--theme-bg);
    padding: 1.5rem 4rem;
    // box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--theme-border);
    display: flex;
    // position: sticky;
    // top: 0;
    align-items: center;
    justify-content: space-between;
}

h1 {
    font-size: 1.75rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

/* Generic button styles - look like text by default */
.nav-btn {
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    color: var(--theme-primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-btn:hover {
    background: var(--theme-hover-bg);
    color: var(--theme-primary-dark);
    transform: translateY(-1px);
}

/* ========================================
   UTILITIES
   ======================================== */
.section {
    margin-bottom: 2rem;
}

.section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--theme-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--theme-border);
}

p {
    margin-bottom: 1rem;
    color: var(--theme-text);
}

ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--theme-text);
}

footer {
    text-align: center;
    padding: 2rem;
    background: var(--theme-bg);
    margin-top: 4rem;
    border-top: 1px solid var(--theme-border);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    header {
        padding: 1rem 2rem;
    }
}