/* General styling */
body {
    font-family: 'Arial', sans-serif;
    color: #ddd;
    background-color: #000;
    background-image: url('../images/space-background.jpg'); /* Add your space background image */
    background-size: cover;
    background-attachment: fixed;
}

/* Add a stars animation */
@keyframes twinkling {
    0% { background-position: 0 0; }
    100% { background-position: -10000px 5000px; }
}
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent url('../images/stars.png') repeat;
    z-index: -1;
    animation: twinkling 200s linear infinite;
}

/* Navigation styling */
header {
    background-color: rgba(34, 34, 34, 0.8);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}
nav ul li {
    margin: 0 1rem;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #ffcc00;
}

/* Hero section styling */
#hero {
    text-align: center;
    padding: 8rem 1rem 4rem 1rem;
    color: #fff;
}
#hero img {
    max-width: 80%;
    height: auto;
    margin-bottom: 2rem;
}
#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
#hero button {
    padding: 1rem 2rem;
    font-size: 1.5rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}
#hero button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Features section styling */
#features {
    display: flex;
    justify-content: space-around;
    padding: 4rem 1rem;
    background-color: rgba(0, 0, 0, 0.8);
}
.feature {
    text-align: center;
    width: 45%;
}
.feature img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
.feature h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
.feature p {
    font-size: 1.2rem;
    color: #ccc;
}

/* Community highlights section styling */
#community-highlights {
    padding: 4rem 1rem;
    background-color: rgba(0, 0, 0, 0.8);
}
#community-highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
.highlight {
    text-align: center;
    margin-bottom: 2rem;
}
.highlight img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
.highlight p {
    font-size: 1.2rem;
    color: #ccc;
}

/* Major regions section styling */
#major-regions {
    padding: 4rem 1rem;
    background-color: rgba(0, 0, 0, 0.8);
}
#major-regions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
.region {
    text-align: center;
    margin-bottom: 2rem;
}
.region img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 10px;
}
.region h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
.region p {
    font-size: 1.2rem;
    color: #ccc;
}

/* Footer styling */
footer {
    text-align: center;
    padding: 1rem 0;
    background-color: rgba(34, 34, 34, 0.8);
    color: #fff;
    font-size: 1rem;
}
