/* ============== DAN AMATO - SARAH PENNER STYLE (Even Tighter Header) ============== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #1E1438;
    --accent: #6D28D9;
    --light: #FFFFFF;
    --text: #333333;
    --gray: #666666;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.8;
    color: var(--text);
    background-color: var(--light);
}

/* Logo */
.logo {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    font-size: 3.85rem;
    letter-spacing: 7px;
    color: var(--accent);
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;        /* Reduced */
}

/* Headings */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER - TIGHTER ==================== */
header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    margin: 0 auto;
    max-width: 980px;
}

.header-inner {
    padding: 0.6rem 20px 0.5rem;
//padding: 1.1rem 2rem 0.9rem;
 
/*    padding: 1.1rem 2rem 0.9rem;   */
    text-align: center;
    background: white;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
}

/* Thin Purple Line */
.separator {
    height: 1px;
    background: var(--accent);
    width: 100%;
    margin: 0 auto 0.9rem;
    opacity: 0.9;
}

/* Navigation */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 2.6rem;
    font-size: 1.1rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Content */
.section {
    padding: 0 0 100px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 17px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    background: var(--accent);
    color: white;
    transition: all 0.3s;
}

.btn:hover {
    background: #5B21B6;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--primary);
    color: #ddd;
    text-align: center;
    padding: 3.5rem 0 2.5rem;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover { color: white; }