/* About Page - Matching Home and Catalogue Design System */

/* Hero Section - Matching Catalogue Hero Style */
.about-hero {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(26, 77, 46, 0.75) 0%, 
        rgba(26, 77, 46, 0.65) 25%, 
        rgba(45, 122, 79, 0.50) 60%, 
        rgba(127, 176, 105, 0.40) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 4rem 20px;
    animation: fadeInUp 0.8s ease-out;
}

.about-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.about-hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-weight: 300;
    letter-spacing: 0.3px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Beautiful Section Headers */
.about-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding: 0 20px;
}

.about-header-decoration {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-header-icon {
    font-size: 4rem;
    padding: 1rem;
    background: linear-gradient(135deg, #e8f5e3 0%, #b8d4a6 100%);
    background: linear-gradient(135deg, var(--pale-green, #e8f5e3) 0%, var(--light-green, #b8d4a6) 100%);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.15);
    animation: gentleFloat 3s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-section-title {
    font-family: 'Playfair Display', serif;
    color: #1a4d2e;
    color: var(--primary-green, #1a4d2e);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.about-section-title::before,
.about-section-title::after {
    content: '🌿';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.4;
}

.about-section-title::before {
    left: -2.5rem;
}

.about-section-title::after {
    right: -2.5rem;
}

.about-header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #7fb069, #2d7a4f);
    background: linear-gradient(90deg, var(--accent-green, #7fb069), var(--secondary-green, #2d7a4f));
    margin: 1.5rem auto;
    border-radius: 2px;
    position: relative;
}

.about-header-line::before,
.about-header-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #7fb069;
    background: var(--accent-green, #7fb069);
    border-radius: 50%;
}

.about-header-line::before {
    left: -20px;
}

.about-header-line::after {
    right: -20px;
}

.about-section-subtitle {
    font-size: 1.2rem;
    color: #4a4a4a;
    color: var(--text-medium, #4a4a4a);
    font-style: italic;
    font-weight: 300;
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

/* Our History Section */
.about-history-section {
    padding: 6rem 20px;
    background: #ffffff;
    background: var(--bg-white, #ffffff);
    position: relative;
}

.about-history-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b8d4a6, transparent);
    background: linear-gradient(90deg, transparent, var(--light-green, #b8d4a6), transparent);
}

.about-history-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-history-text p {
    color: #4a4a4a;
    color: var(--text-medium, #4a4a4a);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.about-history-text p:first-child {
    font-size: 1.2rem;
    color: #1a4d2e;
    color: var(--primary-green, #1a4d2e);
    font-weight: 500;
}

.about-history-image {
    position: relative;
}

.about-history-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05));
    display: block;
}

/* Our Team Section */
.about-team-section {
    padding: 6rem 20px;
    background: #fafafa;
    background: var(--bg-light, #fafafa);
    position: relative;
}

.about-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b8d4a6, transparent);
    background: linear-gradient(90deg, transparent, var(--light-green, #b8d4a6), transparent);
}

.about-team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-team-text p {
    color: #4a4a4a;
    color: var(--text-medium, #4a4a4a);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-team-caption {
    margin-top: 1.5rem;
    color: #6b7280;
    color: var(--text-light, #6b7280);
    font-style: italic;
    font-size: 0.95rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    border-top: 1px solid var(--border-light, #e5e7eb);
}

.about-team-collage {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Our Values Section */
.about-values-section {
    padding: 5rem 20px;
    background: var(--bg-light);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-value-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--secondary-green));
    transform: scaleX(0);
    transition: var(--transition);
}

.about-value-card:hover::before {
    transform: scaleX(1);
}

.about-value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-green);
}

.about-value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.about-value-card:hover .about-value-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-value-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.about-value-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Why Choose Us Section */
.about-why-choose-section {
    padding: 5rem 20px;
    background: var(--bg-white);
}

.about-why-choose-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    grid-template-rows: auto auto;
}

.about-why-choose-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-green);
    transition: var(--transition);
}

.about-why-choose-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent-green);
}

.about-why-choose-item h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.about-why-choose-item p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
}

/* Wide item spans all 3 columns */
.about-why-choose-item-wide {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: 0 auto;
}

/* Collage Grid (now part of Team section) */
.about-collage-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 400px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.about-collage-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: var(--transition, all 0.3s cubic-bezier(0.4, 0, 0.2, 1));
    width: 100%;
    height: 100%;
    min-height: 0;
}

.about-collage-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-collage-item-large {
    grid-row: 1 / -1;
}

/* Proudly Serving Thunder Bay Section */
.about-serving-section {
    padding: 6rem 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 50%, var(--accent-green) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-serving-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 212, 166, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Add subtle texture/noise */
.about-serving-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.about-serving-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-serving-content h2 {
    font-family: 'Playfair Display', serif;
    color: white;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.about-serving-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.about-cta-buttons .btn {
    background: white;
    color: var(--primary-green);
    box-shadow: var(--shadow-xl);
}

.about-cta-buttons .btn:hover {
    background: var(--light-green);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.about-cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.about-cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-team-grid {
        gap: 3rem;
    }
    
    .about-collage-grid {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-why-choose-item-wide {
        grid-column: 1 / -1;
    }
    
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
    }
    
    .about-hero-content {
        padding: 3rem 20px;
    }
    
    .about-history-section,
    .about-team-section {
        padding: 4rem 20px;
    }
    
    .about-section-header {
        margin-bottom: 3rem;
    }
    
    .about-header-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    .about-section-title::before,
    .about-section-title::after {
        display: none;
    }
    
    .about-history-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-history-image {
        order: -1;
    }
    
    .about-team-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-team-collage {
        order: -1;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-collage-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    .about-collage-item-large {
        grid-row: auto;
    }
    
    .about-collage-item {
        height: 250px;
        min-height: 250px;
    }
    
    .about-values-section,
    .about-why-choose-section {
        padding: 3rem 20px;
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .about-collage-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 0.75rem;
        max-width: 100%;
        width: 100%;
    }
    
    .about-collage-item-large {
        grid-row: auto;
    }
    
    .about-collage-item {
        height: 220px;
        min-height: 220px;
    }
    
    .about-serving-section {
        padding: 4rem 20px;
    }
    
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .about-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 40vh;
    }
    
    .about-value-card {
        padding: 2rem 1.5rem;
    }
    
    .about-why-choose-item {
        padding: 1.5rem;
    }
    
    .about-collage-grid {
        gap: 0.5rem;
    }
    
    .about-collage-item {
        height: 180px;
        min-height: 180px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-hero-image img {
        transform: none !important;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}