/* index.css — Styles for index.php fallback template */

/* ============================================
   🎨 DESIGN TOKENS — EDIT HERE TO RETHEME
   Change any value below to update the entire site.
   No other file needs to be touched for color/font/spacing changes.
   ============================================ */
:root {
    /* FONTS */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* FONT SIZES */
    --font-size-heading: 28px;
    --font-size-body: 16px;
    --font-size-section-header: 36px;

    /* BRAND COLORS */
    --color-primary: #19632D;   /* Darker Green — change here to retheme */
    --color-accent: #f9e37f;    /* Soft Gold — change here to retheme */

    /* NEUTRAL COLORS */
    --color-bg: #181818;
    --color-bg-subtle: #ffffe3;
    --color-text: #272E3B;
    --color-muted: #999999;
    --color-border: #d1d5db;

    /* SEMANTIC / STATUS COLORS */
    --color-success: #067942;
    --color-danger: #dc2626;
    --color-warning: #f9e37f;

    /* SPACING — Base-8 scale */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    --spacing-xxl: 80px;

    /* LAYOUT */
    --radius: 8px;
    --radius-lg: 16px;
    --max-width: 1200px;
}
/* ============================================
   END DESIGN TOKENS
   ============================================ */

/* Reset and base styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
}

/* Index fallback container */
.index-fallback-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    text-align: center;
    padding: 2rem;
    margin: 0 auto;
    max-width: 800px;
}

/* Heading styles */
.index-fallback-container h1 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

/* Paragraph styles */
.index-fallback-container p {
    font-family: var(--font-body);
    color: var(--color-muted);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .index-fallback-container h1 {
        font-size: 2rem;
    }
    
    .index-fallback-container p {
        font-size: 1rem;
    }
    
    .index-fallback-container {
        padding: 1.5rem;
        min-height: calc(100vh - 150px);
    }
}
