/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
}

.main {
    min-height: 100vh;
    background-color: #f8f5f1;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        flex-direction: row;
        gap: 6rem;
        padding: 0 1rem;
        min-height: 80vh;
        align-items: center;
    }
}

/* Left column styles */
.left-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .left-column {
        width: 33.333%;
    }
}

.name {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: #333;
}

@media (min-width: 768px) {
    .name {
        font-size: 3rem;
    }
}

.bio {
    color: #666;
    margin-bottom: 1.5rem;
}

.profile-image {
    margin: 2rem 0;
    width: 16rem;
    height: 16rem;
    position: relative;
}

@media (min-width: 768px) {
    .profile-image {
        margin: 2rem 0;
        width: 20rem;
        height: 20rem;
    }
}

.image-container {
    border-radius: 50%;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: #f0ebe5;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 0%;
    display: block;
    transform: scale(1.0);
    transform-origin: center center;
}

.links {
    margin-top: 2rem;
    clear: both;
}

.divider {
    color: #666;
    margin-bottom: 1rem;
}

.link {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 1rem;
}

.link:hover {
    text-decoration: underline;
}

.arrow {
    display: inline-block;
    margin-left: 0.25rem;
}

/* Right column styles */
.right-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .right-column {
        width: 66.666%;
    }
}

.section {
    border-top: 1px solid #ddd;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
}

.section-id {
    font-size: 0.875rem;
    color: #666;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-left: 2rem;
    color: #666;
}

.close-btn {
    font-size: 0.75rem;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.section.active .close-btn {
    display: block;
}

.section-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.section.active .section-content {
    max-height: 1000px;
    opacity: 1;
}

.content-wrapper {
    padding: 1rem 0;
}

.content-wrapper p {
    color: #666;
    margin-bottom: 1rem;
}

.content-wrapper h3 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: #333;
}

@media (min-width: 768px) {
    .content-wrapper h3 {
        font-size: 3rem;
    }
}

.links-group {
    margin-bottom: 1.5rem;
}

.links-group .link {
    margin-bottom: 0.5rem;
    color: #666;
}

ul {
    list-style-type: disc;
    padding-left: 1.25rem;
    color: #666;
}

li {
    margin-bottom: 0.5rem;
}

.contact-wrapper {
    margin-bottom: 1rem;
    display: block;
}

.contact-link {
    position: relative;
    transition: all 0.3s ease;
}

.email-reveal {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
}

.copy-icon {
    cursor: pointer;
    pointer-events: auto;
}

.copy-icon:hover {
    opacity: 0.7;
}

.contact-link:hover .email-reveal {
    opacity: 1;
}

.contact-link:hover > :not(.email-reveal) {
    opacity: 0;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-line .link {
    margin-bottom: 0;
}

.email-text {
    color: #666;
    display: none;
}

.email-text.visible {
    display: inline;
}

.copy-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #666;
    display: none;
}

.copy-button.visible {
    display: block;
}

.copy-button:hover {
    opacity: 0.7;
} 