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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #fef9f0 0%, #fff5f7 100%);
    color: #1e1b1d;
    scroll-behavior: smooth;
    line-height: 1.5;
}

:root {
    --soft-rose: #f9e4e9;
    --mid-rose: #f3c5d1;
    --accent: #d15d7c;
    --accent-light: #f2cddb;
    --glass-bg: rgba(255, 248, 242, 0.88);
    --charcoal: #2c2528;
}

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

/* header */
.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border-radius: 48px;
    padding: 0.9rem 2rem;
    border: 1px solid rgba(241, 192, 206, 0.6);
    box-shadow: 0 6px 14px rgba(0,0,0,0.02);
}

.logo h1 {
    font-size: 1.7rem;
    font-weight: 700;
    background: linear-gradient(125deg, #b3426c, #e87497);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo p {
    font-size: 0.8rem;
    color: #b46882;
    font-weight: 500;
}

.quick-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.quick-links a {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    background: white;
    padding: 6px 16px;
    border-radius: 40px;
    color: #b1456a;
    border: 1px solid #ffe4ec;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.quick-links a:hover {
    background: #fef0f4;
    transform: translateY(-2px);
    border-color: #f3abbd;
}

/* hero section */
.hero {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(115deg, white, #fffafc);
    border-radius: 44px;
    padding: 2rem 2rem;
    margin-bottom: 3rem;
    border: 1px solid #fad7e2;
    transition: 0.25s;
}

.hero-content {
    flex: 2;
}

.hero-content .badge {
    background: #fadbe4;
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ac5473;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0.5rem 0;
}

.hero-content h2 span {
    background: linear-gradient(130deg, #cf6082, #b14e72);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.tag {
    font-size: 1rem;
    color: #7c5b67;
    border-left: 3px solid #f2a5bc;
    padding-left: 1rem;
    margin: 1rem 0 1.5rem 0;
}

.btn-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.btn-primary {
    background: linear-gradient(95deg, #f07c9b, #e55e83);
    color: white;
    box-shadow: 0 4px 12px rgba(219, 90, 120, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(95deg, #e8698c, #dc4d74);
    box-shadow: 0 8px 18px rgba(219, 90, 120, 0.35);
}

.btn-outline {
    border: 2px solid #efb3c5;
    background: white;
    color: #bc5477;
}

.btn-outline:hover {
    background: #fff2f6;
    transform: translateY(-2px);
    border-color: #e47b9b;
}

.hero-card {
    flex: 1.2;
    background: rgba(255, 240, 244, 0.5);
    border-radius: 40px;
    padding: 1.2rem;
}

.info-panel {
    background: white;
    border-radius: 30px;
    padding: 1.4rem;
    border: 1px solid #ffe2ec;
}

.info-panel p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #4a3440;
}

.info-panel i {
    width: 28px;
    color: #dd7897;
}

/* section titles */
.section-title {
    font-size: 1.7rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #fbc1d1, #fce4ec);
    border-radius: 4px;
}

.edu-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin: 1.4rem 0 2rem;
}

.edu-card {
    background: white;
    border-radius: 28px;
    padding: 1.5rem;
    flex: 1;
    border: 1px solid #ffe2ec;
    transition: all 0.25s;
    box-shadow: 0 5px 12px rgba(0,0,0,0.02);
}

.edu-card:hover {
    transform: translateY(-6px);
    border-color: #f6bfd1;
    box-shadow: 0 18px 24px -12px rgba(160, 80, 100, 0.15);
}

.edu-card i {
    font-size: 2rem;
    color: #e47798;
    margin-bottom: 0.8rem;
}

.edu-card h3 {
    font-size: 1.25rem;
    margin: 0.4rem 0;
}

.skills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.2rem 0 1.8rem;
}

.skill-badge {
    background: linear-gradient(145deg, #fef5f8, #fff0f4);
    border-radius: 100px;
    padding: 8px 22px;
    display: inline-block;
    margin: 0 6px 12px 0;
    font-weight: 500;
    border: 1px solid #ffdbeb;
    transition: 0.2s;
    color: #ab5575;
}

.skill-badge:hover {
    background: #ffeef4;
    transform: scale(1.02);
    border-color: #f4aec4;
    color: #c25078;
}

.toolkit-card {
    flex: 1;
    background: #fef6f9;
    border-radius: 28px;
    padding: 1rem 1.2rem;
}

.toolkit-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.toolkit-title i {
    color: #dc7b9a;
    margin-right: 6px;
}

.toolkit-text {
    font-size: 0.85rem;
    margin-top: 8px;
    line-height: 1.5;
}

/* projects section */
.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin: 1.4rem 0 2rem;
}

.project-card {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    flex: 1;
    min-width: 240px;
    text-align: center;
    border: 1px solid #ffe2ec;
    transition: all 0.25s;
    box-shadow: 0 5px 12px rgba(0,0,0,0.02);
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: #f6bfd1;
    box-shadow: 0 18px 24px -12px rgba(160, 80, 100, 0.15);
}

.project-card i {
    font-size: 3rem;
    color: #e47798;
    margin-bottom: 1rem;
}

.project-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #c95f81;
}

.project-card p {
    color: #7c5b67;
    font-style: italic;
}

.coming-soon-badge {
    display: inline-block;
    background: #fadbe4;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ac5473;
    margin-top: 12px;
}

.social-area {
    margin: 2rem 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    background: white;
    padding: 10px 26px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #bb6a88;
    border: 1px solid #ffd9e6;
    transition: 0.25s;
}

.social-icon:hover {
    background: #fff1f6;
    transform: translateY(-4px);
    border-color: #f2a1bb;
    color: #bb4d74;
    box-shadow: 0 8px 16px rgba(211, 110, 140, 0.12);
}

.location-badge {
    background: #fef3f7;
    border-radius: 48px;
    padding: 0.7rem;
    text-align: center;
    font-size: 0.8rem;
    margin: 0.8rem 0;
}

.greeting-box {
    text-align: center;
    margin: 2rem 0 1rem;
}

.greeting-btn {
    background: #fef0f5;
    border: 1px solid #f1bacd;
    padding: 0.5rem 1.6rem;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #c95f81;
    cursor: pointer;
    transition: 0.2s;
}

.greeting-btn:hover {
    background: #ffe6ef;
    transform: scale(0.97);
}

.dynamic-msg {
    margin-top: 12px;
    font-style: italic;
    color: #ba7b94;
    font-size: 0.9rem;
}

footer {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.2rem;
    font-size: 0.75rem;
    color: #c28ea3;
    border-top: 1px solid #ffe2ec;
}

@media (max-width: 700px) {
    .container {
        padding: 1rem;
    }
    .hero {
        flex-direction: column;
        padding: 1.5rem;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    .header {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}