@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
--dark-plum: #3d1a3d;
--warm-black: #1a1a1a;
--rose-gold: #b76e79;
--light-rose: #d4a5a5;
--cream: #f5f0e8;
--gold-accent: #c9a66b;
--deep-purple: #2d1b2e;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Montserrat', sans-serif;
background-color: var(--warm-black);
color: var(--cream);
line-height: 1.7;
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
font-weight: 700;
line-height: 1.3;
color: var(--rose-gold);
}

.main-navigation {
background: linear-gradient(135deg, var(--dark-plum), var(--deep-purple));
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 20px rgba(183, 110, 121, 0.3);
}

.nav-container {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 2rem;
}

.site-logo {
height: 60px;
width: auto;
border-radius: 8px;
transition: transform 0.3s ease;
}

.site-logo:hover {
transform: scale(1.05);
}

.nav-menu {
display: flex;
list-style: none;
gap: 2.5rem;
}

.nav-link {
color: var(--cream);
text-decoration: none;
font-weight: 500;
font-size: 1rem;
transition: all 0.3s ease;
padding: 0.5rem 1rem;
border-radius: 25px;
display: flex;
align-items: center;
gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
background-color: var(--rose-gold);
color: var(--warm-black);
transform: translateY(-2px);
}

.hero-section {
position: relative;
height: 85vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.hero-image {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(61, 26, 61, 0.85), rgba(45, 27, 46, 0.75));
z-index: 2;
}

.hero-content {
position: relative;
z-index: 3;
text-align: center;
max-width: 900px;
padding: 2rem;
animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.hero-title {
font-size: 4rem;
margin-bottom: 1.5rem;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
color: var(--rose-gold);
letter-spacing: 2px;
}

.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 2.5rem;
color: var(--light-rose);
font-weight: 300;
}

.cta-button {
display: inline-block;
background: linear-gradient(135deg, var(--rose-gold), var(--gold-accent));
color: var(--warm-black);
padding: 1rem 3rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 8px 25px rgba(183, 110, 121, 0.4);
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(183, 110, 121, 0.6);
}

.main-content {
max-width: 1400px;
margin: 0 auto;
padding: 4rem 2rem;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

.section-title {
font-size: 2.8rem;
text-align: center;
margin-bottom: 3rem;
color: var(--rose-gold);
position: relative;
padding-bottom: 1rem;
}

.section-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 120px;
height: 4px;
background: linear-gradient(90deg, var(--rose-gold), var(--gold-accent));
border-radius: 2px;
}

.intro-section {
padding: 4rem 0;
text-align: center;
}

.intro-text {
font-size: 1.2rem;
max-width: 900px;
margin: 0 auto;
color: var(--light-rose);
line-height: 1.9;
}

.features-section {
padding: 5rem 0;
background: linear-gradient(180deg, rgba(61, 26, 61, 0.2), rgba(45, 27, 46, 0.2));
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 3rem;
margin-top: 3rem;
}

.feature-card {
background: linear-gradient(135deg, var(--deep-purple), var(--dark-plum));
padding: 2.5rem;
border-radius: 20px;
text-align: center;
transition: all 0.4s ease;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
border: 2px solid transparent;
}

.feature-card:hover {
transform: translateY(-10px);
border-color: var(--rose-gold);
box-shadow: 0 15px 45px rgba(183, 110, 121, 0.4);
}

.feature-icon {
font-size: 3.5rem;
color: var(--rose-gold);
margin-bottom: 1.5rem;
}

.feature-img {
width: 100%;
height: 250px;
object-fit: cover;
border-radius: 15px;
margin-bottom: 1.5rem;
}

.feature-title {
font-size: 1.8rem;
margin-bottom: 1rem;
color: var(--rose-gold);
}

.feature-description {
color: var(--cream);
font-size: 1rem;
line-height: 1.7;
}

.services-section {
padding: 5rem 0;
}

.services-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.service-item {
text-align: center;
padding: 2rem;
background: rgba(61, 26, 61, 0.3);
border-radius: 15px;
transition: all 0.3s ease;
}

