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

:root {
--primary-color: #2c2c2c;
--secondary-color: #8b7355;
--accent-color: #c9a882;
--light-bg: #f8f6f3;
--white: #ffffff;
--text-dark: #333333;
--text-light: #666666;
--border-color: #e0e0e0;
--header-font: 'Playfair Display', serif;
--body-font: 'Lato', sans-serif;
}

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

body {
font-family: var(--body-font);
color: var(--text-dark);
line-height: 1.7;
background-color: var(--white);
}

.container-fluid {
max-width: 1400px;
margin: 0 auto;
padding: 0 40px;
}

.main-header {
background-color: var(--white);
border-bottom: 1px solid var(--border-color);
padding: 20px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-section {
display: flex;
align-items: center;
gap: 15px;
}

.logo-section img {
border-radius: 50%;
object-fit: cover;
}

.site-title {
font-family: var(--header-font);
font-size: 26px;
font-weight: 700;
color: var(--primary-color);
letter-spacing: 1px;
}

.primary-nav {
display: flex;
gap: 35px;
}

.nav-link {
font-size: 15px;
font-weight: 400;
color: var(--text-dark);
text-decoration: none;
letter-spacing: 0.5px;
transition: color 0.3s ease;
position: relative;
}

.nav-link:hover,
.nav-link.active {
color: var(--secondary-color);
}

.nav-link.active::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 2px;
background-color: var(--secondary-color);
}

.hero-banner {
background: linear-gradient(135deg, var(--light-bg) 0%, var(--accent-color) 100%);
padding: 120px 0;
text-align: center;
}

.hero-content h1 {
font-family: var(--header-font);
font-size: 56px;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 20px;
line-height: 1.2;
}

.hero-subtitle {
font-size: 20px;
color: var(--text-light);
margin-bottom: 35px;
font-weight: 300;
}

.cta-button {
display: inline-block;
background-color: var(--secondary-color);
color: var(--white);
padding: 16px 40px;
border-radius: 30px;
text-decoration: none;
font-weight: 600;
font-size: 16px;
letter-spacing: 0.5px;
transition: all 0.3s ease;
}

.cta-button:hover {
background-color: var(--primary-color);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.intro-section {
padding: 100px 0;
background-color: var(--white);
}

.content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.text-content h2 {
font-family: var(--header-font);
font-size: 42px;
color: var(--primary-color);
margin-bottom: 25px;
font-weight: 600;
}

.text-content p {
font-size: 17px;
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.8;
}

.image-content img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.features-section {
padding: 100px 0;
background-color: var(--light-bg);
}

.section-heading {
font-family: var(--header-font);
font-size: 44px;
color: var(--primary-color);
text-align: center;
margin-bottom: 60px;
font-weight: 600;
}

.features-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 35px;
}

.feature-card {
background-color: var(--white);
padding: 40px 30px;
border-radius: 8px;
text-align: center;
transition: all 0.3s ease;
border: 1px solid var(--border-color);
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
font-size: 48px;
color: var(--secondary-color);
margin-bottom: 20px;
}

.feature-card h3 {
font-family: var(--header-font);
font-size: 22px;
color: var(--primary-color);
margin-bottom: 15px;
font-weight: 600;
}

.feature-card p {
font-size: 15px;
color: var(--text-light);
line-height: 1.7;
}

.checklist-section {
padding: 100px 0;
background-color: var(--white);
}

.checklist-wrapper {
max-width: 1100px;
margin: 0 auto;
}

.checklist-intro {
text-align: center;
margin-bottom: 50px;
}

.checklist-intro p {
font-size: 18px;
color: var(--text-light);
}

.checklist-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
}

.checklist-column h3 {
font-family: var(--header-font);
font-size: 24px;
color: var(--primary-color);
margin-bottom: 25px;
font-weight: 600;
}

.checklist-item {
display: flex;
align-items: flex-start;
margin-bottom: 18px;
cursor: pointer;
position: relative;
padding-left: 35px;
}

.checkbox-input {
position: absolute;
opacity: 0;
cursor: pointer;
}

.checkmark {
position: absolute;
left: 0;
top: 2px;
height: 22px;
width: 22px;
border: 2px solid var(--secondary-color);
border-radius: 4px;
transition: all 0.3s ease;
}

.checklist-item:hover .checkmark {
border-color: var(--primary-color);
}

