/* ====================================
   ARCHIVE STYLES - MUSTAFA AL-HAWAMDEH
   Academic & Memorial Design
   ==================================== */

/* CSS Variables - Color Palette */
:root {
    /* Primary Colors */
    --primary-dark: #1a3a2a;
    --primary-green: #2d5a3d;
    --accent-gold: #c9a227;
    --accent-gold-light: #d4b84a;
    
    /* Neutral Colors */
    --white: #ffffff;
    --cream: #faf8f5;
    --beige: #f5f0e6;
    --sand: #e8e0d0;
    --warm-gray: #8a8275;
    --dark-gray: #3d3d3d;
    
    /* Functional Colors */
    --text-primary: #2c2c2c;
    --text-secondary: #5a5a5a;
    --text-light: #7a7a7a;
    
    /* Section Colors */
    --bg-light: #faf8f5;
    --bg-cream: #f5f0e6;
    --bg-dark: #1a3a2a;
    --bg-accent: #2d5a3d;
    
    /* Typography */
    --font-arabic: 'Cairo', 'Amiri', sans-serif;
    --font-english: 'Tajawal', 'Cairo', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-arabic);
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--cream);
    direction: rtl;
}

.en-text {
    font-family: var(--font-english);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ====================================
   TYPOGRAPHY
   ==================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--space-sm);
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-gold);
}

/* ====================================
   HEADER & NAVIGATION
   ==================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: var(--space-sm) 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    text-align: center;
}

.site-title {
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin: 0;
}

.site-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-sm);
    margin: 0;
    padding: 0;
}

.nav-list li a {
    display: block;
    padding: var(--space-xs) var(--space-sm);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-list li a:hover,
.nav-list li a.active {
    color: var(--white);
    background: var(--primary-green);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.hamburger {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    left: 0;
    transition: var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Language Toggle */
.lang-toggle {
    position: fixed;
    top: 80px;
    left: 20px;
    z-index: 1001;
}

.lang-toggle button {
    background: var(--white);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.lang-toggle button:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    padding: 120px var(--space-md) var(--space-xl);
    margin-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(201,162,39,0.1)" stroke-width="0.5"/></svg>');
    background-size: 200px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.hero-subtitle-en {
    font-size: 1.4rem;
    color: var(--accent-gold-light);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.intro-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: var(--space-sm);
}

.intro-text-en {
    font-size: 1rem;
    color: var(--sand);
    font-style: italic;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

.btn-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-green);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--primary-dark);
}

/* ====================================
   SECTIONS GENERAL
   ==================================== */

.section-padding {
    padding: var(--space-2xl) 0;
}

.bg-light {
    background: var(--bg-light);
}

.bg-cream {
    background: var(--bg-cream);
}

.bg-dark {
    background: var(--bg-dark);
    color: var(--white);
}

.bg-accent {
    background: var(--bg-accent);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
}

.section-header.light .section-title {
    color: var(--white);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-green));
    margin: 0 auto;
    border-radius: 2px;
}

/* ====================================
   BIOGRAPHY SECTION
   ==================================== */

.biography-content {
    max-width: 1000px;
    margin: 0 auto;
}

.bio-card {
    display: flex;
    gap: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
}

.bio-image-placeholder {
    flex: 0 0 250px;
    background: var(--beige);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    border: 2px dashed var(--sand);
}

.placeholder-icon {
    width: 100px;
    height: 100px;
    margin-bottom: var(--space-sm);
}

.placeholder-text {
    color: var(--warm-gray);
    font-size: 0.9rem;
}

.bio-info {
    flex: 1;
    min-width: 300px;
}

.name-ar {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
}

.name-en {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: var(--space-md);
    font-weight: 400;
    font-style: italic;
}

.bio-text p {
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
    text-align: justify;
}

.positions-list {
    margin: var(--space-md) 0;
    padding-right: var(--space-lg);
}

.positions-list li {
    margin-bottom: var(--space-xs);
    padding-right: var(--space-sm);
    border-right: 3px solid var(--accent-gold);
}

.source-note {
    background: var(--beige);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.note-icon {
    font-size: 1.5rem;
}

.en-content {
    font-family: var(--font-english);
}

/* Sub-heading style */
.sub-heading {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--accent-gold);
}

/* Founders list style */
.founders-list {
    list-style: none;
    padding: 0;
    margin: var(--space-sm) 0;
}

.founders-list li {
    padding: var(--space-xs) 0;
    border-bottom: 1px dashed var(--sand);
    color: var(--text-primary);
}

.founders-list li:last-child {
    border-bottom: none;
}

/* ====================================
   JERASH UNIVERSITY SECTION
   ==================================== */

.jerash-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.jerash-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-normal);
}

.jerash-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.jerash-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.jerash-card h3 {
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
}

.jerash-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.update-note {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-md);
    background: var(--beige);
    border-radius: var(--radius-md);
    font-style: italic;
    color: var(--text-secondary);
}

/* ====================================
   PUBLICATIONS SECTION
   ==================================== */

.publications-list {
    max-width: 900px;
    margin: 0 auto;
}

