@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

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

:root {
--primary-color: #6B8E76;
--secondary-color: #D4A574;
--accent-color: #9B6B4F;
--text-dark: #2C3E50;
--text-light: #6C757D;
--bg-light: #F8F9FA;
--bg-white: #FFFFFF;
--border-color: #E0E0E0;
--shadow: 0 4px 12px rgba(0,0,0,0.08);
--shadow-hover: 0 6px 20px rgba(0,0,0,0.12);
}

body {
font-family: 'Montserrat', sans-serif;
line-height: 1.7;
color: var(--text-dark);
background-color: var(--bg-white);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Lora', serif;
font-weight: 600;
line-height: 1.3;
margin-bottom: 1rem;
color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

img {
max-width: 100%;
height: auto;
display: block;
}

.main-header {
background: var(--bg-white);
box-shadow: var(--shadow);
position: sticky;
top: 0;
z-index: 1000;
}

.navbar-primary {
padding: 1rem 0;
}

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

.brand-logo {
display: flex;
align-items: center;
gap: 1rem;
font-family: 'Lora', serif;
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
}

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

.nav-links {
display: flex;
gap: 2.5rem;
}

.nav-item {
font-weight: 500;
color: var(--text-dark);
position: relative;
padding: 0.5rem 0;
}

.nav-item:hover,
.nav-item.active {
color: var(--primary-color);
}

.nav-item::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--primary-color);
transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
width: 100%;
}

.hero-slider {
position: relative;
height: 600px;
overflow: hidden;
}

.slider-wrapper {
position: relative;
width: 100%;
height: 100%;
}

.slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 1s ease-in-out;
}

.slide.active-slide {
opacity: 1;
}

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

.slide-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: var(--bg-white);
z-index: 10;
width: 80%;
}

.hero-title {
font-size: 4rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
font-size: 1.5rem;
text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.slider-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255,255,255,0.8);
border: none;
font-size: 2rem;
padding: 1rem 1.5rem;
cursor: pointer;
z-index: 20;
transition: background 0.3s ease;
}

.slider-btn:hover {
background: rgba(255,255,255,1);
}

.prev-btn {
left: 2rem;
}

.next-btn {
right: 2rem;
}

.content-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

.section-heading {
text-align: center;
margin-bottom: 3rem;
color: var(--primary-color);
position: relative;
padding-bottom: 1rem;
}

.section-heading::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: var(--secondary-color);
}

.intro-section {
padding: 5rem 0;
background: var(--bg-light);
}

.intro-text {
font-size: 1.1rem;
line-height: 1.9;
text-align: center;
max-width: 900px;
margin: 0 auto;
color: var(--text-light);
}

.features-grid {
padding: 5rem 0;
background: var(--bg-white);
}

.features-grid .content-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 3rem;
}

.feature-card {
text-align: center;
padding: 2.5rem 1.5rem;
background: var(--bg-light);
border-radius: 12px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-hover);
}

.feature-icon {
font-size: 3.5rem;
margin-bottom: 1.5rem;
}

.feature-card h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.blog-preview {
padding: 5rem 0;
background: var(--bg-light);
}

.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}

.preview-card {
background: var(--bg-white);
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-hover);
}

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

.card-content {
padding: 2rem;
}

.card-content h3 {
margin-bottom: 1rem;
}

.card-content h3 a {
color: var(--text-dark);
}

.card-content h3 a:hover {
color: var(--primary-color);
}

.post-excerpt {
color: var(--text-light);
margin-bottom: 1.5rem;
}

.read-more {
color: var(--primary-color);
font-weight: 600;
display: inline-block;
}

.read-more:hover {
color: var(--accent-color);
}

.text-center {
text-align: center;
}

