
/* ============================== GLOBAL SETUP ======================================*/


*,*::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Include padding and margin when adding up size of element box */
}

html {
    font-size: 62.5%; 
    /* Default font size: 16.
       Resest it to 10px.
       Use % so that if ppl change font size on browser, it scales correctly
    */
}

body {
    font-family: "Inter", sans-serif; /* Google font */
    color: #090e13; 
    background-color: white;
    letter-spacing: -0.025em;
}

h1, h2, p {
    margin-bottom: 1.25rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 4.25rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 3.66rem;
}

p, ol, ul, a { 
    font-size: 2.15rem;
    line-height: 3.25rem;
    font-weight: 400;
   
}

section li {
    margin: 1.25rem 0 1.25rem 0;
}

h1, h2 {
    font-weight: 500;
    margin: 0rem 0 2rem 0;
}

a {
    text-decoration: none;
    color: #4687ac;
    font-weight: 500;
}

ol, ul {
    padding-left: 24px;
}

img {
    display: block;
}

nav ul {
    list-style: none;
    color: #090e13;

}

nav a {
    text-decoration: none;
    font-size: 1.33rem;
    font-weight: normal;
    color: #090e13;
}


nav a:hover, nav a:active {
    color: #4687ac;
    text-decoration: underline;
}


a:hover {
    color: #4687ac;
    text-decoration: underline;
}

a:visited {
    color: #4687ac;
}

nav a:visited {
    color: #090e13;
}


/* ============================== RESPONSIVE MEDIA ======================================*/


img {
    width: 100%;
    margin: auto 0;
}

video {
    width: 100%;
    height: auto;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* keep 16:9 ratio */
    height: 0;
    overflow: hidden;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.studio-logo {
    width: 100%;
    max-width: 20rem; 
    padding-top: 3rem;
}

.avatar {
    width: 20%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 1.75rem;
}


/* ============================== HEADER SECTION ======================================*/

header {
    border-bottom: 1px solid rgb(235, 235, 235); /* temp for now */
}

.header {
    display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 6rem;
	padding-left: 3rem;
	padding-right: 3rem;

    max-width: 931px;

  	margin: 0 auto;
   
    top: 0;
    left: 0;
    background: white;
   
    z-index: 100;
}


/* --- Nav Memu --- */
.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.0rem;
    list-style: none;
}

.header-nav a {
    text-decoration: none;
    color: rgb(25, 25, 25);
}

nav ul {
    padding: 0;
}


.header-logo {
    width: 23px;
}

.logo-section {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
}

.logo-section a {
    font-size: 1.33rem;
    color: rgb(25, 25, 25);
}

.logo-section p {
    margin: 0;
    padding-left: 7px;
    padding-bottom: 3px;
}

/* --- BURGER MENU --- */
.menu-toggle {
    display: none;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    cursor: pointer;
}


/* ============================== SECTION CONTAINERS / WRAPPERS ======================================*/

.main-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh; 
    margin: 0 auto;
    padding: 3.5rem 4rem 2rem 4rem;
    /* border-bottom: 1px solid #4687ac; */
}

.section { 
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 657px; /* how big do i want the wall of text to be */
    padding-top: 1.75rem;
   
}

.section h1, section h2 {
    font-weight: 700;
}

.section h2 {
    padding-top: 2rem;
}


/* ============================== FOOTER ======================================*/


footer {
    bottom: 0;
    border-top: 1px solid  #d2d2d2;
    padding-top: 2rem;
    padding-bottom: 2rem;
    /* background-color: #eeeeee; */
}

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

footer p, footer p a, footer a:visited {
    font-size: 1.25rem;
    color: rgb(25, 25, 25);
    margin: 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.0rem;
    list-style: none;
}

.footer-nav a {
    text-decoration: none;
    color: rgb(25, 25, 25);
}

.a-normal {
    font-weight: normal;
}

/* End FOOTER  ********************** */