:root {
--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--color-text: #3d3d3d;
--color-primary: #8b7355;
--color-accent: #d4a574;
--color-bg: #fcfaf7;
--color-surface: #ffffff;
--color-border: #f0ede8;
--border-radius: 16px;
}
body {
font-family: var(--font-sans);
line-height: 1.8;
color: var(--color-text);
background-color: var(--color-bg);
margin: 0;
padding: 20px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.container {
max-width: 850px;
margin: 0 auto;
padding: 50px 60px;
background-color: var(--color-surface);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
border-radius: 24px;
border: 1px solid var(--color-border);
}
h1 {
font-size: 2.6em;
color: var(--color-primary);
text-align: center;
margin-bottom: 35px;
line-height: 1.3;
font-weight: 600;
}
h2 {
font-size: 2em;
color: var(--color-primary);
margin-top: 60px;
margin-bottom: 30px;
font-weight: 600;
padding-left: 20px;
border-left: 4px solid var(--color-accent);
line-height: 1.4;
}
h3 {
font-size: 1.5em;
color: #a68b5b;
margin-top: 35px;
margin-bottom: 18px;
font-weight: 400;
}
p {
font-size: 1.1em;
margin-bottom: 1.5em;
color: #4a4a4a;
text-align: left;
widows: 3;
orphans: 3;
}
p span {
font-size: inherit !important;
}
.author-intro {
font-size: 1.2em;
font-style: italic;
text-align: center;
color: var(--color-primary);
margin: 40px auto;
padding: 20px;
background-color: #fdfcfa;
border-radius: var(--border-radius);
border-left: 5px solid var(--color-accent);
border-right: 5px solid var(--color-accent);
max-width: 80%;
}
strong {
color: #c49b61;
font-weight: 600;
}
a {
color: #c49b61;
font-weight: 600;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #a68b5b;
text-decoration: underline;
}
img {
max-width: 100%;
height: auto;
border-radius: var(--border-radius);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: block;
margin: 30px auto;
}
img:hover {
transform: translateY(-5px);
box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}
.img-portrait {
max-width: 340px;
margin-left: auto;
margin-right: auto;
}
/* Flex container for side-by-side images */
.image-gallery {
display: flex;
gap: 20px;
margin: 40px 0;
justify-content: center;
align-items: flex-start;
}
.image-gallery img {
margin: 0; /* Override the global image margin */
}
.store-info {
background-color: #fdfcfa;
padding: 30px;
border: 1px solid var(--color-border);
border-left: 6px solid var(--color-accent);
margin-top: 40px;
border-radius: 8px;
}
.store-info h3 {
color: var(--color-primary);
margin-top: 0;
border-bottom: 2px solid var(--color-border);
padding-bottom: 15px;
margin-bottom: 20px;
}
.store-info ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.store-info li {
margin-bottom: 15px;
color: #5a5a5a;
display: flex;
align-items: center;
}
.store-info li::before {
content: '❯';
margin-right: 10px;
color: var(--color-accent);
font-weight: bold;
}
.tags-section {
background-color: #fdfcfa;
padding: 25px;
border-radius: 12px;
margin-top: 40px;
border: 1px solid var(--color-border);
}
.tags-section p {
margin: 0;
line-height: 1.8;
}
.tags-section a {
display: inline-block;
background-color: #e8dcc6;
color: var(--color-primary);
padding: 5px 12px;
border-radius: 15px;
margin: 5px 5px 5px 0;
font-size: 0.9em;
font-weight: 500;
text-decoration: none;
transition: all 0.3s ease;
}
.tags-section a:hover {
background-color: var(--color-accent);
color: var(--color-surface);
transform: translateY(-2px);
text-decoration: none;
}
/* Responsive Design */
@media (max-width: 768px) {
body {
padding: 0;
}
.container {
padding: 25px 20px;
margin: 0;
border-radius: 0;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.6em;
}
h3 {
font-size: 1.3em;
}
.image-gallery {
flex-direction: column;
gap: 15px;
}
}