/*
Theme Name: Mars Project
Author: Grok
Description: Simple theme for Mars land ownership site
Version: 1.0
*/
body {
    background: url('https://ownapieceofmars.com/wp-content/uploads/2025/11/mars-background.jpg') no-repeat center center fixed !important;
    background-size: cover !important;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

header {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 10px;
    text-align: center;
    position: relative;
}

footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 10px;
    text-align: center;
}

header nav {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

#primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

#primary-menu li {
    margin-left: 20px;
    display: inline-block;
}

#primary-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s;
}

#primary-menu li a:hover {
    color: #cccccc;
}

section {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

h1, h3 {
    color: #ff0000;
    text-align: center;
}

p, label, span {
    color: #ffffff;
}

input[type="number"] {
    background: #333333;
    color: #ffffff;
    border: 1px solid #ff0000;
    padding: 5px;
    border-radius: 5px;
}

button {
    background: #ff0000;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #cc0000;
}

button:disabled {
    background: #666666;
    cursor: not-allowed;
}

#plot-info {
    background: rgba(255, 0, 0, 0.7);
    color: #ffffff;
    border: 1px solid #ffffff;
}