/*:root {
    --primary-font-family: Arial;
    --primary-font-size: 1.5rem;
    --nav-font-size: 1.6rem;
    --nav-branding-font-size: 2.7rem;
    --master-font-size: 3.6rem;
    --primarycolor: #121212;
    --secondarycolor: white;
    --tertiarycolor: Dodgerblue;
    --quartiarycolor: yellow;
    --fifthcolor: #252735;
    --colornine: #c7c7c7;
    --button-branding: 1.5rem;
    --small-branding-font-size: 2rem;
}
*/
::selection {
    background-color: transparent;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--primary-font-family);
    scroll-behavior: smooth;
}

#hero {
    background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,1)),
        url('img.jpg') no-repeat center center / cover;
}

/*body {
    background: var(--primarycolor);
    color: var(--secondarycolor);
    font-family: var(--primary-font-family);
    font-size: clamp(11pt, var(--primary-font-size), 24pt);
    margin: 0;
    padding: 0;
}*/
/*
#hero {
    min-height: 90vh;
    padding: 20rem 9% 2rem;
}

.hero {
    display: flex;
    align-items: center;
    padding: 0 9%;
}

.hero-content {
    max-width: 60rem;
}

.hero-content h1 {
    font-size: clamp(20pt, var(--master-font-size), 56pt);
    font-weight: 700;
    color: var(--secondarycolor);
}

.hero-content h1.sufix {
    font-size: clamp(20pt, var(--master-font-size), 56pt);
    font-weight: 700;
    color: var(--tertiarycolor-support);
}

.hero-content p {
    font-size: clamp(12pt, calc(var(--small-branding-font-size) - 0.3rem), 25pt);
    font-weight: 400;
    color: var(--colornine);
    margin: 0rem 0 4rem;
}

.hero-buttons {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 34.5rem;
    height: 5rem;
}

.hero-buttons .hero-button {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--tertiarycolor-support);
    width: 15rem;
    height: 100%;
    border: 0.2rem solid var(--tertiarycolor-support);
    border-radius: 0.8rem;
    color: var(--primarycolor-support);
    font-size: var(--button-branding);
    letter-spacing: 0.1rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 1;
    overflow: hidden;
}

.hero-buttons .hero-button:nth-child(2) {
    background: var(--primarycolor);
    color: var(--tertiarycolor-support);
}

.hero-buttons .hero-button:nth-child(2)::before {
    background: var(--tertiarycolor-support);
}

.hero-buttons .hero-button:nth-child(2):hover {
    color: var(--primarycolor-support);
}


.hero-buttons .hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primarycolor);
    z-index: -1;
    transition: .5s;
}

.hero-buttons .hero-button:hover::before {
    width: 100%;
}

.hero-buttons .hero-button:hover {
    color: var(--tertiarycolor-support);
}

@media screen and (max-width: 768px) {
    #hero {
        min-height: 10vh;
        padding: 20rem 9% 2rem;
    }
}
*/

/*Integrated Hero removed for more precise control and universal look*/

@media screen and (max-width: 768px) {

.framed-section {
    padding: 5rem 2% 2rem !important;
}

.framed {
    padding: 0 2% !important;
}
}

/*setup {
    position: relative;
    display: flex;
    left: 95%;
}

#setupmode {
    cursor: pointer;
    font-size: 3rem;
}*/

setup {
    display: none;
}

footer {
    background: black;
    color: white;
    display: flex;
    flex-direction: column; /* stack them */
    gap: 2rem;              /* space between them */
    align-items: center;    /* center them horizontally */
    padding: 5rem;
}

/*footer {
    background: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 5rem;
}*/

.footer-links a {
    margin-right: 1rem;
    color: white;
    text-decoration: underline;
    transition: 0.5s;
}

.footer-links a:hover {
    color: var(--tertiarycolor-support);
    transition: 0.5s;
}