:root {
    --primary-color: #B8426F;
    --secondary-color: #D4A574;
    --accent-color: #E8B4B8;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-light: #FFF9F5;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.links-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    width: 100%;
}

.profile-section {
    flex-shrink: 0;
    position: relative;
}

.profile-image {
    width: 400px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.profile-image-container {
    position: relative;
    display: inline-block;
}

.image-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--secondary-color);
    border-radius: 30px;
    z-index: 1;
}

.content-section {
    flex: 1;
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.tagline {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.3rem;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(184, 66, 111, 0.2);
    border-bottom: 1px solid rgba(184, 66, 111, 0.2);
}

.tag {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
}

.divider {
    color: var(--primary-color);
    font-weight: 300;
    opacity: 0.5;
}

.link-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.link-btn:not(.outline) {
    background: var(--primary-color);
    color: var(--white);
}

.link-btn:not(.outline):hover {
    background: #9A3A5C;
    transform: translateY(-2px);
}

.link-btn.outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.link-btn.outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .links-container {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-image {
        width: 300px;
        height: auto;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .tags {
        justify-content: center;
    }
    
    .link-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .link-btn {
        width: 100%;
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}