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

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

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    line-height: 1.6;
    color: #333;
}

h1 {
    text-align: center;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    margin: 0.5em 0;
    font-size: 2.5em;
}

h2 {
    color: #667eea;
    margin-top: 0;
    font-size: 1.6em;
    line-height: 1.3;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 2em;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.product-section {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    padding: 2em;
    border-radius: 12px;
    margin: 2em 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portrait {
    height: auto;
    width: auto;
    text-align: center;
    padding: 1em;
}

.portrait img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portrait img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.column ul {
    background: white;
    padding: 1.5em 2em;
    border-radius: 8px;
    list-style-position: outside;
    margin: 1em 0;
}

.column ul li {
    margin: 0.75em 0;
    padding-left: 0.5em;
}

.column p {
    font-size: 1.1em;
    line-height: 1.7;
}

.price-text {
    font-size: 1.2em;
    font-weight: 600;
    color: #28a745;
    background: #d4edda;
    padding: 0.8em;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    margin: 1em 0;
    display: inline-block;
}

.paypal-form {
    margin: 1.5em 0;
    display: inline-block;
}

.paypal-form input[type="image"] {
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.paypal-form input[type="image"]:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.bundle-offer {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 1.2em;
    border-radius: 10px;
    margin: 1.5em 0;
    font-weight: 600;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.chapter-list {
    margin: 1em 0;
}

.chapter-heading {
    font-weight: 600;
    color: #495057;
    margin: 1em 0 0.5em 0;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
    margin-bottom: 2em;
}

@media (max-width: 768px) {
    .column {
        width: 100%;
        float: none;
        padding: 1em;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.4em;
    }
}

/* 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;
}
