/* About Us Page Styles */

.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.page-content {
    padding: 2rem 0 4rem;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    line-height: 1.8;
}

.intro-section {
    margin-bottom: 3rem;
}

.intro-section .lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold-color);
}

.content-section h2:first-of-type {
    margin-top: 0;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.content-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.content-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-light);
}

.content-section li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: var(--gold-color);
    text-decoration: underline;
}

.content-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

.value-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold-color);
}

.value-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.value-item p {
    margin-bottom: 0;
}

.mission-section,
.collection-section,
.craftsmanship-section,
.commitment-section {
    margin: 3rem 0;
}

.contact-cta {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
    border: 2px solid var(--gold-color);
}

.contact-cta h2 {
    margin-top: 0;
    border-bottom: none;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 2rem 1.5rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .content-section h3 {
        font-size: 1.25rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}
