* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-family: inherit;
}

body {
	font-family: 'Open Sans', 'open-sans', sans-serif;
    overflow-x: hidden;
}

h1, h3, h4 {
    font-family: "ivypresto-display", serif;
    font-weight: 700;
}

h2 {
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-weight: 700;
}

header {
    background-color: #BA0C2F;
    color: white;
    padding: 1rem 2rem;
}

p, label {
    font-family: "open-sans", sans-serif;
    font-weight: 400;
}

.hook {
    padding: 2rem;
}

.hookHeader {
    font-size: 6rem;
	width: 70%;
	line-height: 1;
	margin-bottom: .5rem;
}

.findYourBusinessText {
    font-size: 4rem;
        color: #BA0C2F;
}

.intro-section{
    display: flex;
    flex-direction: column;
}

.hook-description {
    display: flex;
	align-items: flex-start;
    background-color: #BA0C2F;
    padding: 3rem 5rem;
    justify-content: space-evenly;
}

.hookCopy {
    display: flex;
    flex-direction: column;
    width: 30%;
    gap: 2rem;
    font-size: 20px;
    color: white;
    line-height: 1.5;
}


.introImage {
    width: 30vw;
    height: auto;
     position: relative;
    z-index: 5;
}

.footerImage {
    width: 30vw;
    height: auto;
    z-index: 5;
    position: relative;
	display: block;
}

#footerImageContainer {
    position: relative;

}

#footerImageContainer::after {
    z-index: 1;
    content: '';
    width: 100%;
    height: 120%;
    position: absolute;
    top: 50%;
	translate:0 -50%;
    left: -5%;
    border: 1px solid white;
}

#questionContainer {
    padding: 5rem 2rem 10rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;

}

.question {
    /* border: 2px solid lime; */
    width: 50%;
    flex-wrap: wrap;
}

.specialNumber {
    background-color: #BA0C2F;
    color: white;
    padding: 0 .45rem  0 .35rem;
	position: absolute;
	left:0;
	top:0;
	translate:calc(-100% - .5rem) 0;
}

.questionText {
    margin-bottom: 1rem;
    color: #BA0C2F;
    font-weight: bold;
    font-size: 1.5rem;
	position: relative;
	padding-left: .5rem;
}

.answerContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
	line-height: 1.3;
}

label {
    width: calc(50% - 1rem); /* two per row */
    display: flex;
    align-items: center;
	gap: 1rem;
    font-size: 1.15rem;
	cursor: pointer;
}

footer {
    background-color: #BA0C2F;
    color: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.submit-actions {
    text-align: center;
}

.spinner {
    width: 36px;
    height: 36px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    display: block;
    margin:1em auto 2rem;
    opacity: 0;
}

.spinner.submitting {
    opacity:1;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#submitButton {
	padding: 1rem 2.5rem;
    font-size: 1.5rem;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    cursor: pointer;
	font-weight: bold;
    text-transform: uppercase;
    transition:scale .3s;
}

#submitButton:hover {
    scale:1.1;
}

.upper-footer {
    display: flex;
    padding: 5rem;
    justify-content: space-between;
    width: 90%;
	align-items: flex-start;
}

.almost-there {
    display: flex;
    flex-direction: column;
}

#emailEntry {
    margin-top: 1rem;
    height: 4rem;
    width: 60%;
    cursor: pointer;
    font-size: 1.5rem;
    padding: .5rem;
}

.almostThereText {
     font-size: 5rem;
	line-height: .9;
}

.almostThereSubText {
     font-size: 1.5rem;
}

.footer-info {
    background-color: black;
    color: white;
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-size: .9rem;
}

#bennyBuddyContainer {
    position: relative;
}

#bennyBuddyContainer::before {
    z-index: 1;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -5%;
    right: -5%;
    border: 1px solid white;
}

#bennyBuddyContainer::after {
    z-index: 1;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: -5%;
    left: -5%;
    border: 1px solid white;
}



.resultsHeaderContent {

    display: flex;
    flex-direction: column;
    padding: 0 0 0 0;
}

.resultsHeaderContentContainer {
}

.fancyHeaderContainer {
    position: relative;
    width: 60%;
    flex: 5;
    padding: 2rem 0 3rem 0;
    background-color: #54585A;
}

.resultImageContainer {
    width: calc(100% - 3rem);
    z-index: 5;
    position: relative;
}

.resultImageContainer::after {
    z-index: 1;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -20px;
    right: -20px;
    border: 1px solid white;
}


.resultImage {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    display: block;
}

.resultsSection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 4;
    padding-top: 2rem;
}


.resultInfo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    padding: 3rem;
}

.resultsHeaderText {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: .25em;
}

#funNameHeader {
    font-size: 6rem;
    line-height: .8;
    margin-bottom: .15em;
}

#majorDepartment {
    font-size: 3rem;
    color: #BA0C2F;
    line-height: 1;
}

#majorMajors {
    font-size: 1.5rem;
    line-height: 1.1;
}

#majorDescription {
    font-size: 20px;
    width: 100%;
    max-width:40ch;
    text-align: left;
    line-height: 1.5;
}

#funDescription {
    font-size: 20px;
    width: 100%;
    max-width:40ch;
    text-align: left;
    line-height: 1.5;
}

.chartDisplay {

    border-top: 2px solid black;
    border-bottom: 2px solid black;
    margin-top: 2rem;

    display: flex;
}

.typeTextDesc {
    font-size: 1.25rem;
    width: 50%;
    text-align: center;
}

input[type="radio"] {
	accent-color: #BA0C2F;
}

