/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding-top: 80px;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-title {
    font-family: 'Creepster', cursive;
    font-size: 3.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Necromancer Portrait */
.necromancer-portrait {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portrait-frame {
    font-size: 12rem;
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.floating-google-logos {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.google-logo {
    position: absolute;
    font-size: 2rem;
    animation: tremble 2s ease-in-out infinite;
    opacity: 0.7;
}

.google-logo:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.google-logo:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 0.7s;
}

.google-logo:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 1.4s;
}

@keyframes tremble {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(-5px) translateY(-3px) rotate(-2deg); }
    50% { transform: translateX(3px) translateY(-5px) rotate(1deg); }
    75% { transform: translateX(-2px) translateY(2px) rotate(-1deg); }
}

.laptop-spellbook {
    position: absolute;
    bottom: -20px;
    right: -30px;
    font-size: 3rem;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3) drop-shadow(0 0 10px var(--primary-color)); }
}

/* Origin Story Section */
.origin-story {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-paragraph {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.experience-highlights {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.experience-highlights h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.experience-list {
    list-style: none;
}

.experience-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.experience-list li:last-child {
    border-bottom: none;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* What I Actually Do Section */
.what-i-do {
    padding: 6rem 0;
}

.bonus-info {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.bonus-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

/* Quotes Section */
.quotes-section {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quote-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.quote-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quote-card blockquote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.quote-card cite {
    color: var(--text-gray);
    font-weight: 600;
    font-style: normal;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.mission-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mission-values {
    display: grid;
    gap: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-item p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Fun Facts Section */
.fun-facts {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fact-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.fact-card:hover::before {
    left: 100%;
}

.fact-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.fact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.fact-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.fact-card p {
    color: var(--text-gray);
    margin: 0;
    font-style: italic;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.criteria-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.criteria-list li {
    padding: 1rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.criteria-list li:last-child {
    border-bottom: none;
}

.criteria-list li:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-buttons .cta-primary,
.cta-buttons .cta-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

/* Active Navigation State */
.nav-menu .active {
    color: var(--primary-color);
    position: relative;
}

.nav-menu .active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-stats {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portrait-frame {
        font-size: 8rem;
    }
    
    .google-logo {
        font-size: 1.5rem;
    }
    
    .laptop-spellbook {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .portrait-frame {
        font-size: 6rem;
    }
    
    .quotes-grid,
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
} 