/* About Page Styles */

/* About Hero */
.about-hero {
    background: url('../images/about-hero.jpeg') center center / cover no-repeat;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(33, 133, 137, 0.65);
}
.about-hero > * { position: relative; z-index: 1; }

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: bold;
}

.about-hero p {
    font-size: 20px;
    opacity: 0.95;
}

/* Our Story */
.our-story {
    padding: 100px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    color: var(--navy-blue);
    margin-bottom: 30px;
    font-weight: bold;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium-gray);
    margin-bottom: 20px;
}

.story-image {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
    background: var(--bg-light-gray);
}

.mission-box {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--slate-blue) 100%);
    color: var(--white);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 60px;
}

.mission-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}

.mission-box p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.values-title {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark-gray);
    margin-bottom: 50px;
    font-weight: bold;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(33,133,137,0.2);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-weight: bold;
}

.value-card p {
    color: var(--text-medium-gray);
    line-height: 1.7;
}

/* Curation Philosophy */
.curation-philosophy {
    padding: 80px 0;
    background: var(--white);
}

.curation-philosophy h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark-gray);
    margin-bottom: 50px;
    font-weight: bold;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.philosophy-item h3 {
    font-size: 24px;
    color: var(--navy-blue);
    margin-bottom: 20px;
    font-weight: bold;
}

.philosophy-item p {
    color: var(--text-medium-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.philosophy-item ul {
    list-style: none;
    padding-left: 0;
}

.philosophy-item ul li {
    color: var(--text-medium-gray);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.philosophy-item ul li:before {
    content: "•";
    color: var(--primary-teal);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.philosophy-item ul li strong {
    color: var(--text-dark-gray);
}

/* Sustainability Commitment */
.sustainability-commitment {
    padding: 80px 0;
    background: var(--bg-light-gray);
}

.sustainability-commitment h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark-gray);
    margin-bottom: 50px;
    font-weight: bold;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sustainability-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--green);
}

.sustainability-item h3 {
    font-size: 22px;
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-weight: bold;
}

.sustainability-item p {
    color: var(--text-medium-gray);
    line-height: 1.7;
}

/* Positive Family */
.positive-family {
    padding: 80px 0;
    background: var(--white);
}

.positive-family h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark-gray);
    margin-bottom: 20px;
    font-weight: bold;
}

.family-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium-gray);
    max-width: 700px;
    margin: 0 auto 50px;
}

.family-brands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.brand-card {
    background: var(--bg-light-gray);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.brand-card h3 {
    font-size: 28px;
    color: var(--navy-blue);
    margin-bottom: 20px;
    font-weight: bold;
}

.brand-card p {
    color: var(--text-medium-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.family-vision {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-dark) 100%);
    color: var(--white);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

.family-vision h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.family-vision p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Our Promise */
.our-promise {
    padding: 80px 0;
    background: var(--bg-light-gray);
}

.our-promise h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark-gray);
    margin-bottom: 50px;
    font-weight: bold;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.promise-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.promise-item h3 {
    font-size: 22px;
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-weight: bold;
}

.promise-item p {
    color: var(--text-medium-gray);
    line-height: 1.7;
}

/* Join Community */
.join-community {
    padding: 80px 0;
    background: var(--white);
}

.join-community h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark-gray);
    margin-bottom: 20px;
    font-weight: bold;
}

.join-community > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium-gray);
    margin-bottom: 50px;
}

.community-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.action-card {
    background: var(--bg-light-gray);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
}

.action-card h3 {
    font-size: 24px;
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-weight: bold;
}

.action-card p {
    color: var(--text-medium-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.inline-newsletter-form {
    display: flex;
    gap: 10px;
}

.inline-newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    font-size: 14px;
}

.inline-newsletter-form button {
    padding: 12px 24px;
    white-space: nowrap;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-teal);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: bold;
}

.social-btn:hover {
    background: var(--navy-blue);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .story-image {
        height: 300px;
    }

    .mission-box {
        padding: 40px 30px;
    }

    .mission-box h2 {
        font-size: 26px;
    }

    .mission-box p {
        font-size: 16px;
    }

    .values-title,
    .curation-philosophy h2,
    .sustainability-commitment h2,
    .positive-family h2,
    .our-promise h2,
    .join-community h2 {
        font-size: 28px;
    }

    .family-brands {
        grid-template-columns: 1fr;
    }

    .family-vision {
        padding: 30px 20px;
    }

    .inline-newsletter-form {
        flex-direction: column;
    }
}