@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400;700&display=swap');

:root {
--primary-wood: #8B4513;
--secondary-oak: #D2691E;
--accent-walnut: #654321;
--light-birch: #F5DEB3;
--dark-mahogany: #420D09;
--background-cream: #FAF8F3;
--text-charcoal: #2C2C2C;
--border-gray: #D4C5B9;
--hover-copper: #B87333;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Lato', sans-serif;
color: var(--text-charcoal);
background-color: var(--background-cream);
line-height: 1.7;
overflow-x: hidden;
}

.main-header {
background: linear-gradient(135deg, var(--primary-wood) 0%, var(--accent-walnut) 100%);
padding: 1.2rem 0;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
position: sticky;
top: 0;
z-index: 1000;
}

.header-container {
max-width: 1280px;
margin: 0 auto;
padding: 0 2.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-section {
display: flex;
align-items: center;
gap: 1rem;
}

.logo-section img {
border-radius: 8px;
border: 3px solid var(--light-birch);
}

.site-title {
font-family: 'Playfair Display', serif;
font-size: 1.8rem;
font-weight: 700;
color: var(--light-birch);
letter-spacing: 1px;
}

.primary-nav ul {
display: flex;
list-style: none;
gap: 2.5rem;
}

.primary-nav a {
color: var(--light-birch);
text-decoration: none;
font-weight: 500;
font-size: 1.05rem;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
border-radius: 6px;
}

.primary-nav a:hover,
.primary-nav a.active {
background-color: rgba(255,255,255,0.15);
color: var(--hover-copper);
transform: translateY(-2px);
}

.hero-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
max-width: 1280px;
margin: 4rem auto;
padding: 0 2.5rem;
align-items: center;
}

.hero-content h1 {
font-family: 'Playfair Display', serif;
font-size: 3.2rem;
color: var(--primary-wood);
margin-bottom: 1.5rem;
line-height: 1.2;
}

.hero-content p {
font-size: 1.25rem;
color: var(--text-charcoal);
margin-bottom: 2rem;
}

.cta-button {
display: inline-block;
background: linear-gradient(135deg, var(--secondary-oak), var(--primary-wood));
color: white;
padding: 1rem 2.5rem;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(139,69,19,0.3);
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(139,69,19,0.4);
}

.hero-image img {
width: 100%;
border-radius: 15px;
box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.tip-of-day {
background: linear-gradient(135deg, var(--light-birch), #E8DCC4);
padding: 2.5rem 0;
margin: 3rem 0;
border-top: 4px solid var(--secondary-oak);
border-bottom: 4px solid var(--secondary-oak);
}

.tip-box {
max-width: 1100px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 2rem;
padding: 0 2.5rem;
}

.tip-icon {
font-size: 3.5rem;
color: var(--secondary-oak);
}

.tip-content h3 {
font-family: 'Playfair Display', serif;
color: var(--primary-wood);
font-size: 1.8rem;
margin-bottom: 0.8rem;
}

.tip-content p {
font-size: 1.1rem;
color: var(--text-charcoal);
}

.container-standard {
max-width: 1280px;
margin: 0 auto;
padding: 0 2.5rem;
}

.featured-posts,
.workshop-features {
padding: 4rem 0;
}

.featured-posts h2,
.workshop-features h2 {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
color: var(--primary-wood);
text-align: center;
margin-bottom: 3rem;
}

.posts-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2.5rem;
margin-top: 2rem;
}

.post-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.post-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.post-card img {
width: 100%;
height: 240px;
object-fit: cover;
}

.post-content {
padding: 1.8rem;
}

.post-content h3 {
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
margin-bottom: 0.8rem;
}

.post-content h3 a {
color: var(--primary-wood);
text-decoration: none;
transition: color 0.3s;
}

.post-content h3 a:hover {
color: var(--secondary-oak);
}

.post-meta {
color: #888;
font-size: 0.9rem;
margin-bottom: 1rem;
display: flex;
gap: 1rem;
}

.read-more {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--secondary-oak);
text-decoration: none;
font-weight: 600;
margin-top: 1rem;
transition: all 0.3s;
}

