/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Feminine Pink Background */
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #444;
    overflow-x: hidden;
}

/* --- 3D FLOATING SHAPES --- */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.3;
    border-radius: 50%;
}

/* Shape 1: Pink Circle */
.shape-1 {
    width: 300px;
    height: 300px;
    background: #f48fb1;
    top: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite;
}

/* Shape 2: Purple Circle */
.shape-2 {
    width: 200px;
    height: 200px;
    background: #ce93d8;
    bottom: 10%;
    right: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

/* Shape 3: Small Pink */
.shape-3 {
    width: 150px;
    height: 150px;
    background: #ecc6e0;
    top: 40%;
    left: 80%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Main Container */
.main-container {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 1;
}

/* --- CARDS (The 3D Glass Look) --- */
.card {
    background: rgba(255, 255, 255, 0.7);
    /* Frosted Glass Effect */
    backdrop-filter: blur(15px); 
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    
    /* 3D Setup */
    transform-style: preserve-3d;
    transition: transform 0.1s;
}

/* Header */
.profile-section { text-align: center; margin-bottom: 10px; }
.profile-image {
    width: 100px; height: 100px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex; justify-content: center; align-items: center;
    font-size: 2.5rem;
    color: #d81b60;
    box-shadow: 0 10px 25px rgba(216, 27, 96, 0.2);
}
h1 { font-size: 2.2rem; color: #880e4f; margin-bottom: 5px; }
.role { color: #666; font-weight: 300; font-size: 1.1rem; }
.socials { margin-top: 15px; }
.socials a { color: #880e4f; font-size: 1.2rem; margin: 0 10px; transition: 0.3s; }
.socials a:hover { color: #d81b60; }

/* Typography */
h2 { color: #880e4f; margin-bottom: 20px; font-size: 1.5rem; }
p { font-size: 0.95rem; line-height: 1.7; }

/* Skills */
.skills-container { display: flex; justify-content: space-between; gap: 15px; }
.skill-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}
.skill-box:hover { background: white; transform: translateY(-5px); }
.skill-box i { font-size: 1.8rem; color: #d81b60; margin-bottom: 10px; display: block; }
.skill-box h3 { font-size: 1rem; margin-bottom: 5px; }
.skill-box p { font-size: 0.8rem; color: #777; }

/* Projects */
.project-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
}
.project-icon {
    width: 50px; height: 50px;
    background: #fce4ec;
    border-radius: 12px;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.3rem; color: #880e4f;
    margin-right: 20px; flex-shrink: 0;
}
.project-details h3 { font-size: 1.1rem; margin-bottom: 5px; }
.project-details p { font-size: 0.85rem; color: #666; margin-bottom: 8px; }
.project-details a { color: #d81b60; text-decoration: none; font-weight: 600; font-size: 0.85rem; }

/* Button */
.contact-btn {
    display: inline-block;
    background-color: #d81b60;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(216, 27, 96, 0.3);
    transition: all 0.3s ease;
}
.contact-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(216, 27, 96, 0.4); }

footer { margin-top: 20px; color: #888; font-size: 0.8rem; text-align: center; }

/* Mobile */
@media (max-width: 600px) {
    .skills-container { flex-direction: column; }
    .project-item { flex-direction: column; text-align: center; }
    .project-icon { margin: 0 0 15px 0; }
}