.service-item:hover {
background: rgba(183, 110, 121, 0.2);
transform: scale(1.05);
}

.service-icon {
font-size: 3rem;
color: var(--gold-accent);
margin-bottom: 1rem;
}

.service-item h3 {
font-size: 1.5rem;
margin-bottom: 0.8rem;
color: var(--rose-gold);
}

.service-item p {
color: var(--cream);
}

.testimonials-section {
padding: 5rem 0;
background: linear-gradient(180deg, rgba(45, 27, 46, 0.3), rgba(61, 26, 61, 0.3));
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.testimonial-card {
background: var(--deep-purple);
padding: 2.5rem;
border-radius: 15px;
border-left: 5px solid var(--rose-gold);
transition: all 0.3s ease;
}

.testimonial-card:hover {
transform: translateX(10px);
box-shadow: 0 10px 30px rgba(183, 110, 121, 0.3);
}

.testimonial-text {
font-style: italic;
margin-bottom: 1.5rem;
color: var(--cream);
line-height: 1.8;
}

.testimonial-author {
color: var(--rose-gold);
font-weight: 600;
margin-bottom: 0.5rem;
}

.rating {
color: var(--gold-accent);
font-size: 1.2rem;
}

.cta-section {
padding: 5rem 0;
text-align: center;
background: linear-gradient(135deg, var(--dark-plum), var(--deep-purple));
margin: 3rem 0;
border-radius: 20px;
}

.cta-section h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--rose-gold);
}

.cta-section p {
font-size: 1.2rem;
margin-bottom: 2rem;
color: var(--light-rose);
}

.cta-button-secondary {
display: inline-block;
background: transparent;
color: var(--rose-gold);
padding: 1rem 3rem;
border: 2px solid var(--rose-gold);
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
}

.cta-button-secondary:hover {
background: var(--rose-gold);
color: var(--warm-black);
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(183, 110, 121, 0.4);
}

.site-footer {
background: linear-gradient(135deg, var(--deep-purple), var(--dark-plum));
padding: 4rem 2rem 2rem;
margin-top: 4rem;
border-top: 3px solid var(--rose-gold);
}

.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-section h3 {
color: var(--rose-gold);
margin-bottom: 1.5rem;
font-size: 1.4rem;
}

.footer-section p {
color: var(--cream);
margin-bottom: 0.8rem;
line-height: 1.6;
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: var(--cream);
text-decoration: none;
transition: all 0.3s ease;
display: inline-block;
}

.footer-links a:hover {
color: var(--rose-gold);
transform: translateX(5px);
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(183, 110, 121, 0.3);
color: var(--light-rose);
}

.current-datetime {
font-size: 0.95rem;
color: var(--light-rose);
margin-top: 1rem;
font-style: italic;
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(135deg, var(--deep-purple), var(--dark-plum));
padding: 2rem;
box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
z-index: 9999;
transform: translateY(100%);
transition: transform 0.4s ease;
border-top: 3px solid var(--rose-gold);
}

.cookie-banner.show {
transform: translateY(0);
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content h3 {
color: var(--rose-gold);
margin-bottom: 1rem;
font-size: 1.5rem;
}

.cookie-content p {
color: var(--cream);
margin-bottom: 1rem;
line-height: 1.6;
}

.cookie-link {
color: var(--gold-accent);
text-decoration: underline;
}

.cookie-buttons {
display: flex;
gap: 1rem;
margin-top: 1.5rem;
flex-wrap: wrap;
}

.cookie-btn {
padding: 0.8rem 2rem;
border: none;
border-radius: 25px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-size: 1rem;
}

.cookie-btn.accept {
background: linear-gradient(135deg, var(--rose-gold), var(--gold-accent));
color: var(--warm-black);
}

.cookie-btn.accept:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(183, 110, 121, 0.4);
}

.cookie-btn.reject {
background: transparent;
color: var(--cream);
border: 2px solid var(--cream);
}

.cookie-btn.reject:hover {
background: rgba(255, 255, 255, 0.1);
}

.page-header {
position: relative;
height: 50vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.header-image {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}

.header-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(61, 26, 61, 0.85), rgba(45, 27, 46, 0.75));
z-index: 2;
}