.read-more:hover {
color: var(--primary-wood);
gap: 0.8rem;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2.5rem;
margin-top: 2rem;
}

.feature-item {
text-align: center;
padding: 2rem;
background: white;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: all 0.3s;
}

.feature-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-icon {
font-size: 3rem;
color: var(--secondary-oak);
margin-bottom: 1.2rem;
}

.feature-item h3 {
font-family: 'Playfair Display', serif;
color: var(--primary-wood);
font-size: 1.4rem;
margin-bottom: 1rem;
}

.page-header {
background: linear-gradient(135deg, var(--primary-wood), var(--accent-walnut));
padding: 4rem 0;
text-align: center;
color: white;
margin-bottom: 3rem;
}

.page-header h1 {
font-family: 'Playfair Display', serif;
font-size: 3rem;
margin-bottom: 1rem;
}

.blog-layout {
display: grid;
grid-template-columns: 1fr 350px;
gap: 3rem;
margin-top: 3rem;
}

.blog-posts {
display: flex;
flex-direction: column;
gap: 3rem;
}

.blog-post-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
display: grid;
grid-template-columns: 400px 1fr;
}

.post-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.post-body {
padding: 2rem;
}

.post-body h2 {
font-family: 'Playfair Display', serif;
font-size: 1.8rem;
margin-bottom: 1rem;
}

.post-body h2 a {
color: var(--primary-wood);
text-decoration: none;
transition: color 0.3s;
}

.post-body h2 a:hover {
color: var(--secondary-oak);
}

.post-summary {
background: var(--light-birch);
padding: 1.2rem;
border-radius: 8px;
margin: 1.5rem 0;
}

.post-summary h4 {
color: var(--primary-wood);
margin-bottom: 0.8rem;
}

.post-summary ul {
margin-left: 1.5rem;
}

.post-summary li {
margin-bottom: 0.5rem;
color: var(--text-charcoal);
}

.btn-read-more {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: var(--secondary-oak);
color: white;
padding: 0.8rem 1.8rem;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
margin-top: 1.5rem;
transition: all 0.3s;
}

.btn-read-more:hover {
background: var(--primary-wood);
gap: 0.8rem;
}

.blog-sidebar {
position: sticky;
top: 120px;
height: fit-content;
}

.sidebar-widget {
background: white;
padding: 1.8rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
margin-bottom: 2rem;
}

.sidebar-widget h3 {
font-family: 'Playfair Display', serif;
color: var(--primary-wood);
font-size: 1.4rem;
margin-bottom: 1.2rem;
padding-bottom: 0.8rem;
border-bottom: 2px solid var(--border-gray);
}

.category-list {
list-style: none;
}

.category-list li {
margin-bottom: 0.8rem;
}

.category-list a {
color: var(--text-charcoal);
text-decoration: none;
display: flex;
align-items: center;
gap: 0.8rem;
padding: 0.5rem;
border-radius: 6px;
transition: all 0.3s;
}

.category-list a:hover {
background: var(--light-birch);
color: var(--primary-wood);
}

.mini-post {
display: flex;
gap: 1rem;
margin-bottom: 1.2rem;
align-items: center;
}

.mini-post img {
border-radius: 6px;
}

.mini-post a {
color: var(--text-charcoal);
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}

.mini-post a:hover {
color: var(--secondary-oak);
}

.newsletter-form {
display: flex;
flex-direction: column;
gap: 1rem;
}

.newsletter-form input {
padding: 0.8rem;
border: 2px solid var(--border-gray);
border-radius: 6px;
font-size: 1rem;
}

.newsletter-form button {
background: var(--secondary-oak);
color: white;
padding: 0.8rem;
border: none;
border-radius: 6px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
}

