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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e4e4e4;
    line-height: 1.6;
    overflow-x: hidden;
}

.flower-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 182, 193, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(152, 216, 200, 0.3) 0%,
            transparent 50%
        );
    pointer-events: none;
    z-index: 0;
}

header {
    position: relative;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(
        180deg,
        rgba(255, 182, 193, 0.1) 0%,
        rgba(152, 216, 200, 0.05) 100%
    );
    border-bottom: 2px solid rgba(255, 182, 193, 0.3);
}

.profile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid rgba(255, 182, 193, 0.5);
    box-shadow:
        0 0 30px rgba(255, 182, 193, 0.4),
        0 0 15px rgba(152, 216, 200, 0.2);
    object-fit: cover;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow:
        0 0 50px rgba(255, 182, 193, 0.6),
        0 0 25px rgba(152, 216, 200, 0.4);
}

h1 {
    font-size: 3rem;
    background: linear-gradient(90deg, #ffb6c1, #98d8c8, #ffb6c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 182, 193, 0.3);
}

.tagline {
    font-size: 1.2rem;
    color: #b0b0b0;
    font-style: italic;
}

nav {
    position: sticky;
    top: 0;
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 182, 193, 0.2);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links {
    width: 100%;
    display: flex;
    justify-content: center;
}

nav a {
    color: #e4e4e4;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav a:hover {
    color: #ffb6c1;
    background: linear-gradient(
        135deg,
        rgba(255, 182, 193, 0.1),
        rgba(152, 216, 200, 0.1)
    );
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

section {
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 182, 193, 0.2);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow:
        0 10px 30px rgba(255, 182, 193, 0.2),
        0 5px 15px rgba(152, 216, 200, 0.1);
}

h2 {
    font-size: 2rem;
    color: #ffb6c1;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffb6c1, #98d8c8);
}

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

.skill-card {
    background: rgba(255, 182, 193, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffb6c1;
    transition: all 0.3s ease;
}

.skill-card:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 182, 193, 0.15),
        rgba(152, 216, 200, 0.1)
    );
    transform: translateX(5px);
    border-left-color: #98d8c8;
}

.skill-card h3 {
    color: #ffb6c1;
    margin-bottom: 0.5rem;
}

.skill-card ul {
    list-style: none;
    padding-left: 0;
}

.skill-card li {
    padding: 0.3rem 0;
    color: #c0c0c0;
}

.skill-card li::before {
    content: "✦ ";
    color: #98d8c8;
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 2px solid rgba(152, 216, 200, 0.2);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow:
        0 8px 30px rgba(255, 182, 193, 0.3),
        0 4px 15px rgba(152, 216, 200, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
}

.contact-card {
    background: linear-gradient(
        135deg,
        rgba(255, 182, 193, 0.1),
        rgba(152, 216, 200, 0.05)
    );
    padding: 1.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    min-width: 200px;
    transition: all 0.3s ease;
    border: 1px solid rgba(152, 216, 200, 0.2);
}

.contact-card:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 182, 193, 0.15),
        rgba(152, 216, 200, 0.1)
    );
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(152, 216, 200, 0.2);
}

.contact-card h3 {
    color: #98d8c8;
}

.quote {
    font-style: italic;
    font-size: 1.2rem;
    text-align: center;
    color: #ffb6c1;
    padding: 2rem;
    margin: 3rem 0;
    background: linear-gradient(
        135deg,
        rgba(255, 182, 193, 0.05),
        rgba(152, 216, 200, 0.05)
    );
    border-left: 4px solid #98d8c8;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #888;
    border-top: 1px solid rgba(152, 216, 200, 0.2);
    margin-top: 4rem;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .profile-section {
        flex-direction: column;
        gap: 1.5rem;
    }

    .profile-img {
        width: 150px;
        height: 150px;
    }

    .tagline {
        font-size: 1rem;
    }

    nav {
        padding: 0.75rem 1rem;
    }

    nav ul {
        gap: 0.5rem;
        justify-content: space-around;
    }

    nav a {
        padding: 0.4rem 0.75rem;
        font-size: 0.9rem;
    }

    section {
        padding: 1.5rem;
        margin: 2.5rem 0;
    }

    .container {
        padding: 1rem;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .quote {
        font-size: 1.1rem;
        padding: 1.5rem;
        margin: 2rem 0;
    }

    h2 {
        font-size: 1.75rem;
    }

    .contact-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    header {
        padding: 2.5rem 1rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }

    nav ul {
        gap: 0.25rem;
    }

    nav a {
        padding: 0.3rem 0.5rem;
        font-size: 0.85rem;
    }

    .container {
        padding: 0.75rem;
    }

    section {
        padding: 1.25rem;
        margin: 2rem 0;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .gallery-item img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }

    .contact-card {
        padding: 1rem;
        min-width: 100%;
    }

    footer {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 360px) {
    h1 {
        font-size: 1.5rem;
    }

    .profile-img {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }

    .tagline {
        font-size: 0.9rem;
    }

    nav ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    nav a {
        display: block;
        padding: 0.4rem 0.3rem;
        font-size: 0.8rem;
    }

    .quote {
        font-size: 1rem;
        padding: 1rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .skill-card h3 {
        font-size: 1.1rem;
    }

    .skill-card li {
        font-size: 0.9rem;
    }

    footer p {
        font-size: 0.8rem;
    }
}
