/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'RCT2', Arial, sans-serif;
    font-weight: 500;
}

@font-face {
    font-family: 'RCT2';
    src: url('/fonts/RCT2.ttf') format('truetype');
}

body {
    background-image: url('assets/background.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    color: #0f0f0f;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #444444;
}


::-webkit-scrollbar-thumb {
    background: #ffacd3;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff80bc;
} 

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

/* Logo */
.logo {
    width: 500px;
    margin: 20px auto;
    display: block;
    user-select: none;
}

/* Members List */
main {
    max-width: 500px;
    margin: auto;
}

.member-card {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 12px 16px;
    margin: 0 0 20px;
    background-color: #f0f0f0;
    border-bottom: 4px solid #ff80bc;
    border-radius: 8px;
    box-shadow: 0 4px 6px #cd2eb6;
    line-height: 24px;
    transition: all 0.2s ease-in-out;
}

.member-card:hover {
    scale: 1.02;
    box-shadow: 0 6px 8px #5e7a2a;
    border-bottom-color: #89c022;
}

.member-logo-wrap {
    width: 115px;
    height: 115px;
    transform: rotate(-2deg);
    border-radius: 10px;
    user-select: none;
    transition: all 0.2s ease-in-out;
}

.member-card:hover .member-logo-wrap {
    transform: rotate(0deg);
    transform: scale(1.05);
}

.member-logo {
    width: 115px;
    height: 115px;
    border: 4px solid #ff80bc;
    border-radius: 10px;
}

.member-card:hover .member-logo {
    border: 4px solid #89c022;
}

.member-info {
    flex: 1;
    margin: 0 20px;
}

.member-name {
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
}

.member-short {
    font-size: 22px;
    color: #353535;
}

.member-card:hover .member-short {
    text-decoration: underline 2px #89c022;
}

/* Footer */
footer {
    position: sticky;
    bottom: 0;
    padding: 20px;
}

footer .social-icon .fa-twitter {
    padding: 10px;
    background-color: #55acee;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 6px 8px #000000c8;
    transition: all 0.2s ease-in-out;
}

footer .social-icon .fa-twitter:hover {
    background-color: #ffffff;
    color: #55acee;
    scale: 1.1;
    box-shadow: 0 8px 10px #000000c8;
}

/* Responsivenes */
@media screen and (max-width: 768px) {
    /* Base Styles */
    ::-webkit-scrollbar {
        width: 12px;
    }

    ::-webkit-scrollbar-track {
        background: #444444;
    }

    ::-webkit-scrollbar-thumb {
        background: #ffacd3;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #ff80bc;
    } 

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

    /* Logo */
    .logo {
        width: 400px;
    }

    /* Members List */
    main {
        max-width: 350px;
    }

    .member-card {
        padding: 12px 16px;
        margin: 0 0 15px;
        text-decoration: none;
        background-color: #f0f0f0;
        border-bottom: 4px solid #ff80bc;
        border-radius: 8px;
        box-shadow: 0 4px 6px #cd2eb6;
        transition: all 0.2s ease-in-out;
        line-height: 24px;
    }

    .member-card:hover {
        scale: 1.02;
        box-shadow: 0 6px 8px #000000c8;
        border-bottom-color: #89c022;
    }

    .member-logo-wrap {
        width: 75px;
        height: 75px;
        transform: rotate(-2deg);
        border-radius: 10px;
        user-select: none;
        transition: all 0.2s ease-in-out;
    }

    .member-card:hover .member-logo-wrap {
        transform: rotate(0deg);
        transform: scale(1.05);
    }

    .member-logo {
        width: 75px;
        height: 75px;
        border: 4px solid #ff80bc;
        border-radius: 10px;
    }

    .member-card:hover .member-logo {
        border: 4px solid #89c022;
    }

    .member-info {
        flex: 2;
        margin: 0 20px;
    }

    .member-name {
        font-size: 32px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .member-short {
        font-size: 19px;
        color: #353535;
    }

    .member-card:hover .member-short {
        text-decoration: underline 2px #89c022;
    }

    /* Footer */
    footer {
        padding: 10px;
    }

    footer .social-icon .fa-twitter {
        padding: 10px;
    }
}
