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

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

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 1em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.8;
    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;
}

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

.copyright-notice {
    text-align: center;
    font-weight: 600;
    color: #555;
    font-size: 0.95em;
    padding: 1em;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 8px;
    margin-bottom: 2em;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

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

.intro-section p {
    margin: 0;
    font-size: 1.1em;
    font-weight: 500;
    color: #2c3e50;
}

.floating-image {
    float: right;
    max-width: 35%;
    margin: 0 0 2em 2em;
    padding: 1em;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.floating-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.text-content {
    text-align: justify;
}

.text-content p {
    margin: 1.5em 0;
    font-size: 1.05em;
    line-height: 1.9;
}

.text-content p:first-letter {
    font-size: 2em;
    font-weight: bold;
    color: #667eea;
    float: left;
    line-height: 1;
    margin-right: 0.1em;
}

.showcase-section {
    margin: 3em 0 2em 0;
    clear: both;
    text-align: center;
}

.showcase-image {
    background: white;
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: inline-block;
    max-width: 80%;
}

.showcase-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.showcase-image img:hover {
    transform: scale(1.03);
}

.column {
    float: left;
    width: var(--about-burnishing-column-width, 50%);
    height: auto;
    font-family: sans-serif;
    padding: 20px;
}

.book_column {
    float: left;
    width: var(--about-burnishing-book-column-width, 100%);
    height: auto;
    font-family: sans-serif;
    padding: 1em;
}

.portrait {
    height: auto;
    width: auto;
}

img {
    max-height: 100%;
    max-width: 100%;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .floating-image {
        float: none;
        max-width: 100%;
        margin: 2em 0;
    }
    
    .content-wrapper {
        padding: 1.5em;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .text-content p:first-letter {
        font-size: 1.5em;
    }
    
    .showcase-image {
        max-width: 100%;
        padding: 1em;
    }
}

/* Navigation circle styling for visibility on purple 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: #667eea !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(102, 126, 234, 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;
}
