/* * {
    margin: 0;
    padding: 0;
} */

html{
    margin: 0px;
    padding: 0px;
}

body {
    background-color: rgb(255, 255, 255);
    /* background-image: url('../images/chaliceBig.png'); */
    /* background-image: url('../images/holyGrail_black_10.jpeg'); */
    color: rgb(77, 77, 77);

    font-size: 1.15rem;

    overflow-x: hidden;
}

#blackBackgroundDiv {
    position: absolute; top: 0px; left: 0px;
    width: 100vw;
    height: 100%;
    position: fixed;
    z-index: 0;
    background-color: rgb(255, 255, 255);
    opacity: 0;
}

header{
    height: 99vh;
    width: 99vw;
    margin: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

#cupImageContainer {
    height: 85vh;
    width: 100%;
    background-image: url('../images/holyGrail_white_7.jpeg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

#titleContainer {
    height: 10vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header h1 {
    text-transform: uppercase;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: clamp(1.5em, 5vw, 4em);
    margin: 0;
    padding: 0 10px;
}

#scrollMessageContainer {
    height: 4vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pdfPlaceholderWrapper {
    color: #1a1a1a;
    border: 2px solid #003d82;
    background-color: transparent;
    height: 100vh;
    width: 100%;
    margin: auto;
}


.buyAndMoreInfoWrapper{
    width: 100%;
    text-align: center;
    margin: 50px auto;
    overflow: auto;
}
.buyColGold, .moreInDMT{
    font-size: 1.52em;
    padding: 12px;
    margin: 25px 25px;
    display: inline-block;
    color: #1a1a1a;
    border: 2px solid #003d82;
    background-color: transparent;
    border-radius: 11px;
    width: max-content;
    height: max-content;
    transition: all 0.3s ease;
}

.buyColGold:hover, .moreInDMT:hover {
    border-color: #001f4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 61, 130, 0.2);
}

.anchorWithTooltip {
    color: #003d82;
    background-color: transparent;
    border-bottom: 2px dotted #003d82;
    font-weight: 600;
}

main{
    min-width: 80vw;
    margin: auto;
    position: relative;
    z-index: 3;
}

section{
    width: 80vw;
    max-width: 1000px;
    margin: 1.5rem auto;
    background-color: transparent;
    border-radius: 0.5rem;
    border: 2px solid #003d82;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

section:hover {
    box-shadow: 0 4px 15px rgba(0, 61, 130, 0.15);
    transform: translateY(-2px);
}

section p{
    margin: 11px;
    line-height: 1.7;
}

section h3 {
    color: #003d82;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

section li {
    margin: 0.5rem 0;
    line-height: 1.7;
}

section img {
    border: 2px solid #003d82;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}