.newsletter-form button:hover {
background: var(--primary-wood);
}

.about-story {
padding: 4rem 0;
}

.story-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.story-text h2 {
font-family: 'Playfair Display', serif;
color: var(--primary-wood);
font-size: 2.5rem;
margin-bottom: 1.5rem;
}

.story-text p {
margin-bottom: 1.5rem;
font-size: 1.1rem;
line-height: 1.8;
}

.story-image img {
width: 100%;
border-radius: 15px;
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.team-section {
padding: 4rem 0;
background: white;
}

.team-section h2 {
font-family: 'Playfair Display', serif;
color: var(--primary-wood);
font-size: 2.5rem;
text-align: center;
margin-bottom: 1rem;
}

.section-intro {
text-align: center;
font-size: 1.2rem;
color: #666;
margin-bottom: 3rem;
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 3rem;
margin-top: 2rem;
}

.team-member {
text-align: center;
padding: 2rem;
background: var(--background-cream);
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: all 0.3s;
}

.team-member:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.team-member img {
border-radius: 50%;
margin-bottom: 1.5rem;
border: 5px solid var(--secondary-oak);
width: 250px;
height: 250px;
object-fit: cover;
}

.team-member h3 {
font-family: 'Playfair Display', serif;
color: var(--primary-wood);
font-size: 1.5rem;
margin-bottom: 0.5rem;
}

.role {
color: var(--secondary-oak);
font-weight: 600;
margin-bottom: 1rem;
}

.bio {
color: var(--text-charcoal);
line-height: 1.6;
}

.values-section {
padding: 4rem 0;
}

.values-section h2 {
font-family: 'Playfair Display', serif;
color: var(--primary-wood);
font-size: 2.5rem;
text-align: center;
margin-bottom: 3rem;
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2.5rem;
}

.value-card {
background: white;
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
text-align: center;
transition: all 0.3s;
}

.value-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.value-icon {
font-size: 3rem;
color: var(--secondary-oak);
margin-bottom: 1.2rem;
}

.value-card h3 {
font-family: 'Playfair Display', serif;
color: var(--primary-wood);
font-size: 1.4rem;
margin-bottom: 1rem;
}

.contact-section {
padding: 4rem 0;
}

.contact-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
}

.contact-info h2 {
font-family: 'Playfair Display', serif;
color: var(--primary-wood);
font-size: 2rem;
margin-bottom: 1.5rem;
}

.info-block {
display: flex;
gap: 1.5rem;
margin: 2rem 0;
padding: 1.5rem;
background: white;
border-radius: 10px;
box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.info-icon {
font-size: 2rem;
color: var(--secondary-oak);
}

.info-text h3 {
color: var(--primary-wood);
font-size: 1.2rem;
margin-bottom: 0.5rem;
}

.small-text {
font-size: 0.9rem;
color: #888;
}

.registration-info {
background: var(--light-birch);
padding: 1.2rem;
border-radius: 8px;
margin-top: 2rem;
text-align: center;
font-weight: 600;
}

.contact-form-container {
background: white;
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
font-family: 'Playfair Display', serif;
color: var(--primary-wood);
font-size: 2rem;
margin-bottom: 2rem;
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
color: var(--text-charcoal);
font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 0.9rem;
border: 2px solid var(--border-gray);
border-radius: 8px;
font-size: 1rem;
font-family: 'Lato', sans-serif;
transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--secondary-oak);
}

.submit-btn {
background: linear-gradient(135deg, var(--secondary-oak), var(--primary-wood));
color: white;
padding: 1rem 2.5rem;
border: none;
border-radius: 8px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
display: flex;
align-items: center;
gap: 0.8rem;
}

.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(139,69,19,0.3);
}

.map-section {
padding: 4rem 0;
background: white;
}

