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

@import "herwheel.css";
/*
    Created on : Feb 5, 2018, 4:52:20 PM
    Author     : jax
*/

* {
    box-sizing: content-box;
}

html {
    height: 100%;
}
body {
    height: 100%;
    margin: 4px;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

img:hover {
    transform: scale(1.5);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

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

.portrait {
    /*    align-content: center;*/
    height: auto;
    width: auto;
}

.horseback {
    color: #663a46;
    background: rgba(229, 174, 54, 0.5);
    /* #e5ae36; */
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(229, 174, 54, 0.5) 0%, rgba(244, 230, 198, 0.5) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(229, 174, 54, 0.5) 0%, rgba(244, 230, 198, 0.5) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(229, 174, 54, 0.5) 0%, rgba(244, 230, 198, 0.5) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5ae36', endColorstr='#f4e6c6', GradientType=0);
    /* IE6-9 */
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat;
    background-size: auto;
    font-family: sans-serif;
    font-weight: 500;
}

.image_copyright {
    font-weight: 600;
    margin-left: 1em;
    font-size: 0.9em;
    font-style: italic;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 1em 2em;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-section {
    text-align: center;
    margin: 2em 0;
}

.image-caption {
    display: block;
    margin: 1em 0 0.5em 0;
    font-weight: 600;
    color: #663a46;
}

.description-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0.5em auto 1.5em auto;
    display: inline-block;
    text-align: left;
}

.description-list li {
    padding: 0.25em 0 0.25em 1.2em;
    position: relative;
}

.description-list li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #8B4513;
}

.text-section {
    margin: 1.5em 0;
    line-height: 1.6;
    text-align: justify;
}

.text-section p {
    margin: 1em 0;
}

.form-section {
    text-align: center;
    margin: 2em 0;
}

.form-section button {
    background: #8B4513;
    color: white;
    border: none;
    padding: 0.8em 1.5em;
    font-size: 1em;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-section button:hover {
    background: #663a46;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ordering-info {
    background: rgba(255, 255, 255, 0.5);
    padding: 1em 1.5em;
    border-radius: 6px;
    margin: 2em 0;
    border-left: 4px solid #8B4513;
}

.ordering-info ul {
    margin: 0;
    padding-left: 1.5em;
}

.ordering-info li {
    margin: 0.75em 0;
    line-height: 1.5;
}

.ordering-info a {
    color: #663a46;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #663a46;
}

.ordering-info a:hover {
    color: #8B4513;
    border-bottom-color: #8B4513;
}

h1 {
    text-align: center;
    color: #663a46;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    margin-bottom: 1em;
}

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

/* Clear floats after the columns */

.row:after {
    content: "";
    display: table;
    clear: both;
}

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

.nav-circle-link:hover {
    background: rgba(139, 69, 19, 0.95);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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