@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-burgundy: #6B0F1A;
    --deep-charcoal: #2B2B2B;
    --antique-gold: #D4AF37;
    --light-gold: #F4E4C1;
    --cream: #FAF6F0;
    --dark-burgundy: #4A0A12;
    --medium-grey: #4A4A4A;
    --light-grey: #E8E8E8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--deep-charcoal);
    background-color: var(--cream);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-burgundy);
}

.main-header {
    background: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--primary-burgundy) 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1400px;
    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-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--antique-gold);
    object-fit: cover;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--antique-gold);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--antique-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--antique-gold);
}

.content-wrapper {
    min-height: calc(100vh - 400px);
}

.hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(43, 43, 43, 0.75);
    padding: 4rem 3rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--antique-gold);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: var(--antique-gold);
    color: var(--deep-charcoal);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.container-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section-heading {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--primary-burgundy);
    position: relative;
    padding-bottom: 1rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--antique-gold);
}

.features-grid {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--cream), #FFFFFF);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--light-grey);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 15, 26, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--antique-gold);
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-burgundy);
}

.card-description {
    color: var(--medium-grey);
    line-height: 1.8;
}

.interview-section {
    padding: 6rem 0;
    background: var(--deep-charcoal);
    color: var(--cream);
}

.interview-section .section-heading {
    color: var(--antique-gold);
}

.interview-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.expert-profile {
    text-align: center;
}

.expert-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--antique-gold);
    margin-bottom: 1.5rem;
}

.expert-name {
    font-size: 1.8rem;
    color: var(--antique-gold);
    margin-bottom: 0.5rem;
}

.expert-title {
    font-size: 1.1rem;
    color: var(--light-gold);
    font-style: italic;
}

.interview-text {
    padding: 1rem;
}

.question {
    font-size: 1.2rem;
    color: var(--antique-gold);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.answer {
    color: var(--cream);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.latest-posts {
    padding: 6rem 0;
}

.posts-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.post-preview-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.post-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(107, 15, 26, 0.2);
}

.post-thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-burgundy);
}

.post-excerpt {
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.read-more {
    color: var(--antique-gold);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--primary-burgundy);
    gap: 1rem;
}

.testimonials-area {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
}

.testimonials-area .section-heading {
    color: var(--antique-gold);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.testimonial-text {
    color: var(--cream);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--antique-gold);
    font-weight: 700;
}

.page-hero {
    background: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--primary-burgundy) 100%);
    padding: 5rem 0;
    text-align: center;
}

.page-title {
    font-size: 3.2rem;
    color: var(--antique-gold);
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.3rem;
    color: var(--cream);
    font-weight: 300;
}

.blog-listing {
    padding: 6rem 0;
}

.blog-grid {
    display: grid;
    gap: 3rem;
}

.blog-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2.5rem;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(107, 15, 26, 0.15);
}

.blog-image-wrapper {
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-date {
    color: var(--antique-gold);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.blog-title {
    font-size: 1.8rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--medium-grey);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--antique-gold);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more:hover {
    color: var(--primary-burgundy);
    gap: 1rem;
}

.about-story {
    padding: 6rem 0;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--medium-grey);
    margin-bottom: 1.8rem;
}

.team-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #FFFFFF, var(--cream));
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 15, 26, 0.15);
}

.team-photo {
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid var(--antique-gold);
    object-fit: cover;
}

.member-name {
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.member-position {
    color: var(--antique-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--medium-grey);
    line-height: 1.8;
}

.values-section {
    padding: 6rem 0;
    background: var(--deep-charcoal);
}

.values-section .section-heading {
    color: var(--antique-gold);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.value-icon {
    font-size: 3rem;
    color: var(--antique-gold);
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.5rem;
    color: var(--antique-gold);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--cream);
    line-height: 1.8;
}

.contact-section {
    padding: 6rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    background: linear-gradient(135deg, var(--deep-charcoal), var(--primary-burgundy));
    padding: 3rem;
    border-radius: 12px;
    color: var(--cream);
}

.contact-info .section-heading {
    color: var(--antique-gold);
    text-align: left;
}

.info-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 1.8rem;
    color: var(--antique-gold);
    margin-top: 0.3rem;
}

.info-title {
    color: var(--antique-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-text {
    color: var(--cream);
    line-height: 1.8;
}

.info-text a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--antique-gold);
}

.contact-form-wrapper {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form .section-heading {
    text-align: left;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-charcoal);
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-grey);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--antique-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submit-btn {
    background: var(--antique-gold);
    color: var(--deep-charcoal);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.map-section {
    padding: 6rem 0;
    background: var(--cream);
}

.map-container {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.post-article {
    background: #FFFFFF;
}

.post-header-section {
    background: linear-gradient(135deg, var(--deep-charcoal), var(--primary-burgundy));
    padding: 4rem 0;
}

.post-main-title {
    font-size: 3rem;
    color: var(--antique-gold);
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 2rem;
    color: var(--cream);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-featured-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content-section {
    padding: 5rem 0;
}

.post-text {
    max-width: 900px;
    margin: 0 auto;
}

.post-text h2 {
    font-size: 2rem;
    color: var(--primary-burgundy);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-text p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
}

.post-navigation {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-grey);
}

.back-to-blog {
    color: var(--antique-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-to-blog:hover {
    color: var(--primary-burgundy);
    gap: 1rem;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-icon {
    font-size: 4rem;
    color: var(--antique-gold);
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 2rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.modal-text {
    color: var(--medium-grey);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.modal-button {
    background: var(--antique-gold);
    color: var(--deep-charcoal);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.main-footer {
    background: linear-gradient(135deg, var(--deep-charcoal), var(--primary-burgundy));
    color: var(--cream);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-heading {
    color: var(--antique-gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.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;
}

.footer-links a:hover {
    color: var(--antique-gold);
    padding-left: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--light-gold);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--deep-charcoal), var(--primary-burgundy));
    padding: 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1500;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-title {
    color: var(--antique-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-text {
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background: var(--antique-gold);
    color: var(--deep-charcoal);
}

.accept-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.customize-btn {
    background: transparent;
    color: var(--antique-gold);
    border: 2px solid var(--antique-gold);
}

.customize-btn:hover {
    background: var(--antique-gold);
    color: var(--deep-charcoal);
}

.decline-btn {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
}

.decline-btn:hover {
    background: var(--cream);
    color: var(--deep-charcoal);
}

.cookie-link {
    color: var(--antique-gold);
    text-decoration: none;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .main-navigation .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .interview-content {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .post-main-title {
        font-size: 2rem;
    }
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
