/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    position: relative;
    z-index: 1000;
}

/* Default (Desktop) Menu */
.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: linear-gradient(to right, rgb(255, 243, 192), rgb(255, 162, 225));
        width: 200px;
        padding: 10px;
        z-index: 1001;
    }

    .menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}

/* Hero Section home page */
.herohome {
    position: relative;
    text-align: center;
    color: white;
    height: 400px;
    background: url('Images/Headers/Homepage.png') no-repeat center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.herohome h1 {
    font-size: 36px;
    margin: 0;
}

.herohome h4 {
    font-size: 20px;
    margin: 10px 0;
}



/* Hero Section gallery page */
.herogallery {
    position: relative;
    text-align: center;
    color: white;
    height: 400px;
    background: url('Images/Headers/Gallery.png') no-repeat center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.herogallery h1 {
    font-size: 36px;
    margin: 0;
}

.herogallery h4 {
    font-size: 20px;
    margin: 10px 0;
}


/* Hero Section Contact page */
.herocontact {
    position: relative;
    text-align: center;
    color: white;
    height: 400px;
    background: url('Images/Headers/Contact.png') no-repeat center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.herocontact h1 {
    font-size: 36px;
    margin: 0;
}

.herocontact h4 {
    font-size: 20px;
    margin: 10px 0;
}


/* Hero button home page */
.herohome .button {
    padding: 10px 20px;
    background: linear-gradient(to right, rgb(255, 243, 192), rgb(255, 162, 225));
    border: none;
    text-decoration: none;
    color: black;
    font-weight: bold;
    border-radius: 5px;
}

/* Welcome Section home page */
.roblox-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 50px;
    background: white;
}

.roblox-text {
    flex: 1;
    padding-left: 1%;
}

.roblox-image img {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

/* Top Games Section home page*/
.top-games-section {
    background: black;
    padding: 20px;
}

/* Flex container to align title & button */
.top-games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4%;
}

/* Title Styling */
.top-games-title {
    color: white;
    font-size: 24px;
    margin: 0;
}

/* See More Button */
.see-more-btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(to right, rgb(255, 243, 192), rgb(255, 162, 225));
    border: none;
    color: black;
    cursor: pointer;
    border-radius: 5px;
}


/* Top Games Section gallery page*/
.top-games-section-gallery {
    background: black;
    padding: 20px;
   
}

.top-games-title-gallery {
    color: white;
    text-align: left;
    font-size: 24px;
    padding-left: 7%;
    padding-top: 4%;
    margin: 0%;
}

/* Game Grid home page*/
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    justify-items: center;
    padding: 20px;
    background: black;
}

.game-item {
    padding: 20px;
    border-radius: 10px;
}

.game-item img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.game-item p {
    color: white;
    text-align: center;
    font-size: 17px;
}




/* Game Grid gallery page*/

.game-grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    justify-items: center;
    padding: 20px;
    background: black;
}

.game-item-gallery {
    padding: 20px;
    border-radius: 10px;
}

.game-item-gallery img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.game-item-gallery p {
    color: white;
    text-align: center;
    font-size: 17px;
}



/* Contact Section Full Black Background */
.Help-section {
    color: white;
    text-align: left;
    font-size: 24px;
    padding-left: 25%;
    padding-top: 3%;
    padding-bottom: 2%;
    margin: 0%;
}

.contact-section {
    background: rgb(0, 0, 0); /* Black background */
    color: rgb(255, 255, 255); /* White text */
    padding: 50px 0; /* Spacing */
    text-align: center; /* Center heading and text */
}



/* Style the form table */
.contact-table {
    width: 50%;
    margin: 0 auto;
    border-collapse: collapse;
    padding: 20px;
    border-radius: 10px;
    color: aliceblue;
}

/* Input fields */
.contact-table input,
.contact-table textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid white;
    border-radius: 5px;
    background: rgb(255, 255, 255); 
    color: rgb(0, 0, 0);
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    
}

/* Submit Button */
.button-row button {
    padding: 10px 23px;
    background: linear-gradient(to right, rgb(255, 243, 192), rgb(255, 162, 225));
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    float: right;
}







/* Footer */
footer {
    background: linear-gradient(to right, rgb(255, 243, 192), rgb(255, 162, 225));
    text-align: center;
    padding: 10px;
}



