/* About Page - Clean & Simple */

/* Hero Section */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    padding: 120px 0 80px;
    width: 100%;
}

.about-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    width: 100%;
}

/* Profile Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-container {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-accent));
    padding: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.profile-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Hero Text */
.hero-text {
    padding: 0;
    text-align: left;
    width: 100%;
    max-width: 500px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.social-links-hero {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    color: var(--text-secondary);
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: translateY(-5px);
}

/* Content Sections */
.about-content {
    padding: 80px 0;
    background: var(--secondary-bg);
    width: 100%;
    display: flex;
    justify-content: center;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Story Section */
.story-section {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem auto;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 100%;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Values Grid */
.values-section {
    margin: 3rem auto;
    width: 100%;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    justify-items: center;
}

.value-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.value-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Timeline */
.journey-section {
    margin: 3rem auto;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    justify-items: center;
}

.timeline-item {
    text-align: center;
    width: 100%;
    max-width: 350px;
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-date {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Fun Facts */
.fun-facts-section {
    margin: 3rem auto;
    background: var(--primary-bg);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    justify-items: center;
}

.fact-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
}

.fact-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.fact-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.fact-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.fact-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Social Grid */
.connect-section {
    margin: 3rem auto;
    width: 100%;
    text-align: center;
}

.connect-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    justify-items: center;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 320px;
}

.social-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.social-card.github .social-icon { background: #24292e; }
.social-card.linkedin .social-icon { background: #0077b5; }
.social-card.youtube .social-icon { background: #ff0000; }
.social-card.email .social-icon { background: #ea4335; }

.social-info h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.social-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Hamburger Menu Styles for About Page */
@media (max-width: 968px) {
    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 0;
        margin: 0;
        width: 24px;
        height: 18px;
        justify-content: space-between;
        background: transparent;
        border: none;
        outline: none;
    }

    .hamburger .bar {
        width: 24px !important;
        height: 2px !important;
        background: white !important;
        display: block !important;
        transition: all 0.3s ease;
        border: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-link {
        padding: 1rem;
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        justify-items: center;
    }
    
    .hero-text {
        padding: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .about-hero .container,
    .content-container {
        padding: 0 20px;
    }
    
    .story-section,
    .journey-section,
    .fun-facts-section {
        padding: 2rem;
        margin: 2rem auto;
    }
}

@media (max-width: 768px) {
    .profile-container {
        width: 250px;
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 60px 0;
    }
    
    .about-hero .container,
    .content-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .profile-container {
        width: 200px;
        height: 200px;
    }
    
    .story-section,
    .journey-section,
    .fun-facts-section {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
    
    .social-links-hero {
        justify-content: center;
    }
    
    .about-hero .container,
    .content-container {
        padding: 0 10px;
    }
}
