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

body {
    font-family: 'Arsenal', serif;
    background-color: #ebc3a1;
    color: #3a240e;
    line-height: 1.6;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

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

.header {
    margin-bottom: 40px;
}

.greeting {
    font-family: 'Arimo', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #3a240e;
}

.name {
    font-family: 'Arsenal', serif;
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    text-transform: uppercase;
    color: #3a240e;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.profile-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
    justify-content: space-between;
    min-height: 100vh;
    position: relative;
}

.profile-image {
    width: 320px;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
    order: 2;
    position: sticky;
    top: 40px;
}

.content-left {
    flex: 1;
    order: 1;
    text-align: left;
    max-width: 70%;
    padding-right: 20px;
}

.bio {
    margin-bottom: 30px;
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 16px;
}

.bio h3 {
    font-family: 'Arimo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #3a240e;
}

.bio h4 {
    font-family: 'Arimo', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #3a240e;
}

.bio ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.bio li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.social-section {
    margin-top: 30px;
}

.social-title {
    font-family: 'Arimo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #3a240e;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #3a240e;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 8px 12px;
    background-color: rgba(58, 36, 14, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    justify-content: center;
}

.social-link:hover {
    background-color: rgba(58, 36, 14, 0.2);
    transform: translateY(-2px);
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-icon[src] {
    object-fit: contain;
}

.instagram:hover {
    background-color: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.facebook:hover {
    background-color: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.tiktok:hover {
    background-color: rgba(254, 44, 85, 0.1);
    color: #fe2c55;
}

.threads:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #000;
}

.twitter:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #000;
}

.linkedin:hover {
    background-color: rgba(10, 102, 194, 0.1);
    color: #0a66c2;
}

.youtube:hover {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .greeting {
        font-size: 2rem;
    }
    
    .name {
        font-size: 1.5rem;
    }
    
    .profile-section {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
    }
    
    .profile-image {
        width: 220px;
        order: 2;
        position: static;
        margin: 0 auto;
    }
    
    .content-left {
        order: 1;
        text-align: left;
        max-width: 100%;
        padding-right: 0;
    }
    
    .bio h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .bio h4 {
        font-size: 1.3rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 180px;
    }
    
    .bio-text {
        font-size: 1rem;
    }
    
    .social-title {
        font-size: 1.3rem;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }
    
    .greeting {
        font-size: 1.8rem;
    }
    
    .name {
        font-size: 1.3rem;
    }
    
    .profile-image {
        width: 180px;
    }
    
    .bio h3 {
        font-size: 1.6rem;
    }
    
    .bio h4 {
        font-size: 1.1rem;
    }
    
    .bio-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .bio li {
        font-size: 0.95rem;
    }
    
    .social-title {
        font-size: 1.2rem;
    }
    
    .social-link {
        width: 160px;
    }
}