/* Full-Screen Maintenance Overlay */
#maintenance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Dark transparent overlay */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    flex-direction: column;
    text-align: center;
}

.overlay-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #E95420; /* Hive Orange */
}

.overlay-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

#close-overlay {
    background: #E95420; /* Hive Orange */
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

#close-overlay:hover {
    background: #7D8C8D; /* Hive Gray */
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333333;
    background: #EDEDED;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333333;
    padding: 15px 50px;
    color: white;
}

.logo img {
    width: 180px;
    height: auto;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #E95420;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 80px 50px;
    background: #E95420;
    color: white;
}

#hero h1 {
    font-size: 2.5em;
}

#hero p {
    font-size: 1.2em;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #7D8C8D;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn:hover {
    background: #333333;
}

/* Sections */
section {
    padding: 50px;
    text-align: center;
}

h2 {
    color: #E95420;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service {
    background: #7D8C8D;
    color: white;
    padding: 20px;
    border-radius: 5px;
    width: 30%;
}

.service h3 {
    color: #EDEDED;
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
    gap: 10px;
}

input, textarea {
    padding: 10px;
    border: 1px solid #7D8C8D;
    background: #EDEDED;
}

button {
    padding: 10px;
    background: #E95420;
    color: white;
    border: none;
    font-weight: bold;
}

button:hover {
    background: #7D8C8D;
}

/* Footer */
footer {
    text-align: center;
    background: #333333;
    color: white;
    padding: 10px;
}
