@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #343541;
    background-image:
        radial-gradient(circle at 15% 10%, rgba(255, 46, 166, 0.18), transparent 32%),
        radial-gradient(circle at 85% 90%, rgba(0, 245, 255, 0.10), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 40%);
    color: #ffffff;
}

.content-wrapper {
    width: 100%;
    max-width: 800px;
    background-color: #0d0f14;
    border: 4px solid #ff2ea6;
    box-shadow:
        0 0 8px #ff2ea6,
        0 0 20px rgba(255, 46, 166, 0.95),
        0 0 48px rgba(255, 46, 166, 0.75),
        0 0 90px rgba(255, 46, 166, 0.45),
        inset 0 0 24px rgba(255, 46, 166, 0.18);
    padding: 20px;
    border-radius: 18px;
}

header {
    background-color: #171923;
    color: #f7f7ff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid rgba(255, 46, 166, 0.65);
    box-shadow: inset 0 -1px 0 rgba(0, 245, 255, 0.25);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff7edb;
    letter-spacing: 1px;
    text-shadow:
        0 0 6px rgba(255, 46, 166, 0.9),
        0 0 18px rgba(255, 46, 166, 0.55);
}

nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding-right: 5px;
}

nav ul li {
    margin: 0.5rem 0;
}

nav ul li a {
    color: #f7f7ff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease, font-weight 0.3s ease, text-shadow 0.3s ease;
    display: inline-block;
    width: 100px;
    text-align: center;
}

nav ul li a:hover {
    color: #ff2ea6;
    font-weight: bold;
    text-shadow:
        0 0 8px rgba(255, 46, 166, 0.95),
        0 0 18px rgba(255, 46, 166, 0.65);
}

main {
    flex: 1;
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
}

#about {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#about h2 {
    margin-bottom: 1rem;
    color: #ff7edb;
    text-shadow: 0 0 10px rgba(255, 46, 166, 0.75);
}

#about p {
    text-align: left;
    margin-top: 1rem;
    max-width: 600px;
    color: #d7d9e0;
    line-height: 1.55;
}

.headshot {
    width: 150px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #ff2ea6;
    box-shadow:
        0 0 10px rgba(255, 46, 166, 0.95),
        0 0 24px rgba(255, 46, 166, 0.65);
}

footer {
    background-color: #171923;
    color: #f7f7ff;
    text-align: center;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    border-top: 1px solid rgba(255, 46, 166, 0.65);
    box-shadow: inset 0 1px 0 rgba(0, 245, 255, 0.25);
}

.social-media {
    margin-top: 0.5rem;
}

.social-media a {
    color: #ff7edb;
    margin: 0 10px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.social-media a:hover {
    color: #ffffff;
    text-shadow:
        0 0 8px rgba(255, 46, 166, 0.95),
        0 0 18px rgba(255, 46, 166, 0.65);
    transform: translateY(-1px);
}

section h2 {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #ff7edb;
    text-shadow: 0 0 8px rgba(255, 46, 166, 0.65);
}

section h2 .toggle-icon {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 4px rgba(255, 46, 166, 0.85));
}

.projects-entries, #work-history-entries {
    display: none;
}

.projects-entries .entry, #work-history-entries .entry {
    position: relative;
    margin: 10px 0;
    padding: 10px 10px 10px 30px;
    transition: background-color 0.3s ease, color 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
    color: #d7d9e0;
    cursor: pointer;
    border: 1px solid rgba(255, 46, 166, 0.12);
    border-radius: 10px;
}

.projects-entries .entry::before, #work-history-entries .entry::before {
    content: "\2022";
    color: #00f5ff;
    font-size: 12px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.85);
}

.projects-entries .entry:hover, #work-history-entries .entry:hover {
    background-color: rgba(255, 46, 166, 0.13);
    color: #ffffff;
    border-radius: 20px;
    box-shadow:
        0 0 10px rgba(255, 46, 166, 0.55),
        inset 0 0 12px rgba(255, 46, 166, 0.12);
}

.projects-entries .entry:hover::before, #work-history-entries .entry:hover::before {
    color: #ff2ea6;
    text-shadow: 0 0 8px rgba(255, 46, 166, 0.95);
}

.projects-entries .entry a {
    color: #00f5ff;
    text-decoration: none;
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.65);
}

.projects-entries .entry a:hover {
    color: #ffffff;
    text-shadow:
        0 0 8px rgba(0, 245, 255, 0.95),
        0 0 16px rgba(255, 46, 166, 0.65);
}

#work-history-entries h3 {
    color: #f7f7ff;
}

#work-history-entries p {
    color: #b8beca;
}

.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 6, 10, 0.82);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.popup-content {
    background-color: #0d0f14;
    padding: 20px;
    border: 3px solid #ff2ea6;
    width: 80%;
    max-width: 600px;
    text-align: center;
    border-radius: 12px;
    color: #f7f7ff;
    box-shadow:
        0 0 12px rgba(255, 46, 166, 0.95),
        0 0 36px rgba(255, 46, 166, 0.65),
        inset 0 0 18px rgba(255, 46, 166, 0.15);
}

.close-btn {
    color: #ff7edb;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    text-shadow: 0 0 8px rgba(255, 46, 166, 0.75);
}

.close-btn:hover,
.close-btn:focus {
    color: #ffffff;
    text-decoration: none;
    text-shadow:
        0 0 8px rgba(255, 46, 166, 0.95),
        0 0 18px rgba(255, 46, 166, 0.65);
}

#popup-image {
    width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 0 18px rgba(0, 245, 255, 0.18);
}

#popup-video {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 18px rgba(0, 245, 255, 0.18);
}

.popup-description {
    margin-top: 20px;
    color: #d7d9e0;
    line-height: 1.5;
}

.popup .contact-icon {
    color: #ff7edb;
    margin: 0 10px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.popup .contact-icon:hover {
    color: #ffffff;
    text-shadow:
        0 0 8px rgba(255, 46, 166, 0.95),
        0 0 18px rgba(255, 46, 166, 0.65);
    transform: translateY(-1px);
}

.brand-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.15rem;
}

.brand-title h2 {
    margin: 0;
    color: #00f5ff;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow:
        0 0 8px rgba(0, 245, 255, 0.9),
        0 0 18px rgba(0, 245, 255, 0.55);
}

.song-entry p {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: baseline;
}

.song-meta {
    color: #b8beca;
    font-size: 0.95rem;
}
