/* =============================================
   Terramar Software — Reusable Components
   ============================================= */

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: #9a9da6;
}

.breadcrumb a {
    color: #7a7e87;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #23272e;
}

.breadcrumb .separator {
    margin: 0 0.4rem;
    color: #c0c3ca;
}

.breadcrumb .current {
    color: #4a4e57;
    font-weight: 500;
}

/* --- Divider --- */
.divider {
    border: none;
    border-top: 1px solid rgba(36, 39, 46, 0.06);
    margin: 0;
}

.divider.container {
    max-width: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
}

/* --- About Page --- */
.about-hero {
    padding: 5rem 0 3rem;
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.1rem;
    color: #5a5e66;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-section {
    padding: 3rem 0;
}

.about-section h2 {
    margin-bottom: 1.25rem;
}

.about-section p {
    margin-bottom: 1rem;
    max-width: 680px;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.principle-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(36, 39, 46, 0.06);
    border-radius: 1rem;
    padding: 1.75rem;
}

.principle-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.principle-card p {
    font-size: 0.93rem;
    color: #6b7080;
    line-height: 1.6;
}

/* --- Contact Page --- */
.contact-hero {
    padding: 5rem 0 2rem;
    text-align: center;
}

.contact-hero h1 {
    margin-bottom: 0.75rem;
}

.contact-hero p {
    font-size: 1.1rem;
    color: #5a5e66;
    max-width: 480px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 0 4rem;
    max-width: 640px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(36, 39, 46, 0.06);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.2s ease;
}

.contact-card:hover {
    box-shadow: 0 4px 20px rgba(36, 39, 46, 0.06);
}

.contact-card-icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    display: block;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: #6b7080;
    margin-bottom: 0.75rem;
}

.contact-card a {
    font-weight: 600;
    font-size: 0.95rem;
}

/* --- Contact Email Row & Copy Button --- */
.contact-email-row {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-email-row a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c47f08;
}

.copy-btn {
    background: none;
    border: 1px solid rgba(36, 39, 46, 0.1);
    border-radius: 0.4rem;
    cursor: pointer;
    padding: 0.35rem;
    color: #7a7e87;
    transition: color 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    color: #23272e;
    border-color: rgba(36, 39, 46, 0.2);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* --- Feedback Link --- */
.feedback-link {
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #c47f08;
    transition: color 0.2s ease;
}

.feedback-link:hover {
    color: #a66a06;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .about-hero, .contact-hero {
        padding: 3.5rem 0 2rem;
    }
}