.checkbox-input:checked ~ .checkmark {
background-color: var(--secondary-color);
}

.checkmark:after {
content: "";
position: absolute;
display: none;
left: 6px;
top: 2px;
width: 6px;
height: 11px;
border: solid white;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}

.checkbox-input:checked ~ .checkmark:after {
display: block;
}

.item-text {
font-size: 16px;
color: var(--text-dark);
line-height: 1.5;
}

.poll-section {
padding: 100px 0;
background-color: var(--light-bg);
}

.poll-container {
max-width: 700px;
margin: 0 auto;
background-color: var(--white);
padding: 50px;
border-radius: 8px;
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.poll-question {
font-size: 18px;
color: var(--text-dark);
margin-bottom: 30px;
text-align: center;
}

.poll-form {
display: flex;
flex-direction: column;
gap: 18px;
}

.poll-option {
display: flex;
align-items: center;
padding: 18px 20px;
border: 2px solid var(--border-color);
border-radius: 6px;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
padding-left: 50px;
}

.poll-option:hover {
border-color: var(--secondary-color);
background-color: var(--light-bg);
}

.poll-option input[type="radio"] {
position: absolute;
opacity: 0;
}

.radio-custom {
position: absolute;
left: 18px;
top: 50%;
transform: translateY(-50%);
height: 22px;
width: 22px;
border: 2px solid var(--secondary-color);
border-radius: 50%;
transition: all 0.3s ease;
}

.radio-custom:after {
content: "";
position: absolute;
display: none;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--secondary-color);
}

.poll-option input[type="radio"]:checked ~ .radio-custom:after {
display: block;
}

.option-text {
font-size: 16px;
color: var(--text-dark);
}

.poll-submit {
margin-top: 20px;
padding: 16px 40px;
background-color: var(--secondary-color);
color: var(--white);
border: none;
border-radius: 30px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.poll-submit:hover {
background-color: var(--primary-color);
transform: translateY(-2px);
}

.poll-results {
text-align: center;
padding: 30px;
background-color: var(--light-bg);
border-radius: 6px;
margin-top: 20px;
}

.results-text {
font-size: 18px;
color: var(--secondary-color);
font-weight: 600;
}

.cta-section {
padding: 100px 0;
background-color: var(--secondary-color);
text-align: center;
color: var(--white);
}

.cta-section h2 {
font-family: var(--header-font);
font-size: 44px;
margin-bottom: 20px;
font-weight: 600;
}

.cta-section p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.9;
}

.cta-secondary {
display: inline-block;
background-color: var(--white);
color: var(--secondary-color);
padding: 16px 40px;
border-radius: 30px;
text-decoration: none;
font-weight: 600;
font-size: 16px;
transition: all 0.3s ease;
}

.cta-secondary:hover {
background-color: var(--primary-color);
color: var(--white);
transform: translateY(-2px);
}

.page-header {
background: linear-gradient(135deg, var(--light-bg) 0%, var(--accent-color) 100%);
padding: 80px 0;
text-align: center;
}

.page-header h1 {
font-family: var(--header-font);
font-size: 48px;
color: var(--primary-color);
margin-bottom: 15px;
font-weight: 700;
}

.subheading {
font-size: 20px;
color: var(--text-light);
font-weight: 300;
}

.blog-grid-section {
padding: 100px 0;
background-color: var(--white);
}

.posts-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 50px;
}

.post-card {
background-color: var(--white);
border: 1px solid var(--border-color);
border-radius: 8px;
overflow: hidden;
transition: all 0.3s ease;
}

.post-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

.post-content {
padding: 35px;
}

.post-category {
display: inline-block;
background-color: var(--light-bg);
color: var(--secondary-color);
padding: 6px 14px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 15px;
letter-spacing: 0.5px;
}

.post-content h2 {
font-family: var(--header-font);
font-size: 26px;
margin-bottom: 15px;
font-weight: 600;
}

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

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

.post-excerpt {
font-size: 16px;
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.7;
}

.post-meta {
display: flex;
gap: 20px;
font-size: 14px;
color: var(--text-light);
margin-bottom: 20px;
}

.post-meta span {
display: flex;
align-items: center;
gap: 6px;
}

.read-more {
color: var(--secondary-color);
text-decoration: none;
font-weight: 600;
font-size: 15px;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
}

