/* Pages CSS - Styles for auxiliary pages (About, Privacy, Terms, Cookies) */

/* Page Header */
.page-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    text-decoration: none;
    color: inherit;
}

.brand-link:hover {
    color: inherit;
}

.page-header .logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-header .logo {
    width: 40px;
    height: 40px;
}

.page-header .brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    margin: 0;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #1d4ed8;
}

.breadcrumb span {
    color: #9ca3af;
}

/* Page Title Section */
.page-title {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-title h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.page-title p {
    font-size: 1.125rem;
    color: #64748b;
    margin: 0;
}

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

.content-section.alt-bg {
    background-color: #f8fafc;
}

/* Section Images */
.section-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    color: #1f2937;
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.content-block h3 {
    color: #374151;
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-block h4 {
    color: #4b5563;
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-block p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content-block ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-block li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.content-block strong {
    color: #1f2937;
    font-weight: 600;
}

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

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.value-item p {
    color: #64748b;
    margin: 0;
}

/* Philosophy Points (About Page) */
.philosophy-points {
    margin-top: 2rem;
}

.point {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.point h4 {
    color: #2563eb;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.point p {
    margin: 0;
    color: #64748b;
}

/* Standards List (About Page) */
.standards-list {
    margin-top: 2rem;
}

.standard-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.standard-number {
    background-color: #2563eb;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.standard-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.standard-content p {
    margin: 0;
    color: #64748b;
}

/* Contact Information */
.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.contact-item strong {
    color: #1f2937;
    display: inline-block;
    min-width: 80px;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Section Icons */
.section-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 0.75rem 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .breadcrumb {
        align-self: flex-end;
    }
    
    .page-title {
        padding: 2rem 0;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .section-image {
        height: 200px;
        margin-bottom: 2rem;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .standard-item {
        flex-direction: column;
        text-align: center;
    }
    
    .standard-number {
        align-self: center;
    }
    
    .contact-item {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .contact-item strong {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .page-header .logo-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .page-header .brand-name {
        font-size: 1.5rem;
    }
    
    .page-title h1 {
        font-size: 1.75rem;
    }
    
    .section-image {
        height: 150px;
        margin-bottom: 1.5rem;
    }
    
    .content-block {
        padding: 0 1rem;
    }
    
    .value-item,
    .point,
    .standard-item,
    .contact-info {
        padding: 1.25rem;
    }
}

/* Print Styles */
@media print {
    .page-header,
    .breadcrumb,
    .footer {
        display: none;
    }
    
    .page-title {
        background: none;
        padding: 1rem 0;
    }
    
    .content-section {
        padding: 1rem 0;
    }
    
    .content-section.alt-bg {
        background: none;
    }
    
    .value-item,
    .point,
    .standard-item,
    .contact-info {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
}