.map-section h2 {
font-family: 'Playfair Display', serif;
color: var(--primary-wood);
font-size: 2.5rem;
text-align: center;
margin-bottom: 2rem;
}

.map-container {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.modal {
display: none;
position: fixed;
z-index: 10000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
}

.modal-content {
background-color: white;
margin: 10% auto;
padding: 3rem;
border-radius: 15px;
width: 90%;
max-width: 500px;
text-align: center;
box-shadow: 0 10px 40px rgba(0,0,0,0.3);
position: relative;
}

.modal-close {
position: absolute;
right: 1.5rem;
top: 1rem;
font-size: 2rem;
font-weight: bold;
color: #888;
cursor: pointer;
}

.modal-close:hover {
color: var(--primary-wood);
}

.modal-icon {
font-size: 4rem;
color: #4CAF50;
margin-bottom: 1.5rem;
}

.modal-content h2 {
font-family: 'Playfair Display', serif;
color: var(--primary-wood);
font-size: 2rem;
margin-bottom: 1rem;
}

.modal-btn {
background: var(--secondary-oak);
color: white;
padding: 0.8rem 2rem;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
margin-top: 1.5rem;
transition: all 0.3s;
}

.modal-btn:hover {
background: var(--primary-wood);
}

.post-single {
background: white;
}

.post-header-image img {
width: 100%;
max-height: 500px;
object-fit: cover;
}

.post-container {
max-width: 1280px;
margin: 0 auto;
padding: 3rem 2.5rem;
}

.breadcrumbs {
margin-bottom: 1.5rem;
color: #888;
font-size: 0.95rem;
}

.breadcrumbs a {
color: var(--secondary-oak);
text-decoration: none;
}

.breadcrumbs a:hover {
text-decoration: underline;
}

.post-heading h1 {
font-family: 'Playfair Display', serif;
color: var(--primary-wood);
font-size: 2.8rem;
margin-bottom: 1rem;
line-height: 1.3;
}

.post-metadata {
display: flex;
gap: 2rem;
color: #888;
font-size: 0.95rem;
margin-bottom: 2rem;
padding-bottom: 1.5rem;
border-bottom: 2px solid var(--border-gray);
}

.post-content-wrapper {
display: grid;
grid-template-columns: 1fr 320px;
gap: 3rem;
margin-top: 2rem;
}

.post-main-content {
font-size: 1.1rem;
line-height: 1.9;
}

.lead-paragraph {
font-size: 1.3rem;
color: var(--text-charcoal);
margin-bottom: 2rem;
font-weight: 300;
line-height: 1.8;
}

.post-main-content h2 {
font-family: 'Playfair Display', serif;
color: var(--primary-wood);
font-size: 2rem;
margin: 2.5rem 0 1.2rem;
}

.post-main-content h3 {
font-family: 'Playfair Display', serif;
color: var(--accent-walnut);
font-size: 1.5rem;
margin: 2rem 0 1rem;
}

.post-main-content p {
margin-bottom: 1.5rem;
}

.post-main-content ul,
.post-main-content ol {
margin: 1.5rem 0 1.5rem 2rem;
}

.post-main-content li {
margin-bottom: 0.8rem;
}

.post-main-content img {
width: 100%;
border-radius: 10px;
margin: 2rem 0;
box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.post-sidebar {
position: sticky;
top: 120px;
height: fit-content;
}

.related-posts {
list-style: none;
}

.related-posts li {
margin-bottom: 1rem;
}

.related-posts a {
color: var(--text-charcoal);
text-decoration: none;
transition: color 0.3s;
}

.related-posts a:hover {
color: var(--secondary-oak);
}

.tools-list {
list-style: none;
}

.tools-list li {
margin-bottom: 0.8rem;
color: var(--text-charcoal);
}

.tools-list i {
color: var(--secondary-oak);
margin-right: 0.5rem;
}

.tip-widget {
background: linear-gradient(135deg, var(--light-birch), #E8DCC4);
border-left: 4px solid var(--secondary-oak);
}

.post-navigation {
display: flex;
justify-content: space-between;
margin-top: 4rem;
padding-top: 2rem;
border-top: 2px solid var(--border-gray);
}

.nav-prev,
.nav-next {
padding: 1rem 2rem;
background: white;
border: 2px solid var(--border-gray);
border-radius: 8px;
text-decoration: none;
color: var(--primary-wood);
font-weight: 600;
transition: all 0.3s;
}

.nav-prev:hover,
.nav-next:hover {
background: var(--light-birch);
border-color: var(--secondary-oak);
}

.site-footer {
background: linear-gradient(135deg, var(--accent-walnut), var(--dark-mahogany));
color: var(--light-birch);
padding: 3rem 0 1.5rem;
margin-top: 4rem;
}

.footer-content {
max-width: 1280px;
margin: 0 auto;
padding: 0 2.5rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
}

.footer-section h4 {
font-family: 'Playfair Display', serif;
font-size: 1.3rem;
margin-bottom: 1.2rem;
color: var(--light-birch);
}

.footer-section p,
.footer-section li {
color: rgba(245, 222, 179, 0.85);
line-height: 1.8;
}

.footer-section ul {
list-style: none;
}

.footer-section a {
color: rgba(245, 222, 179, 0.85);
text-decoration: none;
transition: color 0.3s;
}

.footer-section a:hover {
color: var(--hover-copper);
}

.footer-section li {
margin-bottom: 0.6rem;
}

.registration {
font-size: 0.9rem;
margin-top: 1rem;
opacity: 0.8;
}

.footer-bottom {
text-align: center;
margin-top: 3rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(245, 222, 179, 0.3);
color: rgba(245, 222, 179, 0.7);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: white;
box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
padding: 1.8rem;
z-index: 9999;
display: none;
}

.cookie-content {
max-width: 1280px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 2rem;
flex-wrap: wrap;
}

.cookie-text h4 {
font-family: 'Playfair Display', serif;
color: var(--primary-wood);
font-size: 1.3rem;
margin-bottom: 0.5rem;
}

.cookie-text p {
color: var(--text-charcoal);
margin-bottom: 0.5rem;
}

.cookie-link {
color: var(--secondary-oak);
text-decoration: none;
font-weight: 600;
}

.cookie-link:hover {
text-decoration: underline;
}

.cookie-buttons {
display: flex;
gap: 1rem;
}

.cookie-btn {
padding: 0.8rem 1.5rem;
border: none;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
}

.cookie-btn.accept {
background: var(--secondary-oak);
color: white;
}

.cookie-btn.accept:hover {
background: var(--primary-wood);
}

.cookie-btn.customize {
background: var(--border-gray);
color: var(--text-charcoal);
}

.cookie-btn.customize:hover {
background: var(--light-birch);
}

.cookie-btn.decline {
background: transparent;
color: var(--text-charcoal);
border: 2px solid var(--border-gray);
}

.cookie-btn.decline:hover {
border-color: var(--text-charcoal);
}

@media (max-width: 968px) {
.header-container {
flex-direction: column;
gap: 1.5rem;
}

.primary-nav ul {
gap: 1rem;
}

.hero-section,
.story-content,
.contact-layout,
.blog-layout,
.post-content-wrapper {
grid-template-columns: 1fr;
}

.blog-post-card {
grid-template-columns: 1fr;
}

.post-heading h1 {
font-size: 2rem;
}

.hero-content h1 {
font-size: 2.2rem;
}

.cookie-content {
flex-direction: column;
align-items: stretch;
}

.cookie-buttons {
justify-content: center;
}
}

@media (max-width: 600px) {
.primary-nav ul {
flex-direction: column;
gap: 0.5rem;
}

.posts-grid,
.features-grid,
.values-grid,
.team-grid {
grid-template-columns: 1fr;
}
}