.publication-item {
    display: flex;
    gap: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.publication-item:hover {
    box-shadow: var(--shadow-md);
}

.pub-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.pub-content h4 {
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
}

.pub-author {
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.pub-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pub-link {
    display: inline-block;
    margin-top: var(--space-xs);
    color: var(--accent-gold);
    font-weight: 600;
}

.publications-note {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-md);
    background: var(--beige);
    border-radius: var(--radius-md);
    font-style: italic;
    color: var(--text-secondary);
}

/* ====================================
   CONTRIBUTE SECTION
   ==================================== */

.contribute-content {
    max-width: 800px;
    margin: 0 auto;
}

.call-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.call-box h3 {
    color: var(--accent-gold-light);
    margin-bottom: var(--space-md);
}

.call-box p {
    color: var(--sand);
    margin-bottom: var(--space-sm);
}

.call-box .highlight {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Form Styles */
.contribution-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm);
    border: 2px solid var(--sand);
    border-radius: var(--radius-md);
    font-family: var(--font-arabic);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: var(--primary-green);
    color: var(--white);
    padding: var(--space-md);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.form-success {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
}

.success-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: var(--space-md);
}

/* ====================================
   TESTIMONIALS SECTION
   ==================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--beige);
}

.testimonial-icon {
    font-size: 2rem;
}

.testimonial-type {
    color: var(--primary-dark);
    font-weight: 600;
}

.testimonial-content {
    color: var(--text-secondary);
}

.testimonial-placeholder {
    font-style: italic;
    color: var(--warm-gray);
}

.testimonials-note {
    text-align: center;
    padding: var(--space-md);
    background: var(--beige);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
}

/* ====================================
   GALLERY SECTION
   ==================================== */

.gallery-placeholder {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
}

.placeholder-icon-large {
    font-size: 5rem;
    margin-bottom: var(--space-md);
}

.gallery-note {
    margin-top: var(--space-md);
    font-style: italic;
    color: var(--text-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item.placeholder {
    background: var(--beige);
    border: 2px dashed var(--sand);
}

.gallery-placeholder-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-gray);
    font-size: 0.9rem;
}

/* ====================================
   SOURCES SECTION
   ==================================== */

.sources-content {
    max-width: 900px;
    margin: 0 auto;
}

.sources-intro {
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
}

.sources-list {
    display: grid;
    gap: var(--space-md);
}

.source-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    border-right: 4px solid var(--accent-gold);
}

.source-item h4 {
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
}

.source-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.source-link {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 600;
}

.sources-note {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-md);
    background: var(--beige);
    border-radius: var(--radius-md);
    font-style: italic;
    color: var(--text-secondary);
}

/* ====================================
   CONTACT SECTION
   ==================================== */

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-xl);
}

.contact-intro {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.contact-person {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.contact-person h3 {
    color: var(--accent-gold-light);
    margin-bottom: var(--space-sm);
}

.contact-person .person-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.contact-person .person-title {
    color: var(--sand);
    font-style: italic;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.method-icon {
    font-size: 1.5rem;
}

.method-label {
    color: var(--sand);
}

.method-value {
    color: var(--white);
    font-weight: 500;
}

.contact-cta {
    text-align: center;
}

.contact-cta p {
    margin-bottom: var(--space-md);
    color: var(--sand);
}

/* ====================================
   FOOTER
   ==================================== */

.site-footer {
    background: var(--primary-dark);
    color: var(--sand);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h3 {
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.footer-logo p {
    color: var(--sand);
}

.footer-links h4,
.footer-sources h4 {
    color: var(--accent-gold-light);
    margin-bottom: var(--space-md);
}

.footer-links ul,
.footer-sources ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-sources li {
    margin-bottom: var(--space-xs);
}

.footer-links a,
.footer-sources a {
    color: var(--sand);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-sources a:hover {
    color: var(--accent-gold-light);
}

.footer-copyright {
    text-align: center;
    padding-top: var(--space-md);
}

.footer-copyright p {
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
}

.copyright-en {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--warm-gray);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

/* Tablet and smaller */
@media (max-width: 992px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: var(--shadow-md);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active .hamburger {
        background: transparent;
    }
    
    .menu-toggle.active .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }
    
    .menu-toggle.active .hamburger::after {
        bottom: 0;
        transform: rotate(-45deg);
    }
    
    .main-nav {
        position: relative;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .bio-card {
        flex-direction: column;
    }
    
    .bio-image-placeholder {
        flex: 0 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .site-header .container {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .hero-section {
        padding: 100px var(--space-sm) var(--space-lg);
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle-en {
        font-size: 1.1rem;
    }
    
    .intro-box {
        padding: var(--space-md);
    }
    
    .section-padding {
        padding: var(--space-xl) 0;
    }
    
    .bio-card,
    .contribution-form,
    .call-box {
        padding: var(--space-md);
    }
    
    .publication-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .lang-toggle {
        top: auto;
        bottom: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: var(--space-sm);
        width: 100%;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ====================================
   ANIMATIONS
   ==================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-padding {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scroll offset for fixed header */
section[id] {
    scroll-margin-top: 80px;
}