/* ========================================
   ENDEIT FEEDER FUND — Capital Support stijl
   ======================================== */

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

:root {
    --navy:  #1a2235;
    --navy-light: #243049;
    --gold:  #c9a84c;
    --white: #ffffff;
    --text:  #2c2c2c;
    --text-light: #6b7280;
    --bg-light: #f7f7f5;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'Open Sans', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text);
    background: var(--white);
}

.container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- Hero ---- */
.hero {
    background-color: var(--navy);
    background-image: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 6rem 2rem 5rem;
    text-align: center;
}

.hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.hero-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.hero-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto;
}

/* ---- Intro ---- */
.intro {
    padding: 5rem 0;
    background: var(--white);
}

.intro h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--gold);
}

.intro p {
    font-size: 0.975rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 1.4rem;
}

.intro p:last-child {
    margin-bottom: 0;
}

.fund-info {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0.65rem 1.5rem;
    font-size: 0.955rem;
    line-height: 1.6;
}

.fund-info dt {
    color: var(--text-light);
    font-weight: 400;
}

.fund-info dd {
    color: var(--text);
}

/* ---- SFDR ---- */
.sfdr {
    padding: 5rem 0;
    background: var(--bg-light);
}

.sfdr h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.sfdr h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--gold);
}

.sfdr p {
    font-size: 0.975rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 1.4rem;
}

.sfdr p:last-child {
    margin-bottom: 0;
}

/* ---- Downloads ---- */
.downloads {
    padding: 4rem 0 5rem;
    background: var(--bg-light);
}

.downloads h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.downloads h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--gold);
}

.download-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-left: 4px solid var(--gold);
    padding: 1.5rem 1.75rem;
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.2s, transform 0.2s;
}

.download-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.download-card--pending {
    opacity: 0.5;
    pointer-events: none;
    border-left-color: #d1d5db;
}

.download-icon {
    flex-shrink: 0;
    width: 40px;
    color: var(--gold);
}

.download-icon svg {
    width: 100%;
    height: auto;
}

.download-card--pending .download-icon {
    color: var(--text-light);
}

.download-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.download-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
}

.download-sub {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.03em;
}

/* ---- Footer ---- */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .hero {
        padding: 4rem 1.5rem 3.5rem;
    }

    .download-card {
        padding: 1.25rem;
    }
}