.header-content {
position: relative;
z-index: 3;
text-align: center;
padding: 2rem;
}

.header-content h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
color: var(--rose-gold);
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.header-content p {
font-size: 1.3rem;
color: var(--light-rose);
}

.blog-main {
padding: 4rem 0;
}

.blog-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
}

.blog-main-title {
font-size: 2.5rem;
text-align: center;
margin-bottom: 3rem;
color: var(--rose-gold);
}

.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 3rem;
}

.blog-post-card {
background: linear-gradient(135deg, var(--deep-purple), var(--dark-plum));
border-radius: 15px;
overflow: hidden;
transition: all 0.4s ease;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-post-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 45px rgba(183, 110, 121, 0.4);
}

.post-link {
text-decoration: none;
color: inherit;
display: block;
}

.post-image-wrapper {
overflow: hidden;
height: 250px;
}

.post-thumbnail {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}

.blog-post-card:hover .post-thumbnail {
transform: scale(1.1);
}

.post-content {
padding: 2rem;
}

.post-title {
font-size: 1.6rem;
margin-bottom: 1rem;
color: var(--rose-gold);
}

.post-meta {
color: var(--light-rose);
font-size: 0.9rem;
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
}

.post-excerpt {
color: var(--cream);
line-height: 1.7;
margin-bottom: 1.5rem;
}

.read-more {
color: var(--gold-accent);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: gap 0.3s ease;
}

.blog-post-card:hover .read-more {
gap: 1rem;
}

.about-main {
padding: 4rem 0;
}

.about-story {
padding: 4rem 0;
}

