/* =================================================================
   VAMPIRES INDUSTRY - ABOUT US PAGE STYLES
   Professional about page design with consistent styling patterns
   ================================================================= */

/* CSS Variables - Consistent with collection page and homepage */
:root {
    --primary: #374151 !important;           /* Dark neutral gray */
    --secondary: #6b7280 !important;         /* Medium neutral gray */
    --accent: #9ca3af !important;            /* Light neutral gray */
    --bg-primary: #ffffff !important;        /* Pure white */
    --bg-secondary: #f9fafb !important;      /* Very light gray */
    --light: #f3f4f6 !important;            /* Light gray */
    --text-dark: #374151 !important;        /* Dark text */
    --text-light: #ffffff !important;       /* White text */
    --text-muted: #9ca3af !important;       /* Muted text */
    --border-color: #e5e7eb !important;     /* Light border */
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Base Styles */
.about-page {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Force WordPress containers to full width */
.site,
.site-content,
.content-area,
.site-main,
article,
.entry-content,
.inside-article,
.container,
.grid-container {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.about-container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* Page Header */
.about-header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
    margin: 0;
}


.about-header-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-dark);
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-subtitle p {
    margin: 0;
}

/* Main Content Sections */
.about-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.about-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    line-height: 1.2;
    background: linear-gradient(
        90deg,
        var(--text-dark) 0%,
        var(--text-dark) 40%,
        #fff 50%,
        var(--text-dark) 60%,
        var(--text-dark) 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleTextShine 6s linear infinite;
}

.about-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Two Column Layout */
.about-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.team-member .role {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.875rem;
    color: var(--secondary);
    line-height: 1.6;
}

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

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

.value-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.value-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

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

.value-item p {
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.about-stats {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Timeline Section */
.timeline-section {
    padding: 4rem 0;
}

.timeline-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin: 0 2rem;
    flex: 1;
    border: 1px solid var(--border-color);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--secondary);
    margin: 0;
    line-height: 1.6;
}

/* Manufacturing Section */
.manufacturing-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}


.manufacturing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem auto 0;
    max-width: 1600px;
    padding: 0 40px;
}

.manufacturing-item {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.manufacturing-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.manufacturing-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

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

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.products-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 40px;
}

.products-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 0 40px;
}

.product-stat {
    padding: 1.5rem;
}

.product-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.product-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem auto 0;
    max-width: 1600px;
    padding: 0 40px;
}

.product-category {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.product-category:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-category h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-category p {
    color: var(--secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}


.values-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Call to Action */
.about-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    width: 100%;
    margin: 0;
}

.cta-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-button {
    background: var(--accent);
    color: var(--text-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleTextShine {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

@keyframes backInUp {
    0% {
        transform: translateY(1200px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateY(0px) scale(0.7);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes backInRight {
    0% {
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        transform: translateX(0px) scale(0.7);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-header,
    .about-section,
    .about-stats,
    .manufacturing-section,
    .values-section,
    .about-cta {
        padding: 80px 30px;
    }
}

@media (max-width: 768px) {
    .about-header,
    .about-section,
    .about-stats,
    .manufacturing-section,
    .values-section,
    .products-section,
    .about-cta {
        padding: 60px 0;
    }
    
    .about-header-content,
    .stats-grid,
    .manufacturing-grid,
    .values-grid,
    .products-grid,
    .products-intro,
    .products-stats,
    .cta-content,
    .values-intro {
        padding: 0 20px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-section h2 {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
    
    .about-two-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid,
    .team-grid,
    .manufacturing-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}