.btn-primary,
.btn-secondary {
display: inline-block;
padding: 1rem 2.5rem;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

.btn-primary {
background: var(--primary-color);
color: var(--bg-white);
}

.btn-primary:hover {
background: var(--accent-color);
transform: translateY(-3px);
box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
background: var(--accent-color);
transform: translateY(-3px);
box-shadow: var(--shadow-hover);
}

.wellness-philosophy {
padding: 5rem 0;
background: var(--bg-white);
}

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

.philosophy-text p {
margin-bottom: 1.5rem;
line-height: 1.9;
color: var(--text-light);
}

.philosophy-image img {
border-radius: 12px;
box-shadow: var(--shadow);
}

.cta-section {
padding: 5rem 0;
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
color: var(--bg-white);
text-align: center;
}

.cta-section h2 {
color: var(--bg-white);
margin-bottom: 1rem;
}

.cta-section p {
font-size: 1.2rem;
margin-bottom: 2rem;
}

.page-header {
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
padding: 6rem 0 4rem;
text-align: center;
color: var(--bg-white);
position: relative;
}

.header-overlay h1 {
color: var(--bg-white);
font-size: 3.5rem;
margin-bottom: 1rem;
}

.header-overlay p {
font-size: 1.3rem;
}

.main-content {
min-height: 60vh;
}

.blog-listing {
padding: 5rem 0;
}

.blog-post-card {
background: var(--bg-white);
border-radius: 12px;
overflow: hidden;
margin-bottom: 3rem;
box-shadow: var(--shadow);
display: grid;
grid-template-columns: 400px 1fr;
gap: 0;
}

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

.post-details {
padding: 2.5rem;
}

.post-meta {
color: var(--text-light);
font-size: 0.9rem;
margin-bottom: 1rem;
}

.post-summary {
color: var(--text-light);
line-height: 1.8;
margin-bottom: 1.5rem;
}

.btn-read-more {
display: inline-block;
padding: 0.75rem 2rem;
background: var(--primary-color);
color: var(--bg-white);
border-radius: 50px;
font-weight: 600;
transition: all 0.3s ease;
}

.btn-read-more:hover {
background: var(--accent-color);
transform: translateY(-2px);
}

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

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

.story-text p {
margin-bottom: 1.5rem;
line-height: 1.9;
color: var(--text-light);
}

.story-image img {
border-radius: 12px;
box-shadow: var(--shadow);
}

.team-section {
padding: 5rem 0;
background: var(--bg-light);
}

.section-intro {
text-align: center;
max-width: 800px;
margin: 0 auto 4rem;
color: var(--text-light);
font-size: 1.1rem;
}

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

.team-member-card {
background: var(--bg-white);
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow);
transition: transform 0.3s ease;
text-align: center;
}

.team-member-card:hover {
transform: translateY(-8px);
}

.team-member-card img {
width: 100%;
height: 400px;
object-fit: cover;
}

.team-member-card h3 {
padding: 1.5rem 1.5rem 0.5rem;
color: var(--primary-color);
}

.member-role {
color: var(--secondary-color);
font-weight: 600;
padding: 0 1.5rem;
margin-bottom: 1rem;
}

.member-bio {
padding: 0 1.5rem 2rem;
color: var(--text-light);
line-height: 1.7;
}

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

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

.value-item {
text-align: center;
padding: 2rem;
}

.value-item h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.value-item p {
color: var(--text-light);
line-height: 1.8;
}

.location-info {
padding: 5rem 0;
background: var(--bg-light);
}

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

.location-text p {
margin-bottom: 1.5rem;
line-height: 1.8;
color: var(--text-light);
}

.location-map img {
border-radius: 12px;
box-shadow: var(--shadow);
}

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

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

.contact-info h2 {
color: var(--primary-color);
margin-bottom: 2rem;
}

.contact-info > p {
color: var(--text-light);
line-height: 1.8;
margin-bottom: 2rem;
}

.info-block {
margin-bottom: 2rem;
}

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

.info-block p {
color: var(--text-light);
line-height: 1.7;
}

.contact-image {
margin-top: 2rem;
}

