* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Global */
body {
    background: #2c2f38; /* dark base */
    color: #e8d8c9;      /* light text */
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #1f2229;
    color: #e8d8c9;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header nav a {
    margin-left: 20px;
    color: #e8d8c9;
    text-decoration: none;
    font-weight: 500;
}

header nav a:hover {
    color: #f3701e; /* accent */
}

/* Hero */
.hero {
    height: 80vh;
    background: linear-gradient(to bottom right, #4b607f, #2c2f38);
    color: #e8d8c9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
}

.hero button {
    padding: 12px 25px;
    font-size: 18px;
    background: #f3701e; /* accent */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
}

.hero button:hover {
    background: #d65f16; /* darker accent */
}

/* Services */
.services {
    padding: 60px 40px;
    text-align: center;
    background: #252a33; /* slightly lighter dark */
    color: #e8d8c9;
    
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background: #4b607f; /* blue-gray */
    padding: 25px;
    border-radius: 10px;
    color: #e8d8c9;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Sales Section */
.sales {
    padding: 60px 40px;
    text-align: center;
    background: #2c2f38;
    color: #e8d8c9;
    
}

.sales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.sales-card {
    aspect-ratio: 1/1;
    background: #343a45; /* dark card */
    padding: 25px;
    border-radius: 10px;
    border-top: 4px solid #f3701e; /* accent stripe */
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sales-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.5);
}

/* Contact */
.contact {
    padding: 60px 40px;
    text-align: center;
    background: #4b607f;
    color: #e8d8c9;
}

.contact a {
    color: #f3701e;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #1f2229;
    color: #e8d8c9;
}

#spaceman {
    width: 100%;
    height: 400px;
    background: url('/IMAGES/astro.png') no-repeat center center;
    box-shadow: 0 0 50px rgb(36, 36, 36) inset;
}

