/* General Styles */
body {
    margin: 0;
    font-family: 'Pixelify Sans', sans-serif;  /* Default font */
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #1f1f1f;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

header .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;  /* Orbitron font for the logo */
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Pixelify Sans', sans-serif; /* Pixelify Sans for the navigation */
}

header nav ul li a:hover {
    color: #ff5733;
}

/* Hero Section */
#hero {
    background: url('https://img.itch.zone/aW1hZ2UvMTgzMTAxLzE1ODg4MzUuZ2lm/347x500/E7sWYt.gif') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

#hero .hero-content {
    max-width: 600px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

#hero h1 {
    font-family: 'Orbitron', sans-serif;  /* Orbitron font for the main heading */
    font-size: 3em;
    margin-bottom: 15px;
}

#hero .hero-content p {
    font-family: 'Pixelify Sans', sans-serif;  /* Pixelify Sans for the paragraph */
    font-size: 1.2em;
    margin-bottom: 20px;
}

#hero .btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    color: #ffffff;
    background-color: #ff5733;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

#hero .btn:hover {
    background-color: #ff784e;
}

/* Sections */
section {
    padding: 30px 20px;
    text-align: center;
}

section h2 {
    font-family: 'Orbitron', sans-serif;  /* Orbitron font for section titles */
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ff5733;
}

#features ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
    font-family: 'Pixelify Sans', sans-serif; /* Pixelify Sans for the feature list */
}

#features ul li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

#features ul li::before {
    content: '\2022';
    color: #ff5733;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Gallery */
#gallery .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px auto;
    max-width: 800px;
}

#gallery .gallery-container img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

#gallery .gallery-container img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #1f1f1f;
    text-align: center;
    padding: 20px;
    color: #ffffff;
    font-size: 0.9em;
    border-top: 1px solid #333;
    font-family: 'Pixelify Sans', sans-serif;
}
