/* General Styles */
:root {
    --primary-color: #F276CE;
    --secondary-color: #f8f9fa;
    --accent-color: #F293B7;
    --text-color: #212529;
    --background-color: #ffffff;
    --box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

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

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

h1, h2 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

/* Profile Section */
.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(242, 118, 206, 0.2);
}

.tagline {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Sections */
section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    border-radius: 16px;
    background-color: var(--secondary-color);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    text-align: center;
}

section:hover {
    transform: translateY(-5px);
}

section h2 {
    margin-bottom: 1.2rem;
}

.about p {
    max-width: 600px;
    margin: 0 auto;
}

/* Links Section */
.links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Shop and Contact Sections */
.shop, .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-btn, .shop-btn, .contact-link {
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-btn i, .shop-btn i, .contact-link i {
    margin-right: 0.8rem;
    font-size: 1.3rem;
}

.social-btn:hover, .shop-btn:hover, .contact-link:hover {
    cursor: pointer;
}

.instagram {
    background: linear-gradient(45deg, #F276CE, #F293B7);
}

.tiktok {
    background: #000000;
}

.amazon {
    background: #FF9900;
    color: #000;
}

.contact-link {
    background: var(--primary-color);
    display: inline-flex;
}

.social-btn:hover, .shop-btn:hover, .contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
    }
    
    .profile-img {
        width: 120px;
        height: 120px;
    }
    
    section {
        padding: 1.5rem;
    }
    
    .links {
        flex-direction: column;
    }
    
    .social-btn, .shop-btn, .contact-link {
        width: 100%;
        justify-content: center;
    }
} 

/* Legal sections specific adjustments */
.legal ul {
    list-style-position: inside; /* bullets inline with text */
    margin-left: 0; /* remove extra indent */
    padding-left: 0;
}

.legal h2,
.legal h3 {
    margin-top: 1.5rem; /* extra space before headings */
} 