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

@import "herwheel.css";
/*
    Created on : Feb 6, 2018, 10:20:22 AM
    Author     : jax
*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 1em;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    background: linear-gradient(135deg, #f12711 0%, #f5af19 100%);
    background-attachment: fixed;
    line-height: 1.7;
    color: #2c3e50;
}

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

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

.copyright-notice {
    text-align: center;
    font-weight: 600;
    padding: 1em;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    color: white;
    border-radius: 8px;
    margin-bottom: 2em;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.text-column {
    float: left;
    width: 55%;
    padding: 1.5em;
}

.text-column p {
    text-align: justify;
    font-size: 1.05em;
    line-height: 1.8;
    margin: 1.5em 0;
}

.text-column p:first-of-type:first-letter {
    font-size: 3em;
    font-weight: bold;
    float: left;
    line-height: 0.9;
    margin: 0.1em 0.1em 0 0;
    color: #f12711;
}

.image-column {
    float: left;
    width: 45%;
    padding: 1.5em;
}

.process-image {
    background: white;
    padding: 1em;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 2em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

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

.image-caption {
    margin-top: 1em;
    font-style: italic;
    color: #555;
    font-size: 0.95em;
    text-align: center;
    line-height: 1.5;
}

.important-note {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 1.2em;
    border-radius: 8px;
    border-left: 5px solid #f12711;
    margin: 2em 0;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.3);
}

.saggar-section {
    background: linear-gradient(135deg, #a29bfe 0%, #74b9ff 100%);
    padding: 1.5em;
    border-radius: 10px;
    margin: 2em 0;
    color: white;
    box-shadow: 0 4px 15px rgba(116, 185, 255, 0.3);
}

.saggar-section p {
    margin: 0;
    font-size: 1.05em;
    text-align: left;
}

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

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

.column {
    float: left;
    width: 50%;
    padding: 1em;
}

.mytitle {
    padding-top: 1em;
    padding-left: 1em;
    font-style: italic;
}

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

@media (max-width: 768px) {
    .text-column,
    .image-column {
        width: 100%;
        float: none;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .content-wrapper {
        padding: 1.5em;
    }
    
    .text-column p:first-of-type:first-letter {
        font-size: 2em;
    }
}

/* Navigation circle styling for visibility on orange 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: #f12711 !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(241, 39, 17, 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;
}