.read-more:hover {
color: var(--primary-color);
gap: 12px;
}

.about-story {
padding: 100px 0;
background-color: var(--white);
}

.story-content {
flex: 1;
}

.story-content h2 {
font-family: var(--header-font);
font-size: 42px;
color: var(--primary-color);
margin-bottom: 25px;
font-weight: 600;
}

.story-content p {
font-size: 17px;
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.8;
}

.story-image {
flex: 1;
}

.story-image img {
width: 100%;
border-radius: 8px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.team-section {
padding: 100px 0;
background-color: var(--light-bg);
}

.team-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
}

.team-card {
background-color: var(--white);
border-radius: 8px;
overflow: hidden;
text-align: center;
transition: all 0.3s ease;
border: 1px solid var(--border-color);
}

.team-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.team-photo {
width: 100%;
height: 400px;
overflow: hidden;
}

.team-photo img {
width: 100%;
height: 100%;
object-fit: cover;
}

.team-card h3 {
font-family: var(--header-font);
font-size: 24px;
color: var(--primary-color);
margin: 25px 0 10px;
font-weight: 600;
}

.team-role {
font-size: 16px;
color: var(--secondary-color);
font-weight: 600;
margin-bottom: 15px;
}

.team-bio {
font-size: 15px;
color: var(--text-light);
line-height: 1.7;
padding: 0 25px 30px;
}

.values-section {
padding: 100px 0;
background-color: var(--white);
}

.values-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 35px;
}

.value-item {
text-align: center;
padding: 30px 20px;
}

.value-icon {
font-size: 50px;
color: var(--secondary-color);
margin-bottom: 20px;
}

.value-item h3 {
font-family: var(--header-font);
font-size: 22px;
color: var(--primary-color);
margin-bottom: 15px;
font-weight: 600;
}

.value-item p {
font-size: 15px;
color: var(--text-light);
line-height: 1.7;
}

.contact-section {
padding: 100px 0;
background-color: var(--white);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 60px;
}

.contact-info-side h2 {
font-family: var(--header-font);
font-size: 36px;
color: var(--primary-color);
margin-bottom: 20px;
font-weight: 600;
}

.contact-info-side p {
font-size: 17px;
color: var(--text-light);
margin-bottom: 30px;
line-height: 1.8;
}

.info-items {
display: flex;
flex-direction: column;
gap: 25px;
}

.info-item {
display: flex;
gap: 20px;
align-items: flex-start;
}

.info-item i {
font-size: 24px;
color: var(--secondary-color);
margin-top: 5px;
}

.info-item h4 {
font-family: var(--header-font);
font-size: 18px;
color: var(--primary-color);
margin-bottom: 8px;
font-weight: 600;
}

.info-item p {
font-size: 15px;
color: var(--text-light);
margin: 0;
}

.registration-info {
margin-top: 30px;
padding-top: 30px;
border-top: 1px solid var(--border-color);
}

.registration-info p {
font-size: 14px;
color: var(--text-light);
}

.contact-form-side h2 {
font-family: var(--header-font);
font-size: 36px;
color: var(--primary-color);
margin-bottom: 30px;
font-weight: 600;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 25px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
font-size: 15px;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 14px 18px;
border: 2px solid var(--border-color);
border-radius: 6px;
font-family: var(--body-font);
font-size: 15px;
color: var(--text-dark);
transition: all 0.3s ease;
}

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

.submit-btn {
padding: 16px 40px;
background-color: var(--secondary-color);
color: var(--white);
border: none;
border-radius: 30px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
align-self: flex-start;
}

.submit-btn:hover {
background-color: var(--primary-color);
transform: translateY(-2px);
}

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

.modal-content {
background-color: var(--white);
margin: 10% auto;
padding: 50px;
border-radius: 8px;
width: 90%;
max-width: 500px;
text-align: center;
position: relative;
}

.close-modal {
position: absolute;
right: 20px;
top: 20px;
font-size: 30px;
font-weight: bold;
color: var(--text-light);
cursor: pointer;
}

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

.modal-icon {
font-size: 70px;
color: var(--secondary-color);
margin-bottom: 20px;
}

.modal-content h2 {
font-family: var(--header-font);
font-size: 32px;
color: var(--primary-color);
margin-bottom: 15px;
font-weight: 600;
}

