:root{
    --blue: #0015d6;
    --red: #cf0015;
    --black: #0D0D0D;
    --gold: #ffdd1d;
    --mutedgold: #c9ab01;
    --gray: #BDBDBD;
    --white: #FFFFFF;
    --dark-blue: #000009;
    --blue-rgb: 0,21,214;
    --red-rgb: 207,0,21;
    --black-rgb: 13,13,13;
    --gold-rgb: 255,215,0;
    --mutedgold-rgb: 201,171,1;
    --gray-rgb: 189,189,189;
    --white-rgb: 240,240,240;
}

h1{
    font-size: clamp(10px, 5rem, min(8vh, 10vw));
}

h2{
    font-size: clamp(10px, 4rem, min(7vh, 9vw));
}

h3{
    font-size: clamp(10px, 3rem, min(6vh, 8vw));
}

h4{
    font-size: clamp(10px, 2rem, min(5vh, 7vw));
}

p{
    font-size: clamp(10px, 2rem, min(3vh, 5vw));
}

li{
    font-size: clamp(10px, 2rem, min(3vh, 5vw));
}

button{
    width: 100%;
    background-color: gold;
    font-size: clamp(10px, 2rem, min(5vh, 7vw));
    border-radius: 50px;
    border-width: 4px;
}

#footer-img{
    max-width: 50%;
}

.flex{
    display: flex;
}

.column{
    flex-direction: column;
}

.center{
    align-items: center;
}

.bold{
    font-weight: bold;
}

.italics{
    font-style: italic;
}

.underlined{
    text-decoration: underline;
}

.form {
    background-color: var(--black);
    padding: 10px;
    display: flex;
    flex-direction: column;
    position: relative; 
    width: 70%;
    height: 100%;
    margin: 50px auto;
    border: 5px solid var(--gold); 
    border-radius: 25px;
}

/*.form::before {
    content: "";
    display: block;
    position: absolute;
    top: -15px; 
    left: -15px; 
    width: calc(100% + 30px); 
    height: calc(100% + 30px);
    background-color: var(--black);
    z-index: -2; 
    border-radius: 25px;
}

.form::after {
    content: "";
    display: block;
    position: absolute;     
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background-color: var(--gold);
    z-index: -1; 
    border-radius: 25px;
}*/

.accent{
    color: var(--gold);
    background-color: var(--black);
}

.blue{
    color: var(--blue);

}

.red{
    color: var(--red);
}

body{
    margin: 0;
    font-family:Arial, Helvetica, sans-serif;
    height: 100%;
    width: 100%;
    color: var(--white);
    overflow-x: hidden;
}

a{
    align-content: center;
    transition: all 0.5s;
}

.navbar{
    background-image: linear-gradient(to bottom, rgba(0,0,0,1) 30%, rgba(0,0,0,0)100%);
    width: 100%;
    height: 10dvh;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    color: white;
    top: 0;
    z-index: 10;
    position: sticky;
    pointer-events: none;
}

.page-title{
    text-align: center;
    background-color: rgba(0,0,0,0.6);
    font-size: 5rem;
    margin-top: 0;
    margin-bottom: 2.5%;
}

@keyframes display{
    from{
        display: none;
    }
    to{
        display: block;
    }
}

.navbar a{
    height: 100%;
}

#home-blurb{
    display: flex;
    align-items: center;
    flex-direction: column;
}

@media(orientation: landscape){
    :root{
        font-size: 1rem;
    }
    .top-content{
        height: 90vh;
    }
    #home-blurb{
        justify-content: start;
    }
    .blurb{
        width: 60%;
        color: aliceblue;
        overflow-y: hidden;
        background-color: var(--black);
        border-radius: 10%;
        padding: 2%;
        height: 100%;
        font-size: 1.5rem;
    }
    
    .blurb2{
        width: 40%;
        color: aliceblue;
        height: 100%;
    }
    .blurb-holder{
        display: flex;
        flex-direction: row;
        height: 70%;
    }
}

@media(orientation: portrait){
    :root{
        font-size: 0.75rem;
    }
    body{
        font-size: 50%;
    }
    #home-blurb{
        justify-content: space-between;
    }
    .blurb-holder{
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .blurb{
        margin: 0;
        padding: 0%;
        padding-bottom: 0;
        font-size: 1rem;
        color: aliceblue;
        height: fit-content;
        background-color: var(--black);
        border-radius: 50px;
        padding: 4%;
        padding-top: 1%;
        padding-bottom: 1%;
        font-size: 1.5rem;
    }
    
    .blurb2{
        width: 95%;
        margin: 0;
        padding-top: 10px;
        padding-bottom: 0;
        font-size: 3em;
        color: aliceblue;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 50%;
    }

    #footer-img{
        max-width: 30%;
    }
}

