/* Page-Specific Styles */

/* Who We Are Section */
.who-we-are-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.who-we-are-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Contact Section */
#contact {
    background: linear-gradient(to bottom, var(--off-white) 0%, var(--white) 100%);
}

/* Blog Article Styles */
article.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

article.blog-post header {
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: 2rem;
}

article.blog-post h1 {
    font-size: 2.5rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.blog-post-meta time {
    color: var(--forest-green);
    font-weight: 600;
}

.blog-post-meta .author {
    color: var(--dark-grey);
}

.blog-post-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

article.blog-post .content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-grey);
}

article.blog-post .content h2 {
    font-size: 2rem;
    color: var(--deep-green);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

article.blog-post .content h3 {
    font-size: 1.5rem;
    color: var(--forest-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

article.blog-post .content p {
    margin-bottom: 1.5rem;
}

article.blog-post .content ul,
article.blog-post .content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

article.blog-post .content li {
    margin-bottom: 0.75rem;
}

article.blog-post .content blockquote {
    border-left: 4px solid var(--golden-yellow);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--dark-grey);
}

article.blog-post .content code {
    background: var(--off-white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
}

article.blog-post .content pre {
    background: var(--charcoal);
    color: var(--light-grey);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}

article.blog-post .content pre code {
    background: none;
    padding: 0;
    color: var(--light-grey);
}

article.blog-post .content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.blog-post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-grey);
}

.back-to-blog {
    display: inline-block;
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: var(--golden-yellow);
}

.social-share {
    margin-top: 2rem;
}

.social-share h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-share-buttons {
    display: flex;
    gap: 1rem;
}

.social-share-buttons a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--deep-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-share-buttons a:hover {
    background: var(--golden-yellow);
    color: var(--charcoal);
}

/* Featured Case Study */
.featured-case-study {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    border: 3px solid var(--golden-yellow);
}

.featured-case-study h3 {
    font-size: 2rem;
    color: var(--deep-green);
    margin-bottom: 1.5rem;
}

.featured-case-study p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* About Page Mission Section */
.mission-section {
    background: var(--off-white);
    padding: 3rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 5px solid var(--golden-yellow);
}

.mission-section h3 {
    color: var(--deep-green);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.mission-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Cup Recycling Article Styles */
.cup-recycling-article {
    background: var(--white);
    padding: 2rem 0;
}

.article-content {
    margin: 0 auto;
}

.article-section {
    margin-bottom: 1rem;
    padding: 0;
}

.article-section h2,
.blog-post .content h2 {
    font-size: 1.8rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    text-align: left;
    padding-left: 1rem;
    border-left: 4px solid var(--golden-yellow);
}

.article-section h2::before,
.blog-post .content h2::before {
    display: none;
}

.article-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-grey);
    margin-bottom: 0.75rem;
}

.article-cta {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
    border-top: 3px solid var(--golden-yellow);
}

.article-cta p {
    font-size: 1.2rem;
    color: var(--deep-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Testimonials Page Styles */
.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    border-left: 5px solid var(--golden-yellow);
    position: relative;
    overflow: hidden;
}

/* Subtle decorative quote mark background */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 12rem;
    font-family: Georgia, serif;
    color: var(--golden-yellow);
    opacity: 0.10;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.testimonial-card>* {
    position: relative;
    z-index: 1;
}

.testimonial-logo {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.testimonial-logo img {
    max-width: 250px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.testimonial-logo img:hover {
    transform: scale(1.05);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--dark-grey);
    margin: 2rem 0;
    padding: 0;
    border: none;
}

.testimonial-author {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-grey);
    text-align: right;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-green);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 1rem;
    color: var(--forest-green);
    margin-bottom: 0.25rem;
}

.author-company {
    font-size: 1rem;
    color: var(--dark-grey);
    margin-bottom: 0;
}