/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3 {
    margin: 0;
    color: #333;
}

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

a.btn {
    background-color: #ff5733;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

a.btn:hover {
    background-color: #e84118;
    transform: translateY(-3px);
}

.logo {
    width: 250px; /* Adjust size as necessary */
    height: auto;
    margin-bottom: 20px;
    border-radius: 50%; /* Optional: for a circular logo effect */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.section {
    padding: 50px 0;
}

.section h2 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 30px;
}

.bg-light {
    background-color: #f4f4f4;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../img/pal.webp') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-section .content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.hero-section h1 {
    color: #fff;
    font-size: 3.5em;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.hero-section .btn {
    background-color: #ff5733;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2em;
    transition: 0.3s ease;
}

.hero-section .btn:hover {
    background-color: #e84118;
}

.language-switcher {
    margin-top: 10px;
}

.language-switcher a {
    font-size: 0.9em; /* Adjust font size for smaller buttons */
}

/* Cards */
.cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.card {
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
}

.card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.card p {
    font-size: 1em;
    color: #666;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Increase min width */
    gap: 40px; /* Increase spacing */
    justify-items: center;
}

.game img {
    width: 250px; /* Increase image size */
    height: auto;
    margin-bottom: 15px;
}

.game p {
    font-size: 1.2em; /* Increase text size */
    font-weight: 500;
    color: #333;
}

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

footer p {
    margin: 0;
}

.contact-info {
    margin-top: 15px;
    font-size: 1.2em;
    font-weight: 500;
}

.contact-info span {
    display: block;
    margin-top: 10px;
    color: #333;
}