
html, body {
    margin: 0;
    padding: 0;
}

.person {
    margin: 0;
    padding: 0;
    margin-top: 3rem;
    margin-left: 2rem;
    margin-right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.col-one {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.person-img {
    width: 30rem;
    height: 30rem;
    box-shadow: 5px 5px gold;
    border: solid gold 1.2px;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .person {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .person {
        flex-direction: row;
    }
}

@media (min-width: 1200px) {
    .person {
        flex-direction: row;
    }
}




.val-table {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-collapse: separate;
    border-spacing: 0;
    border: 1.2px solid gold;
    box-shadow: 5px 5px gold;
    border-radius: 12px;
    overflow: hidden; 
    font-size: 1.1rem;
}


.val-table thead {
    background-color: black;
    color: white;
}

.val-table thead th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

/*
.val-table thead th:last-child {
    color: gold; 
}
*/


.val-table tbody td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    background-color: white;
    color: black;
    transition: all 0.2s ease;
}

.val-table tbody tr:last-child td {
    border-bottom: none;
}


.val-table tbody tr:hover td {
    background-color: #fff9e6; 
    transform: scale(1.01);
}


.val-table tbody td:last-child {
    font-weight: bold;
    color: black;
}


@media (max-width: 600px) {
    .val-table {
        box-shadow: 3px 3px gold;
    }
    .val-table thead th,
    .val-table tbody td {
        padding: 0.8rem;
        font-size: 1rem;
    }
}


.col-two {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

/*
.valname {
    color: black;
    font-weight: bolder;
    text-shadow: 1.2px 1.2px gold;
    font-size: 6rem;
}
*/

.valname {
    color: black;
    font-weight: bolder;
    font-size: 6rem;
    background: linear-gradient(
        -45deg,
        #000 20%,
        #333 30%,
        gold 40%,
        #333 50%,
        #000 60%,
        gold 70%,
        #000 80%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: liquidGold 4s ease-in-out infinite;
}

@keyframes liquidGold {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.valdesc {
    font-size: 1.5rem;
    margin-right: 10rem;
}


.person-img2 {
    width: 30rem;
    height: 30rem;
    box-shadow: 5px 5px gold;
    border: solid gold 1.2px;
    /* margin-top: 2rem; */
}

@media (max-width: 1024px) {
    .valname {
        font-size: 5rem;
    }

    .valdesc {
        font-size: 1.3rem;
        margin-right: 4rem;
    }

    .person-img, .person-img2 {
        width: 25rem;
        height: 25rem;
    }
}

@media (max-width: 768px) {
    .person {
        flex-direction: column;
        align-items: center;
        margin-left: 1rem;
        margin-right: 1rem;
        gap: 1.5rem;
    }

    .col-one, .col-two {
        width: 100%;
        align-items: center;
    }

    .col-one {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .person-img, .person-img2 {
        width: 100%;
        max-width: 20rem;
        height: auto;
    }

    .person-img {
        margin-top: 2rem;
    }

    .valname {
        font-size: 3.5rem;
        text-align: center;
    }

    .valdesc {
        font-size: 1.1rem;
        margin-right: 0;
        text-align: center;
    }

    .val-table {
        max-width: 100%;
        margin: 1.5rem auto;
        font-size: 1rem;
    }

    .val-table thead th {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .val-table tbody td {
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    .person {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        gap: 1rem;
    }

    .person-img, .person-img2 {
        max-width: 16rem;
    }

    .valname {
        font-size: 2.5rem;
    }

    .valdesc {
        font-size: 0.95rem;
    }

    .val-table {
        font-size: 0.85rem;
    }

    .val-table thead th,
    .val-table tbody td {
        padding: 0.5rem 0.7rem;
    }
}