:root {
    --font-family: 'DIN Condensed', serif;
}


/* General Body Styles */
body {
    font-family: var(--font-family); /* Use the CSS variable for font-family */
    font-weight: normal;
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    height: 100vh;
    overflow: hidden;
}

/* Top Center Section */
.topCenter {
    position: fixed; /* Keeps it fixed at the top */
    top: 2vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    padding: 1em;
    font-size: clamp(2rem, 4vh, 6rem);
    font-weight: bold;
    max-width: 90vw;
    white-space: nowrap; /* Ensures the text stays on one line */
}

.name {
    font-size: clamp(3rem, 4vh, 4rem);
    line-height: 1.1; /* Tighter line spacing for the name */
}

.info {
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    line-height: 1; /* Slightly looser line spacing for the info */
}

/* General Link Styles */
a {
    color: white; /* Make the link text white */
    text-decoration: none; /* Remove underline */
}

/* Phone Link Specific Style */
.phone {
    font-weight: bold; /* Keep the phone number bold */
}

.phone:hover {
    text-decoration: underline; /* Optional: underline on hover */
    color: lightgray; /* Optional: change hover color */
}

/* Email Link Specific Style */
.email {
    font-weight: bold; /* Keep the email bold */
}

.email:hover {
    text-decoration: underline; /* Optional: underline on hover */
    color: lightgray; /* Optional: change hover color */
}

/* PDF Button */
.menu {
    position: fixed;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    font-size: 12vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pdf-button {
    display: inline-block;
    padding: 1em 2em;
    border: 2px solid white;
    text-decoration: none;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: white;
    background-color: transparent;
    text-align: center;
    transition: all 0.1s ease-in-out;
    margin-top: 3vh;
}

.pdf-button:hover {
    box-shadow: 2px 2px rgb(255, 255, 255); /* White box shadow */
    transform: translate(-2px, -2px); /* Move button 5px to the left and top */
    transition: all 0.1s ease-in-out; /* Smooth transition effect */
}


/* Responsive Design */
@media (max-width: 768px) {
    .topCenter {
        font-size: clamp(1.5em, 10vw, 6rem);
    }

    .name {
        font-size: clamp(0.9em, 7vw, 5rem);
    }


    .info {
        font-size: clamp(0.7em, 5vw, 3rem);
    }

    .pdf-button {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
        margin-top: 0vh;
    }
}
