/* ============================================
   IMPORT GLOBAL STYLES
   ============================================ */
/* This pulls in your main style.css so the navbar/footer match */
@import url('../style.css');

/* ============================================
   BLOG POST SPECIFIC STYLES
   ============================================ */

/* Blog Header Area */
.blog-post-header {
    padding: 160px 0 60px;
    background: var(--alpine-white);
    text-align: center;
    border-bottom: 1px solid var(--border-grey);
    position: relative;
}

.blog-back-link {
    display: inline-block;
    color: var(--hash-grey-medium);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-back-link:hover {
    color: var(--harvest-gold);
}

.blog-category-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--harvest-gold-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.blog-post-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--hash-grey);
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.blog-meta {
    color: var(--hash-grey-medium);
    font-size: 0.95rem;
    font-style: italic;
}

/* Blog Content Area */
.blog-post-content {
    padding: 80px 0;
    background: var(--pure-white);
}

.blog-post-content .container {
    max-width: 800px; /* Narrower width for better reading experience */
}

.blog-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--hash-grey);
    margin-bottom: 50px;
    font-weight: 400;
    border-left: 4px solid var(--harvest-gold);
    padding-left: 20px;
}

.blog-section {
    margin-bottom: 60px;
}

.blog-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--hash-grey);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.blog-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--harvest-gold);
}

.blog-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.blog-section strong {
    color: var(--hash-grey);
    font-weight: 700;
    font-size: 1.15rem;
}

/* Highlighted Quote Card */
.quote-card {
    background: linear-gradient(135deg, var(--hash-grey) 0%, #1a1a1a 100%);
    border-left: 5px solid var(--harvest-gold);
    border-radius: 10px;
    padding: 60px 40px;
    margin: 80px 0;
    position: relative;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: var(--harvest-gold);
    line-height: 1;
    position: absolute;
    top: -20px;
    left: 30px;
    opacity: 0.2;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--pure-white);
    font-style: italic;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Conclusion */
.blog-conclusion {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--hash-grey);
    text-align: center;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border-grey);
    font-family: 'Playfair Display', serif;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-post-header h1 {
        font-size: 2.5rem;
    }
    .quote-card {
        padding: 40px 20px;
    }
    .quote-text {
        font-size: 1.5rem;
    }
    .blog-intro {
        font-size: 1.1rem;
    }
}
/* Footer Logo Sizing & Layout Fix */
.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.footer-logo {
    max-width: 80px; /* Restricts image width */
    height: auto;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 1.5rem;
    white-space: nowrap; /* Keeps name from wrapping awkwardly */
}

/* Footer layout constraint */
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand-section {
    max-width: 280px; /* Prevents the section from pushing other links */
}