@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--off-white: #FAF7F2;
--light-beige: #E8DFD0;
--burgundy: #7D2E3B;
--dark-burgundy: #5A1F2A;
--warm-gray: #8B7E74;
--soft-cream: #F5EFE6;
}

body {
font-family: 'Lato', sans-serif;
line-height: 1.7;
color: #333;
background-color: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
color: var(--dark-burgundy);
margin-bottom: 1rem;
}

.main-header {
background-color: var(--soft-cream);
border-bottom: 2px solid var(--light-beige);
padding: 1.5rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-section {
display: flex;
align-items: center;
gap: 1rem;
}

.logo-img {
width: 55px;
height: 55px;
border-radius: 50%;
object-fit: cover;
border: 2px solid var(--burgundy);
}

.brand-name {
font-family: 'Playfair Display', serif;
font-size: 1.8rem;
font-weight: 700;
color: var(--burgundy);
letter-spacing: 1px;
}

.primary-nav ul {
display: flex;
list-style: none;
gap: 2.5rem;
}

.nav-links a {
text-decoration: none;
color: var(--warm-gray);
font-size: 1rem;
font-weight: 500;
transition: color 0.3s ease;
position: relative;
}

.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: var(--burgundy);
transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
color: var(--burgundy);
}

.hero-banner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
max-width: 1400px;
margin: 4rem auto;
padding: 0 2rem;
align-items: center;
}

.hero-content {
padding: 2rem;
}

.hero-title {
font-size: 3.5rem;
margin-bottom: 1.5rem;
line-height: 1.2;
color: var(--dark-burgundy);
}

.hero-subtitle {
font-size: 1.3rem;
color: var(--warm-gray);
margin-bottom: 2rem;
line-height: 1.6;
}

.cta-button {
display: inline-block;
padding: 1rem 2.5rem;
background-color: var(--burgundy);
color: white;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(125, 46, 59, 0.3);
}

.cta-button:hover {
background-color: var(--dark-burgundy);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(125, 46, 59, 0.4);
}

.hero-image img {
width: 100%;
height: 500px;
object-fit: cover;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-section,
.testimonials-block,
.newsletter-subscription,
.about-intro,
.team-section,
.values-section,
.blog-listing,
.contact-section {
max-width: 1400px;
margin: 5rem auto;
padding: 0 2rem;
}

.section-wrapper {
max-width: 1200px;
margin: 0 auto;
}

.section-heading {
font-size: 2.5rem;
text-align: center;
margin-bottom: 3rem;
color: var(--dark-burgundy);
}

.posts-grid,
.blog-grid,
.team-grid,
.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2.5rem;
}

.post-card,
.blog-post-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover,
.blog-post-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.post-image img,
.blog-post-image img {
width: 100%;
height: 250px;
object-fit: cover;
}

.post-content,
.blog-post-body {
padding: 2rem;
}

.post-content h3,
.blog-post-title {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--dark-burgundy);
}

.post-excerpt,
.blog-post-summary {
color: var(--warm-gray);
margin-bottom: 1.5rem;
line-height: 1.6;
}

.read-more,
.blog-read-more {
color: var(--burgundy);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: gap 0.3s ease;
}

.read-more:hover,
.blog-read-more:hover {
gap: 1rem;
}

.post-date {
color: var(--warm-gray);
font-size: 0.9rem;
margin-bottom: 1rem;
display: block;
}

.testimonials-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}

