/*
====================================
PageYaRona - About Page Specific Styles
====================================
Author: PageYaRona
Description: Modular stylesheet specifically for the about page components
Version: 1.0.0
====================================
*/

/* ===== HERO SECTION ===== */
.hero-section { 
    padding: 120px 0; 
    transition: background-color 0.4s ease-in-out;
}

/* Light mode specific hero styles */
body.light-mode .hero-section {
    background: linear-gradient(-45deg, #f4f4f4, #ffffff, #eef7f6);
    background-size: 400% 400%;
    animation: animatedGradient 15s ease infinite;
}

/* Dark mode specific hero styles */
body.dark-mode .hero-section {
    background: linear-gradient(-45deg, #1e434a, #121212, #2a5a64);
    background-size: 400% 400%;
    animation: animatedGradient 20s ease infinite;
}

.hero-section h1 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: transparent;
    background: linear-gradient(-45deg, var(--c-accent), var(--c-headline), var(--c-accent), var(--c-headline));
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: animatedTextGradient 8s ease infinite;
}

body.dark-mode .hero-section h1 {
    background: linear-gradient(-45deg, var(--c-accent), var(--c-bg-white), var(--c-accent));
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: animatedTextGradient 6s ease infinite;
}

/* ===== ABOUT VALUE CARDS ===== */
.value-card { 
    background: var(--card-bg); 
    border: 1px solid var(--border-color); 
    padding: 30px; 
    border-radius: 12px; 
    text-align: center; 
    transition: all 0.4s ease-in-out; 
    height: 100%;
    transform: perspective(1000px);
}

.value-card:hover { 
    transform: perspective(1000px) translateY(-10px) rotateX(5deg) scale(1.02); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}

.value-card i { 
    font-size: 3rem; 
    color: var(--c-accent); 
    margin-bottom: 1rem; 
}

/* ===== MEANING SECTION ===== */
.subtle-bg { 
    background-color: var(--subtle-bg); 
}

/* ===== FOUNDER SECTION ===== */
.founder-image {
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.founder-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ===== FUTURISTIC ACCORDION ===== */
.futuristic-accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.futuristic-accordion .accordion-button {
    background-color: transparent;
    color: var(--heading-color);
    font-size: 1.2rem;
    font-weight: 500;
    font-family: var(--font-body);
    padding: 1.5rem 1rem;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

.futuristic-accordion .accordion-button:not(.collapsed) {
    color: var(--c-accent);
    box-shadow: none;
}

.futuristic-accordion .accordion-button:hover {
    background-color: rgba(105, 203, 192, 0.05);
}

.futuristic-accordion .accordion-body {
    padding: 1rem 1.5rem 2rem 1.5rem;
    background-color: rgba(105, 203, 192, 0.03);
    border-radius: 0 0 8px 8px;
    line-height: 1.8;
}

.futuristic-accordion .accordion-button::after {
    /* Custom animated + icon */
    content: '+';
    font-family: monospace;
    font-size: 2rem;
    font-weight: 200;
    background-image: none;
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.futuristic-accordion .accordion-button:not(.collapsed)::after {
    content: '+';
    transform: rotate(45deg);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: var(--c-accent);
    color: var(--c-text-dark);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--c-text-dark);
    margin-bottom: 1.5rem;
}

.cta-section .btn-primary {
    background-color: var(--c-text-dark);
    border-color: var(--c-text-dark);
    color: var(--c-bg-white);
}

.cta-section .btn-primary:hover {
    background-color: rgba(18, 18, 18, 0.8);
    border-color: var(--c-text-dark);
}

/* ===== ANIMATIONS ===== */
@keyframes animatedGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes animatedTextGradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}