/* About Page Styles */
/* Variables already defined in home.css */

/* Team Overview Styles */
.team-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.team-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.team-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .team-overview {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-photo img {
        height: 300px;
    }
}

/* About Hero */
.about-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(233, 69, 96, 0.8));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0.9;
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--white);
    width: 100%;
}

.hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.3s forwards;
}

/* Brand Story */
.brand-story {
    padding: 100px 0;
    background-color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.story-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.story-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Timeline */
.timeline-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

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

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
}

.timeline-date {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(128, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.timeline-date:after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.3;
    z-index: -1;
}

.timeline-content {
    width: calc(50% - 80px);
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-content:before {
    content: '';
    position: absolute;
    top: 40px;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-content:before {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content {
    order: -1;
}

.timeline-item:nth-child(even) .timeline-content:before {
    left: -10px;
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* Founder Section */
.founder-section {
    padding: 100px 0;
    background-color: var(--white);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.founder-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.founder-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.founder-title {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
}

.founder-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.certifications {
    margin-top: 30px;
}

.certification {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.certification i {
    color: var(--secondary);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 26, 46, 0.08);
    transition: var(--transition);
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 2;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(233, 69, 96, 0.2);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background-color: rgba(128, 0, 0, 0.8);
    transition: var(--transition);
}

.team-member:hover .member-social {
    bottom: 0;
}

.member-social a {
    color: var(--white);
    margin: 0 10px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.member-social a:hover {
    color: var(--secondary);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.specialty {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.member-info p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    background-color: var(--light-gray);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Certifications Section */
.certifications-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px auto;
    max-width: 900px;
}

.cert-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cert-item img {
    width: 100%;
    height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: var(--transition);
}

.cert-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.hygiene-standards {
    max-width: 800px;
    margin: 50px auto 0;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hygiene-standards h3 {
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.hygiene-standards ul {
    list-style: none;
}

.hygiene-standards li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.hygiene-standards i {
    color: var(--secondary);
    margin-right: 15px;
    margin-top: 3px;
}

/* Community Section */
.community-section {
    padding: 100px 0;
    background-color: var(--white);
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.community-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.community-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.initiative {
    margin-bottom: 30px;
}

.initiative h3 {
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.initiative h3 i {
    color: var(--secondary);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Press Section */
.press-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.press-logos img {
    height: 50px;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

.press-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.press-quotes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.press-quote {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.press-quote:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(128, 0, 0, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.press-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.press-quote p {
    font-weight: 600;
    color: var(--primary);
}

/* About CTA */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(233, 69, 96, 0.9));
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0.95;
    z-index: 1;
}

.about-cta .container {
    position: relative;
    z-index: 2;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .story-grid, .founder-grid, .community-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-image, .community-image {
        order: -1;
    }
    
    .timeline:before {
        left: 60px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-date {
        margin-bottom: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 140px);
        margin-left: 140px !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        order: 0;
    }
    
    .timeline-content:before {
        top: -10px;
        left: 50% !important;
        transform: translateX(-50%) rotate(45deg);
    }
    
    .press-quotes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .certs-grid {
        grid-template-columns: 1fr 1fr;
    }
}