.story-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.story-image {
width: 100%;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.story-text p {
margin-bottom: 1.5rem;
color: var(--cream);
line-height: 1.8;
font-size: 1.05rem;
}

.values-section {
padding: 5rem 0;
background: linear-gradient(180deg, rgba(61, 26, 61, 0.2), rgba(45, 27, 46, 0.2));
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.value-card {
text-align: center;
padding: 2rem;
background: rgba(61, 26, 61, 0.3);
border-radius: 15px;
transition: all 0.3s ease;
}

.value-card:hover {
background: rgba(183, 110, 121, 0.2);
transform: translateY(-5px);
}

.value-icon {
font-size: 3rem;
color: var(--rose-gold);
margin-bottom: 1rem;
}

.value-card h3 {
color: var(--rose-gold);
margin-bottom: 1rem;
font-size: 1.5rem;
}

.value-card p {
color: var(--cream);
}

.team-section {
padding: 5rem 0;
}

.team-intro {
text-align: center;
max-width: 800px;
margin: 0 auto 3rem;
color: var(--light-rose);
font-size: 1.1rem;
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
margin-top: 3rem;
}

.team-member {
background: linear-gradient(135deg, var(--deep-purple), var(--dark-plum));
padding: 2rem;
border-radius: 15px;
text-align: center;
transition: all 0.4s ease;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-member:hover {
transform: translateY(-10px);
box-shadow: 0 15px 45px rgba(183, 110, 121, 0.4);
}

.team-photo {
width: 100%;
height: 400px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 1.5rem;
}

.team-member h3 {
color: var(--rose-gold);
font-size: 1.6rem;
margin-bottom: 0.5rem;
}

.team-role {
color: var(--gold-accent);
font-weight: 600;
margin-bottom: 1rem;
font-size: 1.1rem;
}

.team-bio {
color: var(--cream);
line-height: 1.7;
}

.why-choose-section {
padding: 5rem 0;
background: linear-gradient(180deg, rgba(45, 27, 46, 0.3), rgba(61, 26, 61, 0.3));
}

.reasons-list {
max-width: 900px;
margin: 3rem auto 0;
}

.reason-item {
display: flex;
gap: 1.5rem;
margin-bottom: 2.5rem;
padding: 1.5rem;
background: rgba(61, 26, 61, 0.3);
border-radius: 10px;
transition: all 0.3s ease;
}

.reason-item:hover {
background: rgba(183, 110, 121, 0.2);
transform: translateX(10px);
}

.reason-icon {
font-size: 2rem;
color: var(--rose-gold);
flex-shrink: 0;
}

.reason-item h3 {
color: var(--rose-gold);
margin-bottom: 0.5rem;
font-size: 1.3rem;
}

.reason-item p {
color: var(--cream);
line-height: 1.7;
}

.contact-main {
padding: 4rem 0;
}

.contact-intro {
padding: 3rem 0;
text-align: center;
}

.contact-intro-text {
max-width: 800px;
margin: 0 auto;
color: var(--light-rose);
font-size: 1.1rem;
line-height: 1.8;
}

.contact-content {
padding: 4rem 0;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 4rem;
}

.contact-info-section h3 {
color: var(--rose-gold);
font-size: 2rem;
margin-bottom: 2rem;
}

.info-block {
display: flex;
gap: 1.5rem;
margin-bottom: 2rem;
padding: 1.5rem;
background: rgba(61, 26, 61, 0.3);
border-radius: 10px;
transition: all 0.3s ease;
}

.info-block:hover {
background: rgba(183, 110, 121, 0.2);
}

.info-icon {
font-size: 1.8rem;
color: var(--rose-gold);
flex-shrink: 0;
}

.info-block h4 {
color: var(--gold-accent);
margin-bottom: 0.5rem;
font-size: 1.2rem;
}

.info-block p,
.info-block a {
color: var(--cream);
text-decoration: none;
line-height: 1.6;
}

.info-block a:hover {
color: var(--rose-gold);
}

.contact-form-section h3 {
color: var(--rose-gold);
font-size: 2rem;
margin-bottom: 2rem;
}

.contact-form {
background: linear-gradient(135deg, var(--deep-purple), var(--dark-plum));
padding: 2.5rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
color: var(--rose-gold);
margin-bottom: 0.5rem;
font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 1rem;
border: 2px solid rgba(183, 110, 121, 0.3);
background: rgba(26, 26, 26, 0.5);
color: var(--cream);
border-radius: 8px;
font-family: 'Montserrat', sans-serif;
font-size: 1rem;
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--rose-gold);
background: rgba(26, 26, 26, 0.7);
}

.submit-btn {
background: linear-gradient(135deg, var(--rose-gold), var(--gold-accent));
color: var(--warm-black);
padding: 1rem 3rem;
border: none;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

.submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(183, 110, 121, 0.4);
}

.faq-section {
padding: 5rem 0;
background: linear-gradient(180deg, rgba(61, 26, 61, 0.2), rgba(45, 27, 46, 0.2));
}

.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
}

.faq-item {
background: rgba(61, 26, 61, 0.3);
padding: 2rem;
border-radius: 10px;
transition: all 0.3s ease;
}

.faq-item:hover {
background: rgba(183, 110, 121, 0.2);
transform: translateY(-5px);
}

.faq-item h3 {
color: var(--rose-gold);
margin-bottom: 1rem;
font-size: 1.3rem;
display: flex;
align-items: center;
gap: 0.8rem;
}

.faq-item p {
color: var(--cream);
line-height: 1.7;
}

.modal {
display: none;
position: fixed;
z-index: 10000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
}

.modal.show {
display: flex;
align-items: center;
justify-content: center;
}

.modal-content {
background: linear-gradient(135deg, var(--deep-purple), var(--dark-plum));
padding: 3rem;
border-radius: 20px;
max-width: 500px;
text-align: center;
position: relative;
box-shadow: 0 20px 60px rgba(183, 110, 121, 0.5);
animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
from {
opacity: 0;
transform: scale(0.8);
}
to {
opacity: 1;
transform: scale(1);
}
}

.modal-close {
position: absolute;
top: 1rem;
right: 1.5rem;
font-size: 2rem;
color: var(--rose-gold);
cursor: pointer;
transition: all 0.3s ease;
}

.modal-close:hover {
transform: rotate(90deg);
color: var(--gold-accent);
}

.modal-icon {
font-size: 4rem;
color: var(--rose-gold);
margin-bottom: 1.5rem;
}

.modal-content h2 {
color: var(--rose-gold);
margin-bottom: 1rem;
font-size: 2rem;
}

.modal-content p {
color: var(--cream);
margin-bottom: 2rem;
line-height: 1.7;
}

.modal-btn {
background: linear-gradient(135deg, var(--rose-gold), var(--gold-accent));
color: var(--warm-black);
padding: 1rem 2.5rem;
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
font-size: 1rem;
transition: all 0.3s ease;
}

.modal-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(183, 110, 121, 0.4);
}

