
/*
Theme Name: The Astraeus Group
Theme URI: https://example.com/the-astraeus-group
Author: Your Name
Author URI: https://example.com
Description: A dark, minimalist WordPress theme for The Astraeus Group.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astraeus
*/

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #0D1117;
    color: #C9D1D9;
    margin: 0;
    padding: 0;
}
header {
    position: relative;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #58A6FF;
}
nav a {
    color: #C9D1D9;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #58A6FF;
}
.hero {
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #58A6FF;
}
.hero p {
    font-size: 1.25rem;
    color: #8B949E;
}
.button {
    margin-top: 30px;
    padding: 10px 30px;
    font-size: 1rem;
    background-color: #21262D;
    color: #58A6FF;
    border: 1px solid #58A6FF;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button:hover {
    background-color: #58A6FF;
    color: #0D1117;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
