/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    text-transform: lowercase;
}

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

/* Desktop Layout - Two Columns */
.desktop-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

@media (min-width: 1025px) {
    .container {
        height: 100vh;
        padding: 30px 30px 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .desktop-layout {
        flex: 1;
        overflow: hidden;
        height: 100%;
        max-height: 100%;
        align-items: stretch;
        justify-content: center;
    }

    .profile-column {
        height: 100%;
        align-items: center;
        justify-content: center;
    }

    .main-content {
        overflow-y: auto;
        overflow-x: hidden;
        height: 100%;
        padding-right: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .main-content::-webkit-scrollbar {
        width: 6px;
    }

    .main-content::-webkit-scrollbar-track {
        background: transparent;
    }

    .main-content::-webkit-scrollbar-thumb {
        background: #333333;
        border-radius: 3px;
    }

    .main-content::-webkit-scrollbar-thumb:hover {
        background: #444444;
    }
}

.profile-column {
    flex: 0 0 300px;
    max-width: 300px;
    position: sticky;
    top: 0;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0 auto;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 0;
    width: 100%;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    width: 100%;
}

/* About Section in Profile Column */
.profile-about {
    margin-top: 30px;
    width: 100%;
    text-align: left;
    padding: 0;
}

.profile-about-label {
    margin-bottom: 16px;
    text-align: left !important;
}

.profile-about-content {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
}

/* Side by Side Sections */
.side-by-side-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.side-section {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .side-by-side-sections {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.profile-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1.5px solid #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    flex-shrink: 0;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.name {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin: 0;
    line-height: 1.05;
}

.name-link {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.name-link:hover {
    opacity: 0.8;
}

.title {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0em;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 0;
}

@media (min-width: 1025px) {
    .main-content {
        margin-bottom: 0;
        gap: 40px;
    }
}

/* Content Sections */
.content-section {
    margin-bottom: 0;
}

.two-column-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
}

.column-left {
    min-width: 80px;
}

.column-right {
    flex: 1;
}

.section-label {
    font-size: 12px;
    font-weight: 400;
    color: #898785;
    text-transform: lowercase;
    letter-spacing: 0em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Mono', 'Monaco', 'Menlo', monospace;
    text-align: right;
    line-height: normal;
}

.section-content {
    font-size: 15px;
    font-weight: 400;
    color: #F5F5F4;
    line-height: normal;
    letter-spacing: 0em;
}

.section-content p {
    margin: 0;
}

.link-bold {
    color: #F5F5F4;
    font-weight: normal;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.link-bold:hover {
    opacity: 0.8;
}

/* Signature */
.signature {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 32px;
}

.dash {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}

.signature-name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0em;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0em;
}

.action-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
}

.arrow-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.8;
}

/* Footer */
.footer {
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 0;
    border-top: 1px solid #1a1a1a;
    width: 100%;
    flex-shrink: 0;
}

.footer .two-column-layout {
    margin-bottom: 0;
    gap: 40px;
}

@media (min-width: 1025px) {
    .footer {
        margin-top: 0;
        padding-top: 15px;
        padding-bottom: 0;
    }

    .footer .two-column-layout {
        max-width: 100%;
        gap: 40px;
    }
}

.footer-label {
    font-size: 12px;
    font-weight: 400;
    color: #898785;
    text-transform: lowercase;
    letter-spacing: 0em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Mono', 'Monaco', 'Menlo', monospace;
    text-align: right;
    line-height: normal;
}

.footer-text {
    font-size: 15px;
    font-weight: 400;
    color: #898785;
    margin: 0;
    letter-spacing: 0em;
    line-height: normal;
}

/* Social Bar */
.social-bar {
    margin-top: 50px;
}

.social-list {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}

.social-list li {
    margin: 0;
}

.social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #666666;
    transition: color 0.2s ease;
    text-decoration: none;
}

.social-list a:hover {
    color: #ffffff;
}

.social-list svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .desktop-layout {
        flex-direction: column;
        gap: 0;
    }

    .profile-column {
        flex: 1;
        position: static;
        margin-bottom: 80px;
    }

    .header {
        margin-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 80px 24px 60px;
        max-width: 100%;
    }

    .header {
        margin-bottom: 80px;
    }

    .name {
        font-size: 42px;
    }

    .title {
        font-size: 15px;
    }

    .main-content {
        gap: 60px;
        margin-bottom: 80px;
    }

    .section-content {
        font-size: 17px;
    }

    .action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .action-button {
        width: auto;
        justify-content: center;
    }

    .social-list {
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 60px 20px 40px;
    }

    .header {
        margin-bottom: 60px;
    }

    .profile-image-wrapper {
        width: 112px;
        height: 112px;
    }

    .name {
        font-size: 36px;
    }

    .title {
        font-size: 14px;
    }

    .main-content {
        gap: 50px;
    }

    .section-content {
        font-size: 16px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }
}

