/* ============================== 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: rgb(244, 244, 244); 
    background-color: #090e13;
}

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

h1 {
    font-size: 5.5rem;
}

h2 {
    font-size: 3.75rem;
}

p { 
    font-size: 2rem;
    line-height: 3.25rem;
}

a {
    text-decoration: none;
}

img {
    display: block;
}

nav ul {
    list-style: none;
    color: white;

}

nav a {
    text-decoration: none;
    font-size: 2rem;
    font-weight: normal;
    color: white;
}

a {
    color: white;
    text-decoration: none;
}

nav a:hover, nav a:active {
    color: #66c0f4;
    text-decoration: none;
}


a:hover, nav a:hover {
    color: #66c0f4;
}

a:visited, nav a:visited {
    color: white;
}

.section h1, .section h2 {
    margin-top: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

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


img {
    width: 100%;
}

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%;
}

.steam-widget {
    max-width: 660px;
    min-height: 220px;
    width: 100%;
}

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

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


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

  	margin: 0 auto;
    position: sticky;
    top: 0;
    left: 0;
    background: #000000;
    /* box-shadow: 0 0 30px 0 rgba(0, 0, 0, 1); */
    z-index: 100;
}

.header-logo {
    max-width: 28rem;
}

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

.header-nav a {
    text-decoration: none;
    color: white;
}

/* --- 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 ======================================*/

/* Specific rules for Headline section */
.section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    gap: 3rem;
    border-bottom: 2px solid #ce1141;
}


/* Content inside section container */
.inside-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2rem 4rem 2rem;
    max-width: 1400px;
    width: 100%;
}

/* Specific rule text in inside content container */
.text-content{
    max-width: 720px;
    text-align: left;

}

/* ============================== BUTTONS ======================================*/

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.btn {
    text-decoration: none;
    background-color: white;
    padding: 1.5rem 3.0rem;
    border-radius: 8px;
}

.btn p {
    color: black;
    margin: 0;
}

.btn:hover, .btn:active {
    background-color: #66c0f4;
}

.steam-logo-md {
    width: 50px;
}


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

.footer-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 6rem;
	padding-left: 2rem;
	padding-right: 2rem;
    background-color: black;
}


.footer-ul {
    display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.social-icon {
  width: 20px;
}

.social-icon:hover {
 width: 21px;
}


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

footer .icon {
    width: 20px;
    height: 20px;
    display: block;
}

.icon-yt {
    background-image: url("../img/youtube-wt.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.icon-yt:hover {
    background-image: url("../img/youtube-bl.svg");
}

.icon-discord {
    background-image: url("../img/discord-wt.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.icon-discord:hover {
    background-image: url("../img/discord-bl.svg");
}

.icon-steam {
    background-image: url("../img/steam-wt.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.icon-steam:hover {
    background-image: url("../img/steam-bl.svg");
}