.testimonial-item {
background: white;
padding: 2rem;
border-radius: 10px;
border-left: 4px solid var(--burgundy);
box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.testimonial-text {
font-style: italic;
color: var(--warm-gray);
margin-bottom: 1rem;
line-height: 1.7;
}

.testimonial-author {
font-weight: 600;
color: var(--burgundy);
}

.newsletter-box {
background: linear-gradient(135deg, var(--burgundy), var(--dark-burgundy));
padding: 4rem 3rem;
border-radius: 15px;
text-align: center;
color: white;
box-shadow: 0 10px 40px rgba(125, 46, 59, 0.3);
}

.newsletter-title {
font-size: 2.2rem;
margin-bottom: 1rem;
color: white;
}

.newsletter-text {
font-size: 1.1rem;
margin-bottom: 2rem;
opacity: 0.95;
}

.subscription-form {
display: flex;
justify-content: center;
gap: 1rem;
max-width: 600px;
margin: 0 auto 1.5rem;
}

.email-input {
flex: 1;
padding: 1rem 1.5rem;
border: none;
border-radius: 50px;
font-size: 1rem;
}

.subscribe-btn {
padding: 1rem 2.5rem;
background-color: white;
color: var(--burgundy);
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.subscribe-btn:hover {
background-color: var(--soft-cream);
transform: scale(1.05);
}

.subscriber-count {
font-size: 1rem;
opacity: 0.9;
}

.page-header {
background: linear-gradient(135deg, var(--light-beige), var(--soft-cream));
padding: 5rem 2rem;
text-align: center;
margin-bottom: 3rem;
}

.page-header-content h1 {
font-size: 3rem;
margin-bottom: 1rem;
}

.page-header-content p {
font-size: 1.2rem;
color: var(--warm-gray);
}

.about-content-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 3rem;
align-items: center;
margin-bottom: 4rem;
}

.about-text h2 {
font-size: 2.2rem;
margin-bottom: 1.5rem;
}

.about-text p {
margin-bottom: 1.2rem;
line-height: 1.8;
color: #555;
}

.about-image img {
width: 100%;
height: 450px;
object-fit: cover;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.team-member-card {
background: white;
padding: 2rem;
border-radius: 12px;
text-align: center;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: transform 0.3s ease;
}

.team-member-card:hover {
transform: translateY(-5px);
}

.team-member-card img {
width: 100%;
max-width: 300px;
height: 300px;
object-fit: cover;
border-radius: 50%;
margin: 0 auto 1.5rem;
border: 5px solid var(--light-beige);
}

.member-role {
color: var(--burgundy);
font-weight: 600;
margin-bottom: 1rem;
}

.member-bio {
color: var(--warm-gray);
line-height: 1.6;
}

.value-item {
text-align: center;
padding: 2rem;
}

.value-item i {
font-size: 3rem;
color: var(--burgundy);
margin-bottom: 1rem;
}

.value-item h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}

.contact-layout {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 4rem;
}

.contact-info-block h2,
.contact-form-block h2 {
font-size: 2rem;
margin-bottom: 2rem;
}

.contact-detail {
display: flex;
gap: 1.5rem;
margin-bottom: 2rem;
}

.contact-detail i {
font-size: 1.5rem;
color: var(--burgundy);
margin-top: 0.3rem;
}

.contact-detail h3 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
}

.contact-detail p,
.contact-detail a {
color: var(--warm-gray);
text-decoration: none;
line-height: 1.6;
}

.contact-detail a:hover {
color: var(--burgundy);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
margin-bottom: 0.5rem;
font-weight: 600;
color: var(--dark-burgundy);
}

.form-group input,
.form-group textarea {
padding: 1rem;
border: 2px solid var(--light-beige);
border-radius: 8px;
font-size: 1rem;
font-family: 'Lato', sans-serif;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--burgundy);
}

