/*-------- Layout -------*/
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgba(0, 0, 255, 0.1);
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

main {
    flex: 1;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

/*-------- Nav ---------*/
.navBar {
    display: flex;
    gap: 30px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
}

/*------- Nav Links + Transition ---------*/
.navBar a {
    background-color: rgba(0, 0, 255, 0.4);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
    padding: 10px 5px;
    width: 200px;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    text-decoration: none;
    color: #000;
    text-align: center;
    position: relative;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.navBar a:hover {
    transform: translateY(-10px) scale(1.2);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.8);
    background-color: rgba(0, 0, 255, 0.6);
    cursor: pointer;
}

/*------- Pseudo-element underline effect --------*/
.navBar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: yellow;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navBar a:hover::after {
    width: 100%;
}

/*------- Social Icons --------*/
.social-logo {
    margin: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    clip-path: circle(50%);
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        box-shadow 0.3s ease;
}

.social-logo:hover {
    transform: translateY(-10px) scale(1.2);
    opacity: 0.7;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

/*------- Footer ----------*/
footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 12px;
    width: 100%;
    margin-top: 20px;
}

footer p {
    margin: 5px 0 0;
}

footer a {
    color: #000;
    text-decoration: none;
}
