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

:root {
    --baby-pink: #FFB6C1;
    --light-pink: #FFC9D0;
    --dark-pink: #FF9DB5;
    --cream: #FFFDD0;
    --light-cream: #FFFEF7;
    --text-dark: #4A4A4A;
    --text-light: #6B6B6B;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

header {
    background: linear-gradient(135deg, var(--baby-pink) 0%, var(--light-pink) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(255, 182, 193, 0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 0.8;
}

.hero {
    background: linear-gradient(135deg, var(--baby-pink) 0%, var(--light-pink) 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.profile-section {
    max-width: 800px;
    margin: 0 auto;
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid white;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--dark-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link,
.cta-button {
    padding: 0.8rem 2rem;
    background: white;
    color: var(--baby-pink);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-link:hover,
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.intro-section {
    background: var(--light-cream);
    text-align: center;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--baby-pink);
}

.intro-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.features-section {
    padding: 4rem 2rem;
    background: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--cream);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 182, 193, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--baby-pink);
    margin-bottom: 1rem;
}

.feature-link {
    color: var(--baby-pink);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
}

.about-section {
    background: var(--light-cream);
    padding: 4rem 2rem;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--baby-pink);
    margin-bottom: 3rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.2);
}

.about-content h3 {
    color: var(--baby-pink);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content h3:first-of-type {
    margin-top: 0;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.resume-section {
    background: white;
    padding: 4rem 2rem;
}

.resume-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--baby-pink);
    margin-bottom: 3rem;
}

.resume-header {
    text-align: center;
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.2);
    margin-bottom: 2rem;
    border: 2px solid var(--cream);
}

.resume-header h3 {
    font-size: 2rem;
    color: var(--baby-pink);
    margin-bottom: 1rem;
}

.resume-header p {
    margin: 0.5rem 0;
    color: var(--text-light);
}

.resume-header a {
    color: var(--baby-pink);
    text-decoration: none;
}

.resume-header a:hover {
    text-decoration: underline;
}

.resume-section-block {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.2);
    margin-bottom: 2rem;
    border: 2px solid var(--cream);
}

.resume-section-block h4 {
    color: var(--baby-pink);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--baby-pink);
}

.resume-item {
    margin-bottom: 2rem;
}

.resume-item:last-child {
    margin-bottom: 0;
}

.resume-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.resume-item-header strong {
    color: var(--text-dark);
}

.resume-item-header em {
    color: var(--text-light);
}

.resume-item-header span {
    color: var(--text-light);
}

.resume-item ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.resume-item li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.resume-section-block > p {
    color: var(--text-light);
    line-height: 1.8;
}

.blog-section {
    background: var(--light-cream);
    padding: 4rem 2rem;
}

.blog-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--baby-pink);
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.2);
    border: 2px solid var(--cream);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 182, 193, 0.3);
}

.blog-date {
    color: var(--baby-pink);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    color: var(--baby-pink);
    margin-bottom: 1rem;
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.gallery-section {
    background: white;
    padding: 4rem 2rem;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--baby-pink);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--cream) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.2);
    transition: transform 0.3s;
    border: 2px solid var(--baby-pink);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.contact-section {
    background: var(--light-cream);
    padding: 4rem 2rem;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--baby-pink);
    margin-bottom: 3rem;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.2);
    border: 2px solid var(--cream);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.contact-item-icon {
    font-size: 1.5rem;
    color: var(--baby-pink);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--baby-pink);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--cream);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--baby-pink);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--baby-pink) 0%, var(--light-pink) 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
}

.personal-promo {
    background: linear-gradient(135deg, var(--baby-pink) 0%, var(--light-pink) 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.personal-promo h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.personal-promo p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: var(--baby-pink);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

footer {
    background: linear-gradient(135deg, var(--baby-pink) 0%, var(--light-pink) 100%);
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    font-size: 1.5rem;
}

.social-icons a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}

.footer-links {
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .container {
        padding: 2rem 1rem;
    }

    .about-content,
    .contact-content {
        padding: 2rem;
    }
}