/* Hip Hop Contractors — Base Styles */

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

:root {
    --bg: var(--site-bg, #030712);
    --surface: var(--site-surface, #111827);
    --text: var(--site-text, #FFFFFF);
    --text-muted: var(--site-text-muted, #9CA3AF);
    --primary: var(--site-primary, #D4AF37);
    --radius: var(--site-radius, 12px);
    --max-width: var(--site-max-width, 1200px);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 16px 0;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.site-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}
.site-nav {
    display: flex;
    gap: 24px;
}
.site-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.site-nav a:hover {
    color: var(--primary);
}

/* Main */
.site-main {
    padding: 60px 0;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 0;
}
.hero h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}
.hero p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

h2 { font-size: 28px; font-weight: 700; margin-bottom: 16px; }
p { color: var(--text-muted); margin-bottom: 16px; }
a { color: var(--primary); }

/* SDK Fallback Footer */
#sdk-fallback-footer {
    margin-top: 4rem;
    background: var(--surface, #111827);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem 1rem;
}

.sdk-fallback-footer {
    text-align: center;
}

.fallback-container {
    max-width: 600px;
    margin: 0 auto;
}

.fallback-logo {
    height: 48px;
    margin: 0 auto 1rem;
    display: block;
}

.fallback-text {
    color: var(--text-muted, #9CA3AF);
    font-size: 14px;
    margin: 0.5rem 0;
}

.fallback-contact a {
    color: var(--primary, #D4AF37);
    text-decoration: none;
}

.fallback-contact a:hover {
    text-decoration: underline;
}
