/* ===== General Styles ===== */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #fce4ec; /* soft pink text */
    background: #1c1c1c;
    display: flex;
    flex-direction: column;
}

/* ===== Header ===== */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 30px;
    text-align: left;

    /* Gradient animation */
    background: linear-gradient(132deg, #000000, #e91e63, #121212, #ff4081, #0a0a0a, #e91e63);
    background-size: 400% 400%;
    animation: BackgroundGradient 25s ease infinite;

    color: white;
    border-bottom: 3px solid #e91e63;
}


@keyframes BackgroundGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header h1 {
    margin: 0;
    font-size: 2rem;
    max-width: 700px;
    font-weight: bold;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-top: 15px;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(233, 30, 99, 0.4);
    transition: transform 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.08);
}

/* ===== Paragraphs ===== */
p {
    text-align: center;
    padding-left: 18%;
    padding-right: 18%;
    margin-top: 20px;
    font-size: 1.05rem;
}

/* ===== Navigation ===== */
nav {
    margin: 30px 0;
    text-align: center;
}

nav a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 16px;
    background: linear-gradient(90deg, #e91e63, #c2185b);
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

nav a:hover {
    background: linear-gradient(90deg, #c2185b, #880e4f);
    border-color: #f8bbd0;
}

/* ===== Projects Header ===== */
h2 {
    margin-top: 30px;
    color: #ff80ab;
    text-align: center;
    font-size: 28px;
    padding-bottom: 5px;
    border-bottom: 2px solid #f8bbd0;
    background: transparent;
}

/* ===== Project List ===== */
ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
}

ul li {
    margin: 15px 0;
}

ul li a {
    display: inline-block;
    color: #3e2723;
    background: linear-gradient(270deg, #f48fb1, #fce4ec);
    text-decoration: none;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.15);
    transition: all 0.3s ease, transform 0.2s ease;
}

ul li a:hover {
    background: linear-gradient(135deg, #ff4081, #b0003a);
    color: #fff0f6; /* softer white */
    border: 1px solid #f8bbd0;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.45);
}