.post-article {
max-width: 1400px;
margin: 0 auto;
}

.post-header {
position: relative;
height: 60vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.post-header-image {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}

.post-header-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(61, 26, 61, 0.9), rgba(45, 27, 46, 0.85));
z-index: 2;
}

.post-header-content {
position: relative;
z-index: 3;
text-align: center;
padding: 2rem;
max-width: 900px;
}

.post-header-content h1 {
font-size: 3rem;
margin-bottom: 1.5rem;
color: var(--rose-gold);
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.post-meta-info {
display: flex;
justify-content: center;
gap: 2rem;
color: var(--light-rose);
font-size: 1rem;
}

.post-meta-info span {
display: flex;
align-items: center;
gap: 0.5rem;
}

.post-content-wrapper {
display: grid;
grid-template-columns: 2.5fr 1fr;
gap: 4rem;
max-width: 1400px;
margin: 0 auto;
padding: 4rem 2rem;
}

.post-content {
color: var(--cream);
line-height: 1.9;
}

.lead-paragraph {
font-size: 1.3rem;
color: var(--light-rose);
margin-bottom: 2rem;
font-weight: 300;
line-height: 2;
}

.post-content h2 {
font-size: 2.2rem;
color: var(--rose-gold);
margin-top: 3rem;
margin-bottom: 1.5rem;
}

.post-content h3 {
font-size: 1.8rem;
color: var(--gold-accent);
margin-top: 2.5rem;
margin-bottom: 1rem;
}

.post-content p {
margin-bottom: 1.5rem;
font-size: 1.05rem;
}

.post-cta {
background: linear-gradient(135deg, var(--deep-purple), var(--dark-plum));
padding: 3rem;
border-radius: 15px;
text-align: center;
margin-top: 3rem;
border: 2px solid var(--rose-gold);
}

.post-cta h3 {
color: var(--rose-gold);
font-size: 2rem;
margin-bottom: 1rem;
}

.post-cta p {
color: var(--cream);
margin-bottom: 2rem;
}

.post-sidebar {
position: sticky;
top: 100px;
height: fit-content;
}

.sidebar-widget {
background: linear-gradient(135deg, var(--deep-purple), var(--dark-plum));
padding: 2rem;
border-radius: 15px;
margin-bottom: 2rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sidebar-widget h3 {
color: var(--rose-gold);
margin-bottom: 1.5rem;
font-size: 1.5rem;
}

.recent-posts,
.categories {
list-style: none;
}

.recent-posts li,
.categories li {
margin-bottom: 1rem;
}

.recent-posts a,
.categories a {
color: var(--cream);
text-decoration: none;
transition: all 0.3s ease;
display: block;
padding: 0.5rem;
border-radius: 5px;
}

.recent-posts a:hover,
.categories a:hover {
color: var(--rose-gold);
background: rgba(183, 110, 121, 0.1);
transform: translateX(5px);
}

@media (max-width: 1024px) {
.post-content-wrapper {
grid-template-columns: 1fr;
}

.post-sidebar {
position: static;
}

.story-content {
grid-template-columns: 1fr;
}

.contact-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.hero-title {
font-size: 2.5rem;
}

.hero-subtitle {
font-size: 1.2rem;
}

.nav-menu {
flex-direction: column;
gap: 1rem;
}

.features-grid,
.blog-grid {
grid-template-columns: 1fr;
}

.section-title {
font-size: 2rem;
}

.header-content h1 {
font-size: 2.5rem;
}

.post-header-content h1 {
font-size: 2rem;
}

.team-grid {
grid-template-columns: 1fr;
}
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