button{
    height: 100%;
    background-color: var(--white);
    color: aliceblue;
    padding: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    border-radius: 0%;
    box-shadow: 10 10 15 150 red;
    border-radius: 25px;
    color: var(--black);
}

button:hover{
    cursor: pointer;
    background-color: var(--gold);
    color: black;
}

button:active{
    cursor: pointer;
    background-color: var(--mutedgold);
    color: black;
}

.call-link{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    color: aliceblue;
    font-size: 1em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    border-radius: 0%;
    box-shadow: 10 10 15 150 red;
    border-radius: 25px;
    color: var(--black);
    padding: 5%;
    font-size: 2rem;
    text-decoration: none;
    margin: 5% 0px 0px;
}

.call-link:hover{
    cursor: pointer;
    background-color: var(--gold);
    color: black;
}

.call-link:active{
    cursor: pointer;
    background-color: var(--mutedgold);
    color: black;
}

#background{
    position: fixed;
    top: 0;
    left: 0;
    z-index: -6;
    background-image: url('./msbackground.webp');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

#info-background{
    position: fixed;
    top: 0;
    left: 0;
    z-index: -6;
    background-color: rgba(0,10,50, 1);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

#background-mask{
    position: fixed;
    top: 0;
    left: 0;
    z-index: -5;
    background-color: rgba(0,0,0,0.8);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.background-image-mask{

}

.footer{
    width: 100%;
    background-color: black;
    color: aliceblue;
    font-size: 1rem;
}

.footer a{
    color: aliceblue;
}

.link-holder{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#copyright{
    margin: 0;
    margin-top: 50px;
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
}

.information{
    display: flex;
    background-color: var(--black);
    color: var(--white);
    margin: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.section{
    height: 40vh;
    scroll-margin-top: 10vh;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 2rem;
    margin: 6%;
    padding: 1%;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 5;
    top: 0vh;
    padding: 1%;
    user-select: none;
    transition: all 0.5s;
}

.section h3{
    font-size: clamp(10px, 4rem, 2.25vmax);
}

.section::before.disabled{
    display: block;
    position: absolute;
    background-color: #0015d6;
    height: 100%;
    width: 100%;
    border-radius: 50px;
    padding: 3%;
    left: -1.5%;
    top: -1.5%;
    z-index: -1;
    overflow: hidden;
}

.section:hover{
    top: -2vh;
    color: var(--white);
}

.section:hover .section-background{
    display: block;
    /*background-color: var(--blue);*/
    height: 95%;
    width: 95%;
    position: absolute;
    top: 10%;
    z-index: 0;
    transform: rotate(2deg);
    filter: blur(3rem);
    z-index: -10;
    border: solid var(--blue) 2px;
}

.section-background.disabled{
    display: block;
    background-color: #cf0015;
    height: 0%;
    width: 0%;
    position: absolute;
    top: 10%;
    z-index: 0;
    transform: rotate(2deg);
    filter: blur(2rem);
    z-index: -10;
    transition: all 0.5s;
}

.section-background{
    display: block;
    /*background-color: var(--blue);*/
    background-image: radial-gradient(var(--blue), var(--dark-blue));
    border: solid var(--blue) 5px;
    height: 100%;
    width: 100%;
    padding: 3%;
    border-radius: 50px;
    position: absolute;
    top: 0%;
    z-index: 0;
    transform: rotate(-2deg);
    z-index: -10;
    left: -3%;
    transition: all 0.5s;
}

.section-background.reverse{
    transform: rotate(2deg);

}

.section-img{
    max-height: 100%; 
    height: fit-content;
    width: 35%; 
    object-fit: cover; 
    float: right;
    background-color: white;
    border-radius: 10px;
    border: solid var(--gold) 4px;
}

.section-img.left{
    float: left;
}

.section-head{
    font-size: 2.5rem;
    margin: 2% 2%;
    color: var(--gold);
    text-wrap: wrap;
}

#logo-div{
    height: 100%;
    width: fit-content;
}

.blurb-img{
    max-height: 100%;
    top: 10%;
    position: relative;
    max-width: 50%;
    object-fit: contain;
}

