/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.split-hero {
    display: flex;
    height: 100%;
    position: relative;
}

.hero-half {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.doctor-side {
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-black));
}

.dj-side {
    background: linear-gradient(135deg, var(--primary-black), var(--accent-purple));
}

.hero-image {
    position: relative;
    width: 300px;
    height: 300px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInScale 1s ease-out forwards;
}

.dj-side .hero-image {
    animation-delay: 0.3s;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.hero-half:hover .hero-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.medical-overlay,
.music-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    transition: all 0.5s ease;
}

.hero-half:hover .medical-overlay,
.hero-half:hover .music-overlay {
    color: rgba(255, 255, 255, 0.8);
    transform: translate(-50%, -50%) scale(1.2);
}

.side-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--text-white);
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 1),
        -1px -1px 3px rgba(0, 0, 0, 0.8),
        1px -1px 3px rgba(0, 0, 0, 0.8),
        -1px 1px 3px rgba(0, 0, 0, 0.8),
        1px 1px 3px rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: fadeInScale 1s ease-out 0.8s forwards;
    white-space: normal;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background-color: var(--secondary-black);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.story-block {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.story-block:hover {
    transform: translateY(-10px);
    background-color: rgba(139, 0, 255, 0.1);
}

.story-icon {
    font-size: 3rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}

.story-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.story-block p {
    color: var(--text-gray);
    line-height: 1.8;
}

.philosophy {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent-teal);
    margin-bottom: 1rem;
    position: relative;
    padding: 2rem;
}

.philosophy blockquote::before,
.philosophy blockquote::after {
    content: '"';
    font-size: 4rem;
    color: var(--accent-purple);
    position: absolute;
    opacity: 0.3;
}

.philosophy blockquote::before {
    top: -10px;
    left: 0;
}

.philosophy blockquote::after {
    bottom: -40px;
    right: 0;
}

.philosophy cite {
    color: var(--text-gray);
    font-style: normal;
}

/* Skills Section */
.skills-section {
    padding: 5rem 0;
    background-color: var(--primary-black);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-card {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 0, 255, 0.2);
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 30px rgba(139, 0, 255, 0.2);
}

.skill-medical,
.skill-music {
    text-align: center;
    flex: 1;
}

.skill-medical i,
.skill-music i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.skill-medical i {
    color: var(--accent-teal);
}

.skill-music i {
    color: var(--accent-purple);
}

.skill-arrow {
    color: var(--text-gray);
    font-size: 1.5rem;
    margin: 0 1rem;
    animation: pulse 2s infinite;
}

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

.skill-card h4 {
    font-size: 1rem;
    color: var(--text-white);
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background-color: var(--secondary-black);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-teal));
}

.timeline-item {
    position: relative;
    padding: 2rem 0;
    width: 50%;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--accent-purple);
    border-radius: 50%;
    top: 2rem;
    z-index: 1;
    box-shadow: 0 0 20px rgba(139, 0, 255, 0.5);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-gray);
}

/* CTA Section */
.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
    text-align: center;
}

.about-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        margin-top: 60px;
    }
    
    .split-hero {
        flex-direction: column;
    }
    
    .hero-half {
        height: 50%;
        padding: 1rem;
    }
    
    .hero-image {
        width: 150px;
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .medical-overlay,
    .music-overlay {
        font-size: 2rem;
    }
    
    .side-title {
        font-size: 1.5rem;
    }
    
    .hero-center {
        width: 95%;
        padding: 1rem;
    }
    
    .about-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .story-section {
        padding: 3rem 0;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-block {
        padding: 1.5rem;
    }
    
    .philosophy blockquote {
        font-size: 1.25rem;
        padding: 1rem;
    }
    
    .skills-section {
        padding: 3rem 0;
    }
    
    .skill-card {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .skill-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 3rem !important;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }
    
    .about-cta {
        padding: 3rem 0;
    }
    
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-image {
        width: 120px;
        height: 120px;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .story-icon {
        font-size: 2rem;
    }
    
    .story-block h3 {
        font-size: 1.25rem;
    }
    
    .philosophy blockquote {
        font-size: 1.1rem;
    }
    
    .philosophy blockquote::before,
    .philosophy blockquote::after {
        font-size: 2rem;
    }
}