.modal-content p {
font-size: 17px;
color: var(--text-light);
margin-bottom: 30px;
}

.modal-btn {
padding: 14px 35px;
background-color: var(--secondary-color);
color: var(--white);
border: none;
border-radius: 30px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

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

.post-single {
background-color: var(--white);
}

.post-header-image {
width: 100%;
height: 500px;
overflow: hidden;
}

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

.post-container {
max-width: 900px;
margin: 0 auto;
padding: 60px 40px;
}

.post-header {
text-align: center;
margin-bottom: 50px;
}

.post-header h1 {
font-family: var(--header-font);
font-size: 44px;
color: var(--primary-color);
margin-bottom: 20px;
font-weight: 700;
line-height: 1.3;
}

.post-content {
font-size: 18px;
color: var(--text-dark);
line-height: 1.9;
}

.post-content h2 {
font-family: var(--header-font);
font-size: 32px;
color: var(--primary-color);
margin-top: 40px;
margin-bottom: 20px;
font-weight: 600;
}

.post-content p {
margin-bottom: 22px;
}

.post-footer {
margin-top: 50px;
padding-top: 30px;
border-top: 1px solid var(--border-color);
}

.post-tags {
display: flex;
gap: 12px;
flex-wrap: wrap;
}

.tag {
display: inline-block;
background-color: var(--light-bg);
color: var(--secondary-color);
padding: 8px 16px;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
}

.post-navigation {
display: flex;
justify-content: space-between;
margin-top: 50px;
padding-top: 30px;
border-top: 1px solid var(--border-color);
}

.post-navigation a {
color: var(--secondary-color);
text-decoration: none;
font-weight: 600;
font-size: 16px;
display: flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
}

.post-navigation a:hover {
color: var(--primary-color);
}

.site-footer {
background-color: var(--primary-color);
color: var(--white);
padding: 70px 0 30px;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
margin-bottom: 40px;
}

.footer-column h4 {
font-family: var(--header-font);
font-size: 20px;
margin-bottom: 20px;
font-weight: 600;
}

.footer-column p {
font-size: 15px;
line-height: 1.7;
color: rgba(255,255,255,0.8);
margin-bottom: 12px;
}

.registration {
font-size: 13px;
color: rgba(255,255,255,0.6);
margin-top: 15px;
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 12px;
}

.footer-links a {
color: rgba(255,255,255,0.8);
text-decoration: none;
font-size: 15px;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: var(--white);
}

.footer-column p i {
margin-right: 8px;
color: var(--accent-color);
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
font-size: 14px;
color: rgba(255,255,255,0.6);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: var(--primary-color);
color: var(--white);
padding: 25px;
box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
z-index: 9999;
display: none;
}

.cookie-banner.show {
display: block;
}

.cookie-content {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
}

.cookie-text h4 {
font-family: var(--header-font);
font-size: 20px;
margin-bottom: 10px;
font-weight: 600;
}

.cookie-text p {
font-size: 14px;
line-height: 1.6;
color: rgba(255,255,255,0.9);
}

.cookie-text a {
color: var(--accent-color);
text-decoration: underline;
}

.cookie-buttons {
display: flex;
gap: 15px;
flex-shrink: 0;
}

.cookie-btn {
padding: 12px 28px;
border: none;
border-radius: 25px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
background-color: var(--accent-color);
}

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

.cookie-btn.decline:hover {
background-color: rgba(255,255,255,0.1);
}

@media (max-width: 1024px) {
.container-fluid {
padding: 0 30px;
}

.content-grid,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.features-grid,
.values-grid {
grid-template-columns: repeat(2, 1fr);
}

.team-grid {
grid-template-columns: repeat(2, 1fr);
}

.posts-grid {
grid-template-columns: 1fr;
}

.checklist-container {
grid-template-columns: 1fr;
}

.footer-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.container-fluid {
padding: 0 20px;
}

.primary-nav {
flex-direction: column;
gap: 15px;
}

.hero-content h1 {
font-size: 38px;
}

.page-header h1 {
font-size: 36px;
}

.section-heading {
font-size: 34px;
}

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

.cookie-content {
flex-direction: column;
text-align: center;
}

.cookie-buttons {
width: 100%;
justify-content: center;
}

.post-header h1 {
font-size: 32px;
}

.post-content {
font-size: 16px;
}
}