.dropdowns{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.dropdown{
    display: flex;
    flex-direction: column;
    width: 90%;
    align-items: center;
}

.dropdown-head{
    display: flex;
    background-color: var(--white);
    border-radius: 25px;
    padding: 1%;
    padding-left: 5%;
    font-size: 2rem;
    width: 95%;
    height: min(10vh, 100px);
    border: solid var(--gray) 2px;
    align-items: center;
    transition: all 0.5s;
    color: var(--black);
    background-image: linear-gradient(to bottom left,rgba(0,0,0,0) 80% , var(--gold));
    box-shadow: 0 2px 5px rgba(var(--blue-rgb), 1);
}

.dropdown-head:hover{
    background-color: var(--gold);
    border: solid var(--blue) 2px;
    color: var(--black);
}

.dropdown-head:active{
    transition: none;
    background-color: var(--mutedgold);
}

.dropdown-head:hover{
    cursor: pointer;
}

.dropdown-body{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
    margin: 2%;
    transition: max-height 0.75s ease;
    overflow: hidden;
    max-height: 0vh;
    margin-top: 0%;
    background-color: var(--white);
    border-radius: 10px;
    padding: 5%;
    padding-top: 0%;
    padding-bottom: 0%;
    color: var(--black);
    width: 80%;
    justify-self: center;
    margin: 10px;
    background-image: linear-gradient(to bottom left,rgba(0,0,0,0) 80% , var(--gold));
}

.dropdown-head.clicked + .dropdown-body{
    border: solid var(--gray) 2px;
}

a:hover{
    color: var(--gold);
}

a:active{
    color: var(--mutedgold);
    transition: none;
}

.dropdown-head::after {
    content: '\25BC';
    font-size: 2rem;
    margin-left: auto;
    transition: transform 1s;
}

.dropdown-head.clicked::after {
    transform: rotate(180deg); 
}

.footer-content{
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hamburger-container{
    height: 100%;
    width: 70px;
    position: sticky;
    z-index: 5;
    top: 0;
    pointer-events: all;
    cursor: pointer;
    padding-right: 50px;
    user-select: none;
    display: flex;
    justify-content: left;
}

.hamburger::before{
    content: "";
    display: block;
    background-color: white;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -400%;
    left: 0%;
    transition: all 0.5s;
    border-radius: 100px;
}

.hamburger{
    background-color: white;
    width: 70px;
    height: 5%;
    position: absolute;
    top: 50%;
    right: 0px;
    transition: all 0.5s;
    border-radius: 100px;
    justify-self: anchor-center;
}

.hamburger::after{
    content: "";
    display: block;
    background-color: white;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 400%;
    left: 0%;
    transition: all 0.5s;
    border-radius: 100px;
}

.hamburger-container.clicked{

    .navigation-div{
        left: 0px;
    }

    .hamburger::before{
        background-color: red;
        top: 0%;
        transform: rotate(90deg);
    }
    
    .hamburger{
        background-color: red;
        transform: rotate(45deg);
    }
    
    .hamburger::after{
        background-color: red;
        top: 0%;
        transform: rotate(90deg);
    }

}

.navigation-div{
    position: fixed;
    padding-top: 10vh;
    height: 90vh;
    width: 100vw;
    top: 0;
    background-color: #0D0D0D;
    z-index: 9;
    display: block;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s;
    left: 100vw;
    overflow: auto;
}

.navigation-div a{
    font-size: clamp(10px, 5rem, 10vmin);
    margin: min(5%, 50px);
    color: white;
    text-decoration: double;
    user-select: none;
}

.navigation-div a:hover{
    color: var(--gold);
}

.navigation-div a:active{
    color: var(--mutedgold);
    transition: none;
}

.navigation-div p{
    font-size: clamp(10px, 5rem, 10vmin);
    margin: min(5%, 50px);
    color: white;
    text-decoration: double;
    user-select: none;
}

.navigation-div p:hover{
    color: var(--gold);
}

.navigation-div p:active{
    color: var(--mutedgold);
    transition: none;
}

.example{
    width: min(90vw, 1200px);
    height: min(60vw, 800px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    position: relative;
}

.example.mobile{
    width: min(60vw, 800px);
    height: min(60vw, 800px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    position: relative;
}

.example .example-site{
    width: 77.6%;
    height: 65%;
    z-index: 2;
    position: absolute;
    left: 11.8%;
    top: 10%;
    border: none;
    scrollbar-width: none;
    
}

.example.mobile .example-site{
    width: 39.5%;
    height: 80%;
    z-index: 2;
    position: absolute;
    left: 30%;
    top: 10%;
    border: none;
    scrollbar-width: none;
    scrollbar-color: blue;
    scrollbar-width: none;
}

.example .laptop{
    display: block;
}

.example .phone{
    display: none;
}

.example.mobile .laptop{
    display: none;
}

.example.mobile .phone{
    display: block;
}

.example img{
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: fill;
    z-index: 1;
}

.examples{
    display: flex;
}

.orientation-buttons{
    display: flex; 
    justify-content: space-between;
}

.sections{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.info-page-body{
    display: flex;
    width: 100%;
}

.side-action{
    display: flex;
    max-height: 70vh;
    flex-direction: column;
    width: 30%;
    position: sticky;
    top: 10vh;
    background-color: var(--black);
}

.side-action h2{
    font-size: clamp(10px, 4rem, 6vmin);
}

.side-action button{
    height: fit-content;
}

.info-page-form {
    background-color: var(--black);
    padding: 10px;
    display: flex;
    flex-direction: column;
    position: relative; 
    width: 30%;
    height: 100%;
    margin: 50px auto;
    border: 5px solid var(--gold); 
    border-radius: 25px;
    position: sticky;
    top: 10vh;
}

#process{
    background-color: var(--black);
    border: inset var(--gold) 1vmin;
    width: 80%;
    justify-self: center;
    margin-bottom: 2%;
}

#process li{
    border-top: solid var(--gold) 0.5vmin;
    width: 100%;
}

#process p{
    border-top: solid var(--gold) 3px;
    width: 90%;
    padding: 1% 5%;
}

#process h2{
    padding: 0% 5%;
}

.nav-drop-down-button{
    position: relative;
    cursor: pointer;
}

.nav-drop-down-button::after{
    content: "";
    display: block;
    background-color: var(--white);
    position: absolute;
    height: clamp(10px, 3rem, 6vmin);
    width: clamp(10px, 3rem, 6vmin);
    overflow: hidden;
    mask-image: url(./mask.webp);
    transform: rotate(135deg);
    left: 115%;
    top: 10%;
    transition: all 0.5s;
}

.nav-drop-down-button.clicked::after{
    transform: rotate(315deg);
    top: 40%;
}

.navigation-drop-down{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.5s;
    width: 100%;
    align-items: center;
}

.navigation-drop-down a{
    margin: 0;
    overflow: visible;
    margin: min(5%, 50px);
}

#contact-blurb{
    margin: 0% 5%;
}