.submit-btn {
padding: 1rem 2rem;
background-color: var(--burgundy);
color: white;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.submit-btn:hover {
background-color: var(--dark-burgundy);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(125, 46, 59, 0.3);
}

.map-section {
margin: 4rem auto;
max-width: 1400px;
padding: 0 2rem;
}

.map-container {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.post-article {
max-width: 900px;
margin: 3rem auto;
padding: 0 2rem;
}

.post-header {
margin-bottom: 2rem;
}

.post-header h1 {
font-size: 2.8rem;
line-height: 1.3;
margin-bottom: 1.5rem;
}

.post-meta {
display: flex;
gap: 2rem;
color: var(--warm-gray);
font-size: 0.95rem;
flex-wrap: wrap;
}

.post-meta span {
display: flex;
align-items: center;
gap: 0.5rem;
}

.post-featured-image {
margin-bottom: 3rem;
}

.post-featured-image img {
width: 100%;
height: 450px;
object-fit: cover;
border-radius: 12px;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.post-content {
font-size: 1.1rem;
line-height: 1.9;
color: #444;
}

.post-content h2 {
font-size: 2rem;
margin-top: 2.5rem;
margin-bottom: 1.2rem;
}

.post-content h3 {
font-size: 1.6rem;
margin-top: 2rem;
margin-bottom: 1rem;
}

.post-content p {
margin-bottom: 1.5rem;
}

.post-tags {
display: flex;
gap: 1rem;
margin: 3rem 0;
flex-wrap: wrap;
}

.tag {
background-color: var(--light-beige);
color: var(--burgundy);
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 500;
}

.post-navigation {
margin-top: 3rem;
padding-top: 2rem;
border-top: 2px solid var(--light-beige);
}

.back-to-blog {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--burgundy);
text-decoration: none;
font-weight: 600;
transition: gap 0.3s ease;
}

.back-to-blog:hover {
gap: 1rem;
}

.site-footer {
background-color: var(--dark-burgundy);
color: white;
padding: 4rem 2rem 2rem;
margin-top: 5rem;
}

.footer-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 2rem;
}

.footer-column h3 {
color: white;
margin-bottom: 1.5rem;
font-size: 1.3rem;
}

.footer-column p {
line-height: 1.8;
opacity: 0.9;
margin-bottom: 0.8rem;
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: white;
text-decoration: none;
opacity: 0.9;
transition: opacity 0.3s ease;
}

.footer-links a:hover {
opacity: 1;
text-decoration: underline;
}

.reg-number {
font-size: 0.9rem;
opacity: 0.8;
margin-top: 1rem;
}

.footer-bottom {
max-width: 1400px;
margin: 2rem auto 0;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.2);
text-align: center;
opacity: 0.8;
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: white;
box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
padding: 2rem;
z-index: 2000;
display: none;
}

.cookie-banner.show {
display: block;
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 2rem;
flex-wrap: wrap;
}

.cookie-text h3 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
color: var(--dark-burgundy);
}

.cookie-text p {
color: var(--warm-gray);
margin-bottom: 0.5rem;
}

.cookie-link {
color: var(--burgundy);
text-decoration: underline;
}

.cookie-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.cookie-btn {
padding: 0.8rem 1.5rem;
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.cookie-btn.accept {
background-color: var(--burgundy);
color: white;
}

.cookie-btn.accept:hover {
background-color: var(--dark-burgundy);
}

.cookie-btn.customize {
background-color: var(--light-beige);
color: var(--burgundy);
}

.cookie-btn.customize:hover {
background-color: var(--soft-cream);
}

.cookie-btn.decline {
background-color: var(--warm-gray);
color: white;
}

.cookie-btn.decline:hover {
background-color: #6B5E54;
}

.modal {
display: none;
position: fixed;
z-index: 3000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
}

.modal.show {
display: flex;
justify-content: center;
align-items: center;
}

.modal-content {
background-color: white;
padding: 3rem;
border-radius: 15px;
text-align: center;
max-width: 500px;
position: relative;
box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.close-modal {
position: absolute;
right: 1.5rem;
top: 1rem;
font-size: 2rem;
cursor: pointer;
color: var(--warm-gray);
}

.close-modal:hover {
color: var(--burgundy);
}

.modal-icon {
font-size: 4rem;
color: var(--burgundy);
margin-bottom: 1rem;
}

.modal-content h2 {
font-size: 2rem;
margin-bottom: 1rem;
color: var(--dark-burgundy);
}

.modal-content p {
color: var(--warm-gray);
line-height: 1.6;
}

@media (max-width: 968px) {
.hero-banner {
grid-template-columns: 1fr;
}

.hero-title {
font-size: 2.5rem;
}

.about-content-grid,
.contact-layout {
grid-template-columns: 1fr;
}

.primary-nav ul {
gap: 1.5rem;
}

.posts-grid,
.blog-grid,
.team-grid {
grid-template-columns: 1fr;
}

.subscription-form {
flex-direction: column;
}

.cookie-content {
flex-direction: column;
text-align: center;
}
}

@media (max-width: 600px) {
.header-container {
flex-direction: column;
gap: 1rem;
}

.primary-nav ul {
flex-direction: column;
gap: 1rem;
text-align: center;
}

.hero-title {
font-size: 2rem;
}

.section-heading {
font-size: 2rem;
}
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
