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

/*
    Created on : Feb 28, 2018, 8:28:25 PM
    Author     : jax
*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 1em;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    background-attachment: fixed;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    line-height: 1.7;
    color: #2c3e50;
}

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

h2 {
    color: #2c3e50;
    border-bottom: 3px solid #4facfe;
    padding-bottom: 0.5em;
    margin-top: 2.5em;
    margin-bottom: 1em;
    font-size: 1.8em;
}

.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.3);
}

.bio-header {
    display: flex;
    align-items: flex-start;
    gap: 2em;
    margin-bottom: 2em;
}

.portrait {
    flex-shrink: 0;
    width: 300px;
}

.portrait img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 5px solid white;
}

.bio-intro {
    flex: 1;
}

.bio-intro p {
    font-size: 1.1em;
    line-height: 1.8;
    margin: 1em 0;
}

.bio-intro strong {
    color: #4facfe;
    font-size: 1.15em;
}

.content-section {
    margin: 2em 0;
}

.content-section p {
    font-size: 1.05em;
    line-height: 1.8;
    margin: 1em 0;
}

.shows-list,
.recognition-list {
    columns: 1;
    column-gap: 2em;
}

.shows-list li,
.recognition-list li {
    margin: 0.8em 0;
    padding-left: 0.5em;
    position: relative;
    break-inside: avoid;
    page-break-inside: avoid;
}

.shows-list li:before {
    content: "🏺";
    position: absolute;
    left: -1.5em;
}

.recognition-list li:before {
    content: "🏆";
    position: absolute;
    left: -1.5em;
}

ul {
    list-style: none;
    padding-left: 2em;
}

.highlight-box {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 1.5em;
    border-radius: 10px;
    margin: 2em 0;
    border-left: 5px solid #4facfe;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-box p {
    margin: 0.5em 0;
}

@media (max-width: 768px) {
    .bio-header {
        flex-direction: column;
        align-items: center;
    }
    
    .portrait {
        width: 100%;
        max-width: 300px;
    }
    
    .content-wrapper {
        padding: 1.5em;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    .shows-list,
    .recognition-list {
        columns: 1;
    }
}

/* Navigation circle styling for visibility on cyan 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: #2c3e50 !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05em;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-circle-link:hover {
    background: rgba(79, 172, 254, 0.95);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

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