@import url("reset.css");

body {
    width: 100%;
    color: #FFFFFF;
    background-color: #000000;
    font-family: 'Trebuchet MS';
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: center;
}

/* ASSORTED FORMATTING ITEMS */

a {
    text-decoration: none;
    color: inherit;
}
.mobile {
    display: none;
}
@media (max-width: 1020px) {  /*mobile section*/
    .mobile {
        display: initial;
    }
    .desktop {
        display: none;
    } 
}
#empty-space {
    width:100%;
    height:20px;
}
@media (max-width: 1020px) {  /* mobile customizations */
    #empty-space {
        height:20px;
    }
}
@media (max-width: 1020px) {  /* mobile customizations */
    #black-space {
        height:20px;
    }
}


/* header strip */

#header-strip {
    background: #000000; 
    width: 100%;
    height: 60px;
}
#header-strip .mf-logo {
    float: left;
    margin: 8px 0px 10px 13px;
    width: 120px;
}
@media (max-width: 1020px) {  
    #header-strip .mf-logo {
        float: left;
        margin: 8px 0px 10px 13px;
        width: 110px;
    }
}
#header-strip .forum-link {
    float: right;
    opacity: 1;
    font-size: medium;
    margin: 21px 22px 0px 0px;
}
#header-strip .forum-link:hover {
    opacity: 0.7;
}
@media (max-width: 1020px) {  
    #header-strip .forum-link {
        font-size: small;
        margin: 21px 8px 0px 0px;
    }
}

.company-dropdown {
    position: relative;
    display: inline-block;
}

.company-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Adjusts the position to be just below the parent */
    right: 0;
    background-color: #333;
    min-width: 120px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 10; /* Ensures dropdown appears above other elements */
}

.dropdown-content a {
    color: white;
    padding: 5px 5px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #575757;
}


/* INTRO */

#intro {  /*top image - customizations below */
	background: url("images/supporters-desktop-background.png") no-repeat center;
	background-size: cover;
	height: 330px;
    width: 100%;
}
#intro .intro-holder {
    width: 300px;
    display: inline-block;
    margin: 40px 0px 40px 0px;
    font-size: large;
}
#intro .intro-tile {
    width: 300px;
    padding: 0px;
}
#intro .intro-line {
    margin: 2px 0px 0px 0px;
    text-shadow: 0px 0px 5px #000000, 0px 0px 2px #000000, 0px 0px 2px #000000, 0px 0px 2px #000000, 0px 0px 2px #000000;
}

@media (max-width: 1020px) {  /* mobile customizations */
    #intro .intro-holder {
        width: 220px;
        display: block;
        margin: auto;
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: medium;
    }
    #intro .intro-tile {
        width: 220px;
    }
}
@media (max-width: 350px) {  /* smaller mobile section for intro list */
    #intro .intro-holder {
        width: 200px;
    }
    #intro .intro-tile {
        width: 200px;
    }
}
@media (min-width: 1021px) and (max-width: 1312px)  {  /* fix tile size for certain small to medium resolutions */
    #intro .intro-holder {
        width: 300px;
        font-size: medium;
    }
    #intro .intro-tile {
        width: 300px;
    }
}



/*GAMES section */

#games {
    background: #000000; /* linear-gradient(to left, #10110f, #425d42 40%, #425d42 60%, #10110f 100%); */
    width: 100%;
}
#games .game-header {
    font-size: x-large;
    margin-bottom: 20px;
}
#games .game-list {
    width: 100%;   
    display: inline-block;
}
#games .game-holder {
    margin: 0 10px;
    width: 360px;
    display: inline-block;
    vertical-align: top;
    font-size: large;
}
#games .game-text {
    text-align: left;
    margin: 10px 0px 5px 2px;
}
#games .game-link-text {
    opacity: 1;
    text-align: left;
    margin: 0px 0px 20px 2px;
    color: #a1d523;
}
#games .game-link-text:hover {
    opacity: 0.7;
}
#games .game-tile {
    width: 360px;
    height: 240px;
}

/* screen size customizations */

@media (max-width: 1020px) {  /* mobile customizations */
    #games .game-header {
        font-size: large;
    }
    #games .game-list {
        display: block;
    }
    #games .game-holder {
        width: 300px;
        display: block;
        margin: auto;
        font-size: medium;
    }
    #games .game-tile {
        width: 300px;
        height: 200px;
    }
}
@media (max-width: 350px) {  /* smaller mobile section for games list */
    #games .game-holder {
        width: 225px;
    }
    #games .game-tile {
        width: 225px;
        height: 150px;
    }
}
@media (min-width: 1021px) and (max-width: 1312px)  {  /* fix tile size for certain small to medium desktop resolutions */
    #games .game-holder {
        width: 300px;
        font-size: medium;
    }
    #games .game-tile {
        width: 300px;
        height: 225px;
    }
}


/* ABOUT US section */

#aboutus {
    background: url("images/worldmap-bg.jpg") no-repeat center;
    background-size: cover;
    display: inline-block;
    width: 100%;
}
#aboutus .aboutus-header {
    font-size: x-large;
    text-align: left;
}
#aboutus .aboutus-holder {
    display: inline-block;
}
#aboutus .aboutus-column {
    text-align: left;
    font-size: large;
    width: 480px;
    display: inline-block;
    margin: 0px 10px 0px 0px;
    text-shadow: 0px 0px 5px #000000, 0px 0px 2px #000000, 0px 0px 2px #000000, 0px 0px 2px #000000, 0px 0px 2px #000000;
    vertical-align: top;
}

/* screen size customizations */

@media (max-width: 1020px) {  /* mobile customizations */
    #aboutus .aboutus-holder {
        margin-bottom: 40px;
        width: 300px;
    }
    #aboutus .aboutus-header {
        font-size: large;
    }
    #aboutus .aboutus-column {
        text-align: left;
        font-size: medium;
        width: 300px;
        margin: auto;
    }
}
@media (max-width: 350px) {  /* smaller mobile section for games list */
    #aboutus .aboutus-column {
        width: 225px;
    }
}
@media (min-width: 1500px)  {  /* widen aboutus columns on wider monitors */
    #aboutus .aboutus-column {
        margin: 20px 50px 0px 50px;
    }
}
@media (min-width: 1021px) and (max-width: 1312px)  {  /* fix tile size for certain small to medium desktop resolutions */
    #aboutus .aboutus-column {
        font-size: medium;
        width: 455px;
    }
}

/* FOOTER */

footer {
    background: #000000; /* linear-gradient(to left, #10110f, #425d42 40%, #425d42 60%, #10110f 100%); */
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding: 15px 0 20px 0;
    font-size: small;
}
footer p {
    margin: 5px;
}
.footer-social-networks {
    display: flex;
    justify-content: center;
    gap: 25px;
    order: -1;
}
.footer-social-networks .icon {
    opacity: 1;
    object-fit: contain;
    width: 32px;
    height: 32px;
}
.footer-social-networks .icon:hover {
    opacity: 0.7;
}
#legal {
	padding: 0;
}
#legal .policy-link {
    font-weight: 700;
    opacity: 1;
}
#legal .policy-link:hover {
    opacity: .7;
}
#legal .mf-logo {
	width: 40px;
	height: 50px;
	background: url("images/mf-face.png") no-repeat center;
	background-size: 100%;	
	margin: 2px 5px 10px 7px;
	float: left;
}