.contact-image img {
border-radius: 12px;
box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
color: var(--primary-color);
margin-bottom: 2rem;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

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

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

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

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

.btn-submit {
padding: 1rem 2rem;
background: var(--primary-color);
color: var(--bg-white);
border: none;
border-radius: 50px;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
}

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

.faq-section {
padding: 5rem 0;
background: var(--bg-light);
}

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

.faq-item {
background: var(--bg-white);
padding: 2rem;
border-radius: 12px;
box-shadow: var(--shadow);
}

.faq-item h3 {
color: var(--primary-color);
margin-bottom: 1rem;
font-size: 1.2rem;
}

.faq-item p {
color: var(--text-light);
line-height: 1.7;
}

.modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.7);
z-index: 10000;
justify-content: center;
align-items: center;
}

.modal-overlay.show {
display: flex;
}

.modal-content {
background: var(--bg-white);
padding: 3rem;
border-radius: 12px;
text-align: center;
max-width: 500px;
box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-content h2 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.modal-content p {
color: var(--text-light);
margin-bottom: 2rem;
}

.blog-post {
background: var(--bg-white);
}

.post-header {
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
padding: 4rem 0 3rem;
color: var(--bg-white);
}

.post-header h1 {
color: var(--bg-white);
font-size: 3rem;
margin-bottom: 1.5rem;
}

.post-meta {
display: flex;
gap: 2rem;
justify-content: center;
font-size: 0.95rem;
opacity: 0.9;
}

.post-content {
padding: 4rem 0;
}

.post-featured-image {
width: 100%;
max-width: 900px;
margin: 0 auto 3rem;
border-radius: 12px;
box-shadow: var(--shadow);
}

.post-content p {
margin-bottom: 1.5rem;
line-height: 1.9;
color: var(--text-light);
}

.post-content h2 {
margin-top: 3rem;
margin-bottom: 1.5rem;
color: var(--primary-color);
}

.post-content h3 {
margin-top: 2rem;
margin-bottom: 1rem;
color: var(--accent-color);
}

.post-navigation {
padding: 3rem 0;
border-top: 2px solid var(--border-color);
}

.back-to-blog {
display: inline-block;
padding: 0.75rem 2rem;
background: var(--primary-color);
color: var(--bg-white);
border-radius: 50px;
font-weight: 600;
transition: all 0.3s ease;
}

.back-to-blog:hover {
background: var(--accent-color);
transform: translateX(-5px);
}

.site-footer {
background: var(--text-dark);
color: var(--bg-light);
padding: 4rem 0 2rem;
}

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

.footer-column h4 {
color: var(--bg-white);
margin-bottom: 1.5rem;
}

.footer-column p {
color: var(--bg-light);
line-height: 1.8;
margin-bottom: 0.5rem;
}

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

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

.footer-links li {
margin-bottom: 0.75rem;
}

.footer-links a {
color: var(--bg-light);
transition: color 0.3s ease;
}

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

.footer-bottom {
max-width: 1400px;
margin: 0 auto;
padding: 2rem 2rem 0;
border-top: 1px solid rgba(255,255,255,0.1);
text-align: center;
color: var(--bg-light);
}

.cookie-consent {
display: none;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--bg-white);
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
z-index: 9999;
padding: 2rem;
}

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

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.cookie-content p {
color: var(--text-light);
line-height: 1.7;
margin-bottom: 1.5rem;
}

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

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

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

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

.cookie-btn.reject {
background: var(--border-color);
color: var(--text-dark);
}

.cookie-btn.reject:hover {
background: var(--text-light);
color: var(--bg-white);
}

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

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

.privacy-link {
color: var(--primary-color);
text-decoration: underline;
}

.privacy-link:hover {
color: var(--accent-color);
}

@media (max-width: 768px) {
.hero-title {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1.2rem;
}
.nav-links {
flex-direction: column;
gap: 1rem;
}
.philosophy-content,
.story-content,
.location-details,
.contact-grid,
.blog-post-card {
grid-template-columns: 1fr;
}
.slider-btn {
padding: 0.5rem 1rem;
font-size: 1.5rem;
}
.prev-btn {
left: 1rem;
}
.next-btn {
right: 1rem;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
.post-header h1 {
font-size: 2rem;
}
.post-meta {
flex-direction: column;
gap: 0.5rem;
}
}