.chartText {
    background-color: #54585A;
    color: white;
    flex: 2;
    padding: 2rem;
    font-size: 20px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chartText h2 {
    align-self: flex-start;
    font-size: 3rem;
    line-height: 1;
    margin: 1rem 0 .25em;
}

#learnMoreButton {
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    cursor: pointer;
    font-weight: bold;
    width:max-content;
    display: block;
    text-decoration: none;
    margin: 2rem 0 1rem;
    text-transform: uppercase;
    transition:scale .3s;
}

#learnMoreButton:hover {
    scale:1.1;
}

.clickToLearnMore {
    font-size: 14px;
    text-align: center;
    margin:1rem;
}

.readyToFlyContainer {
    padding: 5rem 7rem;
    gap: 2rem;
    text-align: center;
}

.linkContainer {
    display: flex;
    gap: 2rem;
    margin:2rem 0;
	align-items: center;
    justify-content: center;
}

.readyHeader {
    font-size: 4rem;
}

.readyText {
    font-size: 1.5rem;
    max-width:80ch;
    line-height: 1.5;
    margin:1rem auto 2rem auto;
}

.flyLink {
	padding: .75rem 2rem;
	margin-bottom: 4rem;
	font-size: 1rem;
	background-color: white;
	border: 2px solid gray;
	color: gray;
	cursor: pointer;
	font-weight: bold;
	text-decoration: none;
    transition:scale .3s;
}

.flyLink:hover {
    scale:1.1;
}

.flyLink:nth-child(2) {
	padding: 1rem 2.5rem;
	background: #BA0C2F;
	color:white;
	border-color:#ba0c2f;
	font-size: 1.5rem;
}

.discoverSuperpower {
    padding: 1rem 0 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discoverHeader {
    color: black;
    font-size: 6rem;
    line-height: .8;
    text-wrap: balance;
}

.logo{
    width: 10rem;
}


.resultsShape {
    height: 350px;
    margin-right: -360px;
}

#infographic {
    width: 100%;
    height: auto;
    user-select: none;
}

#svgHolder {
    flex:3;
}

.mobileTextInfo {
    display: none;
    font-size: 14px;
}

.mobileResultsImage {
    display: none;
}


@media (max-width: 700px) {
    
    header {
        display: flex;
        justify-content: center;
    }

    .findYourBusinessText {
        font-size: 2rem;
        margin-top: 1rem;
    }

    .hookHeader {
        font-size: 3.5rem;
        width: 100%;
    }

    .hook-description {
        display: none;
    }

    .mobileTextInfo {
        display: block;
    }

    #questionContainer {
        padding: 2rem 1rem 5rem;
    }

    .question {
        width: 90%;
    }

    .answerContainer {
        display: flex;
        flex-direction: column;
        gap: 0.75rem 2rem;

        label {
            width: 100%; 
        }
    }

    input[type="radio"] {
        width: 15px;
        height: 15px;
        margin-right: 1rem;
    }

    #footerImageContainer {
        display: none;
    }

    .almostThereText {
       font-size: 2rem;

    }

    .almostThereSubText {
        font-size: .85rem;
        text-align: center;
    }

    .upper-footer {
        padding: 2rem;
        width: 90%;
    }

    #emailEntry {
        margin-top: 1rem;
        height: 4rem;
        width: 101%;
        cursor: pointer;
        font-size: 1rem;
        padding: .5rem;
        align-self: center;
    }

    .footerText {
        font-size: 14px;
    }

    .resultInfo {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: left;
        padding: 2rem;
    }

    .resultsHeaderText {
        font-size: 2rem;
        line-height: 0;
    }

    #funNameHeader {
        font-size: 4rem;
    }

    #majorDepartment {
        font-size: 2.25rem;
    }

    #majorMajors {
        font-size: 1.25rem;
    }

    #majorDescription {
        font-size: 1rem;
        width: 100%;
        text-align: left;
    }

    .fancyHeaderContainer{
        display: none; 
        /* IDEALLY I CAN FIX THIS, JUST NEED TO FIGURE OUT THE FLOW OF THINGS */
    }

    .mobileResultsImage {
        display: block;
        width: 100%;
        padding: 0;
    }

    .resultsHeaderContent {
        padding: 1rem 0 0 0;
    }

    .resultsSection {
        padding-top: 0;
    }

    .discoverSuperpower {
        padding: 0 2rem;
    }

    .discoverHeader {
        color: #BA0C2F;
        font-size: 2.5rem;
    }

    .resultsShape {
        display: none;
    }

    .chartDisplay {
        flex-direction: column;
    }

    #svgHolder {
        height: auto;
        width: 100%;
    }

    .chartText {
        font-size: 1rem;
    }

    #learnMoreButton {
         margin-top: 1rem;
        font-size: 1rem;
        text-align: center;
        align-items: center;
    }

    .readyToFlyContainer {
        display: flex;
        flex-direction: column;
        padding: 2rem 4rem;
        gap: 2rem;
    }

    .linkContainer {
        gap: 1rem;
        flex-direction: column;
        margin: 0;
    }

    .readyText {
        font-size: 1rem;
        width: 100%;
    }

    .flyLink {
        font-size: 1rem;
        padding: .5rem 1rem;
        margin-bottom: 0;
        width:100%;
        display: block;
    }

    .linkContainer {
        display: flex;
    }

    label {
        font-size: 1rem;
    }
	.questionText {
		margin-left: 2rem;
	}
}


.socials-container {
    background:white;
    padding:1rem;
    width:100%;
}

.socials {
    list-style:none;
    margin:0 auto;
    width:max-content;
    padding:1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1rem;
}
.socials a {
    text-decoration: none;
    transition: all .3s;
    background:#cccccc;
    width:3rem;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
}
.socials a:hover {
    scale:1.1;
    background:#333;
}
.socials img {
    width: 1.5rem;
    height:auto;
}
.socials li:nth-child(1) img { width:1rem; }
