/* Who I Am Section */
.who-i-am-section {
    padding: 100px 0;
    background: #000000;
}

.who-i-am-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.who-i-am-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.who-i-am-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.who-i-am-image img:hover {
    transform: scale(1.02);
}

.who-i-am-bio {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    letter-spacing: -0.01em;
    margin: 0 0 60px 0;
}

.who-i-am-intro {
    font-size: 32px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
}

.who-i-am-bio p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    letter-spacing: -0.01em;
    margin: 0;
}

.who-i-am-bio p strong {
    font-weight: 400;
    color: #ffffff;
}

.who-i-am-cta {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    letter-spacing: -0.01em;
    margin: 16px 0 0 0 !important;
}

.pomegranate-link {
    cursor: pointer;
    text-decoration: underline;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.pomegranate-link:hover {
    opacity: 1;
}

/* Pomegranate Slideshow Modal */
.pomegranate-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.pomegranate-modal.active {
    display: flex;
}

.pomegranate-modal-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    text-align: center;
}

.pomegranate-modal-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: fadeInImage 0.5s ease;
    object-fit: contain;
}

.pomegranate-modal-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.pomegranate-modal-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pomegranate-modal-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.pomegranate-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pomegranate-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.pomegranate-modal-counter {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInImage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pomegranate-modal-image.slide-in-left {
    animation: slideInLeft 0.4s ease !important;
}

.pomegranate-modal-image.slide-in-right {
    animation: slideInRight 0.4s ease !important;
}

@media (max-width: 768px) {
    .who-i-am-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .who-i-am-image {
        order: -1;
    }
    
    .who-i-am-bio p {
        font-size: 14px;
    }
}
