/* About page styles */

.page-header {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--deep-charcoal);
    background-image: linear-gradient(to bottom, #232323, #1d1d1d);
}

/* Large Pink Blob - Top Left */
.page-header::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background-color: var(--bubblegum-pink);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.9;
    filter: blur(40px);
    z-index: 0;
    animation: float-blob 20s ease-in-out infinite alternate;
}

/* Large Blue Blob - Bottom Right */
.page-header::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background-color: var(--azure-blue);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.9;
    filter: blur(40px);
    z-index: 0;
    animation: float-blob 25s ease-in-out infinite alternate-reverse;
}

/* Yellow Blob - Center */
.page-header .container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 230px;
    height: 230px;
    background-color: var(--golden-yellow);
    border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%;
    opacity: 0.85;
    filter: blur(35px);
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

/* Additional blob removed */

@keyframes float-blob {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 30px) rotate(15deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(20px, 20px) rotate(10deg);
    }
}

.page-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

/* Removed title underline */

.page-description {
    color: var(--light-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.story-section .container {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 50px;
    align-items: center;
}

.story-section .section-title,
.values-section .section-title,
.background-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-charcoal);
    margin-bottom: 30px;
}

.values-section .section-title.centered {
    text-align: center;
    display: block;
}

.section-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 50px;
    max-width: 700px;
}

.section-description.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 15px;
}

.value-description {
    color: var(--dark-gray);
    line-height: 1.6;
}

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

.background-section .container {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 50px;
    align-items: center;
}

.background-content h2.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-charcoal);
    margin-bottom: 30px;
}

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

.background-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Responsive styles */
@media (max-width: 991px) {
    .story-section .container,
    .background-section .container {
        grid-template-columns: 1fr;
    }
    
    .story-content,
    .background-content {
        order: 2;
    }
    
    .story-image,
    .background-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}