/* color theme under: https://coolors.co/121212-1e1e1e-cccccc-9b5de5-c77dff-ffffff*/
/* svgs from https://simpleicons.org */
/* I want a global dark theme for my website, mixed with some purple. */

/* Style of the overall body. */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Style of the overview at the top. */

.overviewContainer {
    padding-top: 8rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overviewTitle {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.overviewSubtitle {
    color: #cccccc;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Style of the listing inside the sides. */

.Listing {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ListingEntry {
    padding: 1.5rem 2rem;
    border: 1px solid #2a2a2a;
    border-left: 4px solid #9B5DE5;
    background-color: #1E1E1E;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.ListingEntry:hover {
    border-left: 4px solid #C77DFF;
    transform: translateX(6px);
    box-shadow: 0 0 15px rgba(155,93,229,0.3);
}

.ListingItem {
    color: #9B5DE5;
    font-weight: bold;
    letter-spacing: 1px;
}

.ListingText {
    color: #ffffff;
    font-size: 1.1rem;
}




/* Style of the navigation bar. */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid #9B5DE5;

    display: flex;
    gap: 2rem;
    padding: 1rem 2rem;
    z-index: 1000;

    box-shadow: 0 2px 10px rgba(155,93,229,0.3);
}

.navbar a {
    color: white;
    font-size: 1.1rem;
    transition: 0.2s;
}

.navbar a:hover {
    color: #C77DFF;
    text-shadow: 0 0 10px #9B5DE5;
}

/* This part is for everything related to the footer.*/

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #9B5DE5;
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #cccccc;
    background-color: #121212;
    box-shadow: 0 2px 10px rgba(155,93,229,0.3);
}

.socials {
    margin-top: 1rem;
}

.socialButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.socialButton img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

.socialButton:hover{
    background-color: #C77DFF;
    box-shadow: 0 0 15px #C77DFF;
}

.socialButton:hover {
    transform: scale(1.4);
}


/* Mobile Optimization */
@media (max-width: 750px) {

    .overviewContainer {
        padding-top: 7rem;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .overviewTitle {
        font-size: 2rem;
    }

    .overviewSubtitle {
        font-size: 0.95rem;
    }

    .ListingEntry {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .ListingText {
        font-size: 1rem;
    }

    .ListingEntry:hover {
        transform: none;
    }

    .navbar {
        gap: 1.2rem;
        padding: 0.8rem 1rem;
    }

    .navbar a {
        font-size: 1rem;
    }

    .socialButton {
        width: 40px;
        height: 40px;
    }

    .socialButton img {
        width: 20px;
        height: 20px;
    }

    .ListingEntry {
    text-align: center;
    align-items: center;
    }
}