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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

/* Logo */
.logo {
    margin-bottom: 3rem;
}

.logo img {
    height: 6.5rem;
    width: auto;
    object-fit: contain;
}

.logo a {
    display: block;
}

/* Main Image (Home Page) */
.main-image {
    margin-bottom: 3rem;
    max-width: 56rem;
    width: 100%;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Navigation Links (Home Page) */
.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #9ca3af;
}

/* Back Button (About Page) */
.back-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    margin-bottom: 2rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #9ca3af;
}

/* About Content */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 56rem;
    width: 100%;
}

.about-left {
    width: 100%;
}

.portrait {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-start;
}

.social-links a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #9ca3af;
}

.social-links a.instagram:hover {
    color: #ec4899;
}

.social-links a.tiktok:hover {
    color: #ec4899;
}

.social-links a.facebook:hover {
    color: #3b82f6;
}

/* Bio Text */
.about-right {
    width: 100%;
}

.about-right p {
    color: #d1d5db;
    line-height: 1.75;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .container {
        padding: 2rem;
    }

    .logo {
        margin-bottom: 4rem;
    }

    .logo img {
        height: 8rem;
    }

    .main-image {
        margin-bottom: 4rem;
    }

    .nav-links {
        gap: 4rem;
    }

    .about-content {
        flex-direction: row;
        gap: 2rem;
    }

    .about-left {
        width: 33.333333%;
        flex-shrink: 0;
    }

    .about-right {
        width: 66.666667%;
    }
}
