/* General Reset and Box Model */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Enable smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    background-color: #333;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
}

.navbar .logo img {
    height: 40px; /* Adjust logo size */
}

.navbar nav ul {
    list-style: none;
    display: flex;
    font-weight: bold;
}

.navbar nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.navbar nav ul li a:hover {
    text-decoration: underline;
}

/* Mobile Menu (hidden by default) */
.navbar .mobile-menu {
    display: none;
}

.navbar .hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
}

.navbar .hamburger div {
    width: 100%;
    height: 3px;
    background-color: #fff;
}

/* Home Section */
.home {
    height: 100vh;
    background: #000 url('Logo_Square_512.png') center center no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home .home-filter {
    width: 100%;
    height: 100%;
    display: flex;
    backdrop-filter: blur(20px) brightness(30%);
}

.home .home-content  {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .home-content .company-logo {
    width: 70%; /* Adjust size */
}

/* Games Section */
.games {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.games h2 {
    margin-bottom: 40px;
}

.game {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.feature-image {
    width: 512px;
    height: 250px;
    object-fit: cover;
    margin-right: 20px;
}

.game-details {
    max-width: 500px;
    text-align: left;
}

.app-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 3px 3px 5px black;
}

.game-details h3 {
    font-size: 22px;
    margin-top: 10px;
}

.game-details p {
    font-size: 16px;
}

.app-store-buttons {
  display: flex;
  column-gap: 100px;
  row-gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.app-store-buttons a img {
  max-width: 100%;
  height: auto;
}

/* About Section */
.about {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.about h2 {
    margin-bottom: 20px;
}

.about .about-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 40%;
    height: auto;
    border-radius: 10px;
}

.about-text {
    width: 55%;
    padding-left: 40px;
    max-width: 500px;
}

.about-text p {
    font-size: 18px;
    color: #555;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.contact h2 {
    margin-bottom: 30px;
}

.contact-info a {
    display: inline-block;
    margin: 20px;
    text-decoration: none;
    color: #333;
}

.contact-info img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.contact-info p {
    font-size: 18px;
}

.privacy-policy {
    margin-top: 30px;
}

.privacy-policy a {
    color: #333;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #333;
    color: white;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Make the navigation bar a hamburger menu */
    .navbar nav ul {
        display: none;
    }

    .navbar .hamburger {
        display: flex;
    }

    /* Adjust layout in Home section */
    .home .home-content .company-logo {
        width: 90%;
        max-width: 400px;
    }

    /* Stack Game Section images and details vertically */
    .game {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .game img {
        width: 80%;
        max-width: 300px;
        margin-bottom: 15px;
    }

    .game-details {
        text-align: center;
    }

    /* Adjust About section layout to stack vertically */
    .about .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-image img {
        width: 80%;
        margin-bottom: 20px;
    }

    .about-text {
        width: 90%;
        padding-left: 0;
    }

    /* Adjust contact section for mobile */
    .contact-info a {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    /* Adjust font sizes */
    .navbar nav ul li a {
        font-size: 16px;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .game-details h3 {
        font-size: 18px;
    }

    .game-details p {
        font-size: 14px;
    }

    .contact-info p {
        font-size: 16px;
    }
}

/* Hamburger Menu Toggle */
.navbar .hamburger.active + nav ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
}

.navbar nav ul li {
    margin: 10px 15px;
}

.navbar nav ul li a {
    font-size: 20px;
    color: white;
    text-decoration: none;
    display: block;
}

.navbar nav ul li a:hover {
    text-decoration: underline;
}
