/* lowball.dev - Scandinavian Cabin at Golden Hour */
/* Colors: #EBD9C1, #3D2E22, #FDF6ED, #D4A574, #C4704E, #E8A87C, #F0E4D0, #D4847A, #5C4A3A, #7A6052 */
/* Fonts: Nunito 400/700, Nunito Sans 300/400/600, Fira Code 400 */

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

html, body {
    width: 100%;
    min-height: 100vh;
    background: #FDF6ED;
    color: #3D2E22;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

/* Woodgrain texture on body */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 18px,
        rgba(61, 46, 34, 0.02) 18px,
        rgba(61, 46, 34, 0.02) 19px
    );
    pointer-events: none;
    z-index: 0;
}

/* Golden Hour Overlay */
#golden-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    background: radial-gradient(ellipse at 50% 0%, rgba(196, 112, 78, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 2s ease;
}

/* Content Column */
#content-column {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 24px 60px;
}

/* Header */
#site-header {
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid #EBD9C1;
}

.site-mark {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: #3D2E22;
    letter-spacing: -0.01em;
    display: block;
    margin-bottom: 8px;
}

.tagline {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: #D4A574;
    letter-spacing: 0.05em;
}

/* Text Sections */
.text-section {
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.text-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: #3D2E22;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.body-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    color: #3D2E22;
    margin-bottom: 16px;
}

.body-text:last-child {
    margin-bottom: 0;
}

/* Accent text colors */
.section-title:hover {
    color: #5C4A3A;
    transition: color 0.3s ease;
}

.body-text::selection {
    background: #7A6052;
    color: #FDF6ED;
}

/* Callout Box */
.callout-box {
    background: #F0E4D0;
    border-left: 3px solid #D4A574;
    padding: 24px 28px;
    border-radius: 2px;
    position: relative;
}

.callout-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 14px,
        rgba(61, 46, 34, 0.015) 14px,
        rgba(61, 46, 34, 0.015) 15px
    );
    pointer-events: none;
    border-radius: 2px;
}

.callout-label {
    display: block;
    font-family: 'Fira Code', monospace;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: #C4704E;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Code Block */
.code-block {
    background: #F0E4D0;
    border: 1px solid #EBD9C1;
    border-radius: 2px;
    padding: 24px 28px;
    position: relative;
}

.code-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 14px,
        rgba(61, 46, 34, 0.015) 14px,
        rgba(61, 46, 34, 0.015) 15px
    );
    pointer-events: none;
}

.code-block pre {
    margin-top: 8px;
}

.code-block code {
    font-family: 'Fira Code', monospace;
    font-size: clamp(0.8rem, 1.4vw, 0.95rem);
    line-height: 1.7;
    color: #3D2E22;
}

/* Divider */
.divider {
    width: 60px;
    height: 1px;
    background: #D4A574;
    margin: 20px auto;
}

/* Footer */
#site-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #EBD9C1;
    text-align: center;
    position: relative;
}

.footer-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 14px,
        rgba(61, 46, 34, 0.015) 14px,
        rgba(61, 46, 34, 0.015) 15px
    );
    pointer-events: none;
}

.footer-text {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #3D2E22;
    margin-bottom: 4px;
}

.footer-sub {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    color: #D4A574;
    letter-spacing: 0.05em;
}

/* Hover states */
.callout-box:hover,
.code-block:hover {
    border-color: #D4A574;
    transition: border-color 0.4s ease;
}

/* Responsive */
@media (max-width: 768px) {
    #content-column {
        padding: 60px 20px 40px;
    }
    #site-header {
        margin-bottom: 60px;
    }
}
