/* ============================================
   About Page Styles
   ============================================ */

.about-page {
    overflow-x: hidden;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: scaleIn 2s ease-out infinite alternate;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header h2 {
    color: var(--primary-lightest);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.4;
}

/* Story Section */
.story-section {
    background-color: var(--bg-white);
    padding: var(--spacing-xl) 0;
}

.story-section-alt {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--primary-lightest) 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.story-content-reverse {
    direction: rtl;
}

.story-content-reverse > * {
    direction: ltr;
}

.story-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
    transition: transform var(--transition-normal);
}

.story-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.story-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.story-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    animation: bounce 2s ease-in-out infinite;
}

.story-badge-alt {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
    color: var(--text-primary);
}

.story-text {
    padding: var(--spacing-md);
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    text-align: justify;
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(135deg, var(--primary-lightest) 0%, var(--bg-light) 100%);
    padding: var(--spacing-xl) 0;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-text {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
}

.philosophy-paragraph {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-primary);
    text-align: justify;
}

/* Today Section */
.today-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.today-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: scaleIn 3s ease-out infinite alternate;
}

.today-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.today-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
}

.today-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    animation: bounce 2s ease-in-out infinite;
}

.today-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.today-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--white);
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 968px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header h2 {
        font-size: 1.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .story-content-reverse {
        direction: ltr;
    }
    
    .story-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: var(--spacing-lg) 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header h2 {
        font-size: 1.25rem;
    }
    
    .story-paragraph,
    .philosophy-paragraph,
    .today-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .today-card {
        padding: var(--spacing-md);
    }
    
    .today-icon {
        font-size: 3rem;
    }
    
    .today-title {
        font-size: 2rem;
    }
}

