/* Auxiliary Pages Styles for Slaweb AI */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1f2937;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1f2937;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 12px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #374151;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #1f2937;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4b5563;
}

ul, ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
    color: #4b5563;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 32px;
    height: 32px;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.header-contact {
    display: flex;
    align-items: center;
}

.call-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
}

.call-button:hover {
    background: #1d4ed8;
    text-decoration: none;
}

.icon {
    width: 16px;
    height: 16px;
}

/* Main Content */
.main-content {
    padding: 48px 0 96px 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero {
    text-align: center;
    margin-bottom: 64px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.page-hero p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 0;
}

.content-section {
    margin-bottom: 48px;
}

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

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

.value-item {
    padding: 24px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.value-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #1f2937;
}

.value-item p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.cta-section {
    text-align: center;
    padding: 48px 32px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-top: 64px;
}

.cta-section h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: #6b7280;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #1d4ed8;
    text-decoration: none;
    transform: translateY(-1px);
}

.cta-icon {
    width: 20px;
    height: 20px;
}

/* About Page Specific Images */
.story-image-container,
.team-image-container {
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.story-image,
.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-image:hover,
.team-image:hover {
    transform: scale(1.05);
}

/* Contact Information */
.contact-info {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-top: 24px;
}

.contact-info p {
    margin-bottom: 12px;
}

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

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 48px 0 24px 0;
    margin-top: 96px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand .brand-name {
    color: white;
}

.footer-brand p {
    color: #9ca3af;
    margin-top: 16px;
    font-size: 0.875rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-image,
    .team-image {
        height: 250px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .main-content {
        padding: 32px 0 64px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .page-hero {
        margin-bottom: 48px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-section {
        padding: 32px 24px;
        margin-top: 48px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .story-image,
    .team-image {
        height: 200px;
    }
    
    .main-content {
        padding: 24px 0 48px 0;
    }
    
    .page-hero {
        margin-bottom: 32px;
    }
    
    .content-section {
        margin-bottom: 32px;
    }
    
    .value-item {
        padding: 20px;
    }
    
    .cta-section {
        padding: 24px 20px;
        margin-top: 32px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .footer {
        padding: 32px 0 16px 0;
        margin-top: 64px;
    }
}