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

@import "herwheel.css";
/*
    Created on : Feb 5, 2018, 11:16:06 PM
    Author     : jax
*/

* {
    box-sizing: border-box;
}

body {
    background-color: lightblue;
    background-image: url("../images_new/sky.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    margin: 0;
    padding: 1em;
    line-height: 1.7;
    color: #2c3e50;
}

h1 {
    text-align: center;
    color: #34495e;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
    margin: 0.5em 0;
    font-size: 2.5em;
}

h2 {
    color: #34495e;
    border-bottom: 3px solid #3498db;
    padding-bottom: 0.5em;
    margin-top: 2em;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

h3 {
    color: #2c3e50;
    margin-top: 1.5em;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    padding: 2em 3em;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.copyright-notice {
    text-align: center;
    font-size: 0.9em;
    color: #555;
    padding: 1em;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    margin-bottom: 1.5em;
}

.copyright-notice small {
    display: block;
    margin-top: 0.5em;
    font-style: italic;
}

.table-of-contents {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5em 2em;
    border-radius: 8px;
    margin: 2em 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.table-of-contents ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.table-of-contents li {
    padding: 0.5em 0;
}

.table-of-contents a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    display: inline-block;
    padding-left: 1.5em;
    position: relative;
}

.table-of-contents a:before {
    content: "→";
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.table-of-contents a:hover {
    transform: translateX(10px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.table-of-contents a:hover:before {
    transform: translateX(-5px);
}

.section {
    margin: 2.5em 0;
}

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

.form-section {
    text-align: center;
    margin: 2em 0;
    padding: 1.5em;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 8px;
}

.form-section button {
    background: white;
    color: #f5576c;
    border: none;
    padding: 1em 2em;
    font-size: 1.1em;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-section button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.floating-image-right {
    float: right;
    padding: 1em;
    max-width: 40%;
}

.floating-image-right img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.floating-image-right img:hover {
    transform: scale(1.05);
}

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

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

.portrait img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.portrait img:hover {
    transform: scale(1.05);
}

.lid-showcase {
    margin: 2em 0;
    background: rgba(52, 152, 219, 0.1);
    padding: 2em;
    border-radius: 8px;
}

.column {
    float: left;
    width: 50%;
    padding: 1em;
    text-align: center;
}

.column img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.column i {
    display: block;
    margin-top: 1em;
    color: #555;
    font-size: 0.95em;
}

.columnl {
    float: left;
    width: 60%;
    padding: 2em;
}

.columnr {
    float: right;
    width: 40%;
    padding: 2em;
}

/* Clear floats after the columns */

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

a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

/* Navigation circle styling for visibility on light blue 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: 600;
    font-size: 1.05em;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-bottom: none !important;
}

.nav-circle-link:hover {
    background: rgba(52, 152, 219, 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;
}
