/* pzz.lu - Minimalist Ma Negative Space */

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

:root {
    --stone-light: #F5F4F0;
    --stone-mid: #EDECE5;
    --warm-gray: #A0A090;
    --dark-gray: #8A8A80;
    --slate-blue: #5A6A7A;
    --ink-black: #2A2A28;
    --forest-deep: #2A4030;
    --forest-mid: #3A5A40;
}

body {
    background-color: var(--stone-light);
    color: var(--ink-black);
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    line-height: 1.9;
    font-weight: 300;
    overflow-x: hidden;
}

/* Hero Section */
#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

#domain-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink-black);
    opacity: 0;
    animation: fadeIn 2s ease-out 1s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Breathing Lines */
.breathing-line {
    width: 40px;
    height: 1px;
    background-color: var(--warm-gray);
    margin: 0 auto;
    opacity: 0.4;
}

/* Content Sections */
.content-section {
    max-width: 560px;
    margin: 0 auto;
    padding: 120px 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1s ease, transform 1s ease;
}

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

.section-heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink-black);
    margin-bottom: 1.5rem;
}

.section-text {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--dark-gray);
    max-width: 440px;
    margin: 0 auto;
    font-feature-settings: 'liga' 1, 'kern' 1;
}

/* Detail Pairs */
.detail-pair {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--stone-mid);
    max-width: 320px;
    margin: 0 auto;
}

.detail-label {
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.detail-value {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--forest-deep);
}

/* Footer */
#site-footer {
    text-align: center;
    padding: 120px 2rem 80px;
}

.footer-text {
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--warm-gray);
}

/* Subtle forest accent on hover links if any */
a {
    color: var(--forest-mid);
    text-decoration: none;
}

a:hover {
    color: var(--slate-blue);
}
