/************************************** GENERAL **************************************/
body {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
}

a {
    text-decoration: none;
    color: #DFB5FF;
    font-weight: 500;
}

a:hover {
    color: #E8C6FF;
}

.fa {
    color: #DFB5FF;
    margin: 0 5px 0 0;
}

main {
    margin: auto 150px;
     /* fallback height */
   min-height:80vh;

   /* new small viewport height for modern browsers */
   min-height:80svh;
}

.song-cover-home {
    width: 100%;
    max-width: 300px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.song-cover-home:hover {
    border-color: #DFB5FF;
    transform: rotate(-1deg) scale(1.02);
    filter: contrast(1.1) saturate(1.2);
}

.row {
    margin: 30px auto;
    padding: 20px;
    border: 1px solid rgba(223, 181, 255, 0.1);
    position: relative;
}

.row::before {
    content: '▸▸▸';
    position: absolute;
    top: -10px;
    left: 20px;
    background: rgba(26, 26, 26, 0.9);
    color: #DFB5FF;
    padding: 0 10px;
    font-size: 12px;
    letter-spacing: 2px;
}

.self-center {
    justify-self: center;
}

.flex-bottom {
    align-self: flex-end;
}


/* Mobile */
@media (max-width: 768px) {
    main {
        margin: auto 20px;
        padding-bottom: 150px;
    }

    .row {
        padding: 15px;
        margin: 20px auto;
    }

    .row::before {
        font-size: 10px;
        left: 15px;
    }
}

/************************************** NAV **************************************/
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #1a1a1a;
    border-bottom: 3px solid #DFB5FF;
}

.image-logo {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

nav a {
    color: #DFB5FF;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    background: rgba(51, 51, 51, 0.3);
}

nav a:hover {
    color: #E8C6FF;
    border-color: #DFB5FF;
    background: rgba(68, 68, 68, 0.4);
    transform: translateY(-1px);
}


/* Mobile */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
    }

    .image-logo {
        height: 50px;
    }
}

/************************************** HOME **************************************/
.self-portrait-home {
    width: 100%;
    max-width: 400px;
    border: 2px solid #DFB5FF;
    overflow: hidden;
}

.image-hover {
    background-image: url('../assets/self-portrait-1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    height: 250px;
    position: relative;
    cursor: pointer;
}

.image-hover::after {
    content: '\f245';
    font-family: FontAwesome;
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: #DFB5FF;
    font-size: 18px;
    opacity: 0.7;
    transition: all 0.3s ease;
    transform: rotate(-10deg) scale(0.9);
    text-shadow: 0 0 8px rgba(223, 181, 255, 0.6);
    animation: subtlePulse 2s ease-in-out infinite;
}

.image-hover:hover {
    background-image: url('../assets/self-portrait-2.jpg');
    transform: scale(1.02);
}

.image-hover:hover::after {
    opacity: 1;
    transform: rotate(0deg) scale(1.1);
    color: #E8C6FF;
    animation: cursorBounce 0.6s ease;
}

@keyframes subtlePulse {

    0%,
    100% {
        opacity: 0.7;
        transform: rotate(-10deg) scale(0.9);
    }

    50% {
        opacity: 0.9;
        transform: rotate(-8deg) scale(0.95);
    }
}

@keyframes cursorBounce {

    0%,
    100% {
        transform: rotate(0deg) scale(1.1);
    }

    50% {
        transform: rotate(5deg) scale(1.2);
    }
}

.home-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.home-coming-up {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

@media (max-width: 768px) {
    .home-intro {
        grid-template-columns: 1fr;
    }

    .home-coming-up {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/************************************** FOOTER **************************************/
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.01rem;
    background: #1a1a1a;
    border-top: 3px solid #DFB5FF;
    margin-top:auto;
 
}

.footer p {
    color: #DFB5FF;
    font-weight: 500;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
  