.contact-info{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: 10ch;
    margin: 5% 0%;
}

.contact-info a{
    font-size: clamp(10px, 3rem, 6vmin);
    transition: all 0.5s;
    color: var(--white);
}

.contact-info a:hover{
    color: var(--gold);
}

.contact-info a:active{
    color: var(--mutedgold);
}

@media(orientation: landscape){

    #web-design-body{
        width: 60%;
        margin: auto 5% auto 5%;
        justify-self: center;
    }

    .info-page-body{
        flex-direction: row;
    }

    .info-page-body h1{
        font-size: clamp(10px, 5rem, 8vmin);
    }

    .info-page-body h2{
        font-size: clamp(10px, 3rem, 5vmin);
    }

    .orientation-buttons{
        display: none;
    }

    .section{
        width: calc(30% - 4%);
        margin: 2% 0%;
        padding-bottom: 1%;
    }

    .sections{
        flex-direction: row;
    }

    .example{
        width: min(60vw, 1200px);
        height: min(40vw, 800px);
    }
    
    .example.mobile{
        width: min(40vw, 800px);
        height: min(40vw, 800px);
    }
    
}

@media(orientation: portrait){
    .example.second{
        display: none;
    }

    .info-page-body{
        flex-direction: column;
        justify-content: center;
    }

    .section{
        height: fit-content;
    }

    .section h3{
        font-size: clamp(10px, 3rem, 8vmin);
    }

    .sections{
        flex-direction: column;
    }

    .info-page-form {
        width: 90%;
    }

    #process{
        width: calc(100% - 2vmin);
        margin-bottom: 0;
    }

    #side-action{
        display: none;
    }

    .link-holder{
        flex-direction: column-reverse;
        align-items: center;
    }

    #footer-img{
        max-width: min(70%, 40ch);
    }
}