/* About Page Styles */
.about-main {
    padding: 2rem;
    background-color: #000000;
    min-height: calc(100vh - 48px);
    margin-top: 48px;
    color: #ffffff;
}

.about-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Text Content Styles */
.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faith-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: bold;
}

.education-section,
.experience-section,
.skills-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.education-section:hover,
.experience-section:hover,
.skills-section:hover {
    transform: translateY(-5px);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #dccfcf;
}

.skills-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skills-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Image Showcase Styles */
.image-showcase {
    flex: 1;
    position: sticky;
    top: 80px;
    height: fit-content;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.image-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    background: #1a1a1a;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-item:hover img {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .image-showcase {
        position: static;
    }
}

@media (max-width: 768px) {
    .about-main {
        padding: 1rem;
    }

    .faith-section h2 {
        font-size: 2rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 768px) {
     .menu-button, .mobile-menu {
        display: none;
    }
    }


.menu-button-bar {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.menu-button.active .menu-button-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-button.active .menu-button-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
 
    top: 48px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 45;
    padding: 24px 16px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu.active {
    position:fixed;
    transform: translateY(0);
}

.mobile-nav-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    padding: 8px 0;
    transition: color 0.2s;
}

.mobile-nav-item:hover {
    color: white;
}
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content > div {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

.about-content > div:nth-child(1) { animation-delay: 0.1s; }
.about-content > div:nth-child(2) { animation-delay: 0.2s; }
.about-content > div:nth-child(3) { animation-delay: 0.3s; }
.about-content > div:nth-child(4) { animation-delay: 0.4s; }