/* Page-specific styles for auxiliary pages */

/* Page Navigation */
.page-nav {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-green);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--primary-green);
    color: white;
}

/* Page Main Content */
.page-main {
    min-height: 60vh;
    padding: 2rem 0 4rem;
    background-color: var(--white);
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background-color: var(--kraft-bg);
    border-radius: 12px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.content-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--kraft-border);
    padding-bottom: 0.5rem;
}

.content-body {
    line-height: 1.8;
    color: var(--text-primary);
}

.content-body p {
    margin-bottom: 1.5rem;
}

/* About Page Specific Styles */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    background-color: var(--kraft-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--kraft-border);
}

.approach-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.approach-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Company Info */
.company-info {
    background-color: var(--kraft-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--kraft-border);
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--kraft-border);
    padding-bottom: 1rem;
}

.info-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-item dt {
    font-weight: 600;
    color: var(--primary-green);
    min-width: 150px;
    margin-right: 1rem;
}

.info-item dd {
    color: var(--text-primary);
    flex: 1;
}

/* Placeholder Content */
.placeholder-content {
    background-color: var(--kraft-bg);
    border: 2px dashed var(--kraft-border);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
}

.placeholder-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.placeholder-content p:last-child {
    margin-bottom: 0;
}

/* About page specific styles */
.about-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

.about-content-with-image.reverse {
    direction: rtl;
}

.about-content-with-image.reverse .about-text,
.about-content-with-image.reverse .about-image {
    direction: ltr;
}

.about-text {
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.approach-item {
    background-color: var(--kraft-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--kraft-border);
    text-align: center;
}

.approach-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

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

/* Policy pages styles */
.contact-info-policy {
    background-color: var(--kraft-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--kraft-border);
    margin-top: 1rem;
}

.contact-info-policy p {
    margin-bottom: 0.5rem;
}

.contact-info-policy p:last-child {
    margin-bottom: 0;
}

.content-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 1.5rem 0 1rem 0;
}

.content-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Styles for Pages */
.footer-brand-section .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-brand-section .footer-brand {
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-brand-section .footer-description {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-brand-section .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-links-section {
    display: flex;
    gap: 2rem;
}

.footer-column h4,
.footer-info-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-info-section .footer-hours p,
.footer-info-section .footer-address address {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 0.3rem;
}

.footer-info-section .footer-address {
    margin-top: 1rem;
}

.footer-info-section .footer-address address {
    font-style: normal;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .info-item dt {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .header-content {
        align-items: stretch;
    }
    
    .page-nav {
        justify-content: center;
    }
    
    .about-content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content-with-image.reverse {
        direction: ltr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .footer-links-section {
        justify-content: center;
        gap: 3rem;
    }
}