/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text for contrast */
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header Styles */
header {
    background: #1e1e1e;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #ff9800 3px solid;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    float: left;
    display: inline;
    padding: 0 20px 0 20px;
}

header #branding {
    float: left;
}

header #branding h1 {
    margin: 0;
}

header nav {
    float: right;
    margin-top: 10px;
}

header .highlight, header .current a {
    color: #ff9800;
    font-weight: bold;
}

header a:hover {
    color: #ffcc80;
    font-weight: bold;
}

/* Showcase Styles */
.showcase {
    min-height: 400px;
    background: #333;
    text-align: center;
    color: #fff;
    padding-top: 100px;
}

.showcase h1 {
    font-size: 55px;
    margin-bottom: 10px;
}

.showcase p {
    font-size: 20px;
}

/* Section Styles */
section {
    padding: 20px 0;
}

section h2 {
    margin-top: 0;
    color: #ff9800; /* Accent color for section headers */
}

/* Contact Styles */
#contact a {
    color: #ff9800;
}

#contact a:hover {
    color: #ffcc80;
}

/* Footer Styles */
footer {
    padding: 20px;
    margin-top: 20px;
    color: #fff;
    background-color: #1e1e1e;
    text-align: center;
}
