/* Steadwell Website Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@600;700&family=DM+Sans:wght@400;600;700&display=swap');

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

:root {
    --warm-white: #faf8f5;
    --warm-black: #1a1614;
    --terracotta: #d4735e;
    --sand: #e8dcc8;
    --clay: #b89685;
    --charcoal: #3d3733;
}

body {
    font-family: 'DM Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--warm-black);
    background-color: var(--warm-white);
}

/* Header & Navigation */
header {
    background-color: var(--warm-white);
    border-bottom: 1px solid var(--sand);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-lockup {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

.logo-text {
    font-family: 'Crimson Pro', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--warm-black);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--warm-black);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--terracotta);
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.container.wide {
    max-width: 1000px;
}

/* Typography */
h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--warm-black);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--terracotta);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--warm-black);
    margin-bottom: 12px;
}

.tagline {
    font-size: 20px;
    color: var(--clay);
    margin-bottom: 40px;
    font-weight: 400;
}

p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Section Spacing */
section {
    margin-bottom: 80px;
}

section:last-child {
    margin-bottom: 0;
}

/* Horizontal Rule */
hr {
    border: none;
    border-top: 2px solid var(--terracotta);
    margin: 60px 0;
    opacity: 0.3;
}

/* Definition List */
.definition-list {
    margin-top: 32px;
}

.definition-item {
    margin-bottom: 32px;
}

.definition-term {
    font-weight: 700;
    font-size: 17px;
    color: var(--warm-black);
    margin-bottom: 8px;
}

.definition-body {
    font-size: 17px;
    line-height: 1.7;
    color: var(--warm-black);
    padding-left: 24px;
}

/* Framework Cards */
.framework {
    margin-bottom: 32px;
    padding: 24px;
    background-color: rgba(232, 220, 200, 0.3);
    border-radius: 8px;
}

.framework-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--warm-black);
    margin-bottom: 12px;
}

.framework-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
}

/* CTA Section */
.cta-section {
    background-color: var(--sand);
    padding: 60px 48px;
    border-radius: 12px;
    margin-top: 80px;
}

.cta-block {
    margin-bottom: 48px;
}

.cta-block:last-of-type {
    margin-bottom: 0;
}

.cta-block p {
    margin-bottom: 20px;
}

/* Buttons */
button, .button {
    background-color: var(--terracotta);
    color: var(--warm-white);
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

button:hover, .button:hover {
    background-color: #c26550;
}

/* Footer */
footer {
    background-color: var(--warm-white);
    border-top: 1px solid var(--sand);
    padding: 48px 24px;
    margin-top: 120px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    font-size: 14px;
    color: var(--clay);
    margin-bottom: 8px;
}

.footer-content a {
    color: var(--terracotta);
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 48px 20px;
    }
    
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .cta-section {
        padding: 40px 24px;
    }
}

/* Hamburger button - hidden by default */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--warm-black);
    transition: 0.3s;
}

/* Show hamburger on mobile, hide nav links */

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }
    
    .nav-links {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background-color: var(--warm-white) !important;
        flex-direction: column !important;
        padding: 20px 24px !important;
        gap: 16px !important;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
        display: none !important;
    }
    
    .nav-links.active {
        display: flex !important;
    }
}