/* Beast Prints - About Page Additional Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    text-align: center;
    padding: 120px 20px 100px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* Our Story Section */
.our-story {
    background: white;
    padding: 100px 0;
}

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

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.story-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 450px;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow);
}

.image-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
}

.image-placeholder span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.image-placeholder.pink {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff2d55 100%);
}

/* Values Section */
.values {
    background: var(--bg-light);
    padding: 100px 0;
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 32px;
    color: white;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Difference Section */
.difference {
    background: white;
    padding: 100px 0;
}

.difference-content {
    max-width: 900px;
    margin: 0 auto;
}

.difference-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.difference-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.difference-item i {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 5px;
}

.difference-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.difference-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Pay It Forward Section */
.pay-it-forward {
    background: var(--bg-light);
    padding: 100px 0;
}

.pif-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pif-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.pif-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.pif-text .btn {
    margin-top: 15px;
}

.pif-image {
    display: flex;
    justify-content: center;
}

/* Visit CTA Section */
.visit-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.visit-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.visit-cta > p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.visit-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.visit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.visit-item i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 968px) {
    .story-grid,
    .pif-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .story-image,
    .pif-image {
        order: -1;
    }
    
    .difference-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .story-content h2,
    .difference-content h2,
    .pif-text h2 {
        font-size: 28px;
    }
    
    .visit-info {
        flex-direction: column;
        gap: 15px;
    }
}