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

body {
    background-color: #1e1e1e; /* Dark background */
    color: #f5f5f5; /* Light text */
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Header */
header {
    text-align: center;
    margin: 2rem 0;
}

.header-img {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

header h1 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ff387e, #fb8fff); /* Diagonal gradient from top-left to bottom-right */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ff69b4; /* Fallback color for older browsers */
    margin-bottom: 0.5rem;
}

header h1 .emoji {
    -webkit-text-fill-color: initial; /* Reset the fill color for emojis */
    background: none; /* Ensure no gradient is applied */
}

header p {
    color: #e0e0e0;
}

/* Navigation */
nav ul {
    list-style-type: none;
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

nav ul li a {
    color: #ff69b4;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff91c5;
}

/* Sections */
section {
    margin: 2rem 0;
    padding: 1rem;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
    background-color: #2b2b2b;
}

section h2 {
    color: #ff69b4;
    margin-bottom: 0.5rem;
}

section p, section ul {
    color: #e0e0e0;
    line-height: 1.6;
}

.padding-left {
  padding-left: 1.5rem;
}

/* Projects Section Links */
#projects a {
    color: #ff69b4; /* Pink link color */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold text for the links */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

#projects a:hover {
    color: #ff91c5; /* Lighter pink on hover */
}

blockquote {
    font-style: italic;
    color: #ff91c5;
    margin: 1rem 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    color: #b3b3b3;
}

.footer-img {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    margin-top: 1rem;
}
