/* Minimalist, high-impact design */

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

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #fff;
    color: #000;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh; /* Use dynamic viewport height for mobile browsers */
    padding: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Navigation */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: 2rem;
    padding-top: 0rem;
    padding-bottom: 0.5rem;
}

.nav-left {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.profile-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    /* Remove absolute positioning */
    position: static;
    top: auto;
    right: auto;
    transform: none;
    z-index: 0;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Main Content */
.main-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 0;
    position: relative;
}

.main-content h1 {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}





/* Footer */
.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 6rem;
    flex-shrink: 0;
    padding-top: 2rem;
}

.bottom-left a {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.bottom-left a:hover {
    opacity: 0.6;
}

.bottom-right p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 65ch;
    color: #333;
}

/* Responsive */
@media (max-width: 1024px) {
    .profile-image {
        width: 180px;
        height: 180px;
        right: 10px;
    }
}

@media (max-width: 768px) {
    .page-container {
        padding: 1.5rem;
        height: 100vh;
        height: 100dvh;
        padding-bottom: 2.5rem;
    }

    .top-nav {
        margin-bottom: 1rem;
    }

    .profile-image {
        width: 60px;
        height: 60px;
    }

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

    .bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding-top: 1rem;
    }

    .bottom-right p {
        font-size: 0.95rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 1rem;
        padding-bottom: 2.5rem;
    }

    .main-content h1 {
        font-size: clamp(3rem, 15vw, 6rem);
    }
} 