/*
Copyright (c) 2018, HerWheel Pottery LLC http://www.herwheel.com
*/

@import "herwheel.css";
/*
    Created on : Feb 5, 2018, 12:05:19 AM
    Author     : jax
*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 1em;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    background-attachment: fixed;
    font-family: 'Garamond', 'Georgia', serif;
    line-height: 1.7;
    color: #2c3e50;
}

h1 {
    text-align: center;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    margin: 0.5em 0 1em 0;
    font-size: 2.8em;
    letter-spacing: 2px;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.97);
    padding: 3em;
    border-radius: 15px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.4);
}

.publications-intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5em;
    border-radius: 10px;
    margin-bottom: 2.5em;
    text-align: center;
    font-size: 1.1em;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.publication-section {
    margin: 2.5em 0;
    padding: 1.5em;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #1e3c72;
}

.publication-section h2 {
    color: #1e3c72;
    margin-top: 0;
    font-size: 1.6em;
    margin-bottom: 1em;
}

.publication-list {
    list-style: none;
    padding: 0;
}

.publication-list > li {
    margin: 1.5em 0;
    padding: 1em;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.publication-list > li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.publication-list > li:before {
    content: "📚";
    margin-right: 0.5em;
    font-size: 1.2em;
}

.nested-publications {
    list-style: none;
    padding-left: 1.5em;
    margin-top: 1em;
}

.nested-publications li {
    margin: 0.6em 0;
    padding-left: 1.5em;
    position: relative;
}

.nested-publications li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.magazine-section {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 1em;
    border-radius: 8px;
    margin: 0.8em 0;
}

.magazine-link {
    font-weight: 700;
    font-size: 1.1em;
    color: #2c3e50;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.magazine-link:hover {
    color: #667eea;
    border-bottom-color: #667eea;
}

a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

a:visited {
    color: #764ba2;
}

a:hover {
    color: #667eea;
    border-bottom-color: #667eea;
}

.feature-publication {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 1.2em;
    border-radius: 8px;
    border-left: 5px solid #667eea;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 1.5em;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .publication-list > li:hover {
        transform: translateX(5px);
    }
}

/* Navigation circle styling for visibility on dark blue gradient background */
.nav-circle-container {
    text-align: center;
    padding: 1em 0;
    margin: 1em 0;
}

.nav-circle-link {
    display: inline-block;
    margin: 0.5em 1em;
    padding: 0.7em 1.2em;
    background: rgba(255, 255, 255, 0.95);
    color: #1e3c72 !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05em;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.nav-circle-link:hover {
    background: rgba(102, 126, 234, 0.95);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.nav-circle-link .fa-solid {
    margin-right: 0.3em;
    font-size: 1.1em;
}