/* About page — supplements styles.css */

.logo {
    text-decoration: none;
}

.nav-active {
    color: var(--pink) !important;
    font-weight: 500;
}

/* Page Hero */
.page-hero {
    padding: 4rem 2rem 2rem;
    display: flex;
    justify-content: center;
}

.page-hero-card {
    background: var(--cream);
    border-radius: 4px;
    padding: 3rem 5rem;
    text-align: center;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.08);
    max-width: 600px;
    width: 100%;
}

.page-hero-card h1 {
    font-size: 4.5rem;
    color: var(--pink);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.page-hero-card p {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.7;
}

/* Story Section */
.about-section {
    padding: 4rem 0 3rem;
}

.story-card {
    background: var(--cream);
    border-radius: 4px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.08);
}

.story-photo-placeholder {
    width: 100%;
    padding-bottom: 110%;
    background: var(--soft-pink);
    border-radius: 4px;
    border: 2px dashed #e0b0bb;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.story-photo-placeholder span {
    position: absolute;
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: #cc8899;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.story-text h2 {
    font-size: 2.8rem;
    color: var(--pink);
    margin-bottom: 1.2rem;
}

.story-text p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    opacity: 0.85;
}

/* Values Section */
.values-section {
    padding: 3rem 0;
}

.values-heading {
    font-size: 3rem;
    color: var(--cream);
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--cream);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.08);
}

.value-icon {
    display: block;
    font-size: 1.8rem;
    color: var(--pink);
    margin-bottom: 0.8rem;
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.75;
}

/* CTA Section */
.about-cta {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
}

.cta-card {
    background: var(--cream);
    border-radius: 4px;
    padding: 3rem 5rem;
    text-align: center;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.08);
    max-width: 500px;
    width: 100%;
}

.cta-card h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cta-card p {
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.65;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero-card { padding: 2.5rem 1.5rem; }
    .page-hero-card h1 { font-size: 3.5rem; }
    .story-card { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
    .values-grid { grid-template-columns: 1fr; }
    .cta-card { padding: 2.5rem 1.5rem; }
}
