/*
  Sysprotech website stylesheet
  A simple, modern palette using shades of blue and grey.
*/

/* Reset some default spacing */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Navigation bar styling */
.navbar {
    background-color: #003366; /* dark navy for the header */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.nav-links li a:hover {
    color: #00aaff; /* sky blue hover color */
}

/* General section styling */
section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

header.hero {
    background-color: #0077cc; /* medium blue for hero area */
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

header.hero h1 {
    margin: 0;
    font-size: 36px;
    line-height: 1.3;
}

header.hero p {
    margin-top: 10px;
    font-size: 18px;
}

h2 {
    color: #003366;
    margin-top: 0;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Button styling */
button {
    background-color: #00aaff;
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    font-size: 15px;
}

button:hover {
    background-color: #0088cc;
}

/* Footer styling */
.footer {
    background-color: #003366;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    font-size: 14px;
}

/* Form styling for contact and login */
form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
}

label {
    font-weight: bold;
    color: #003366;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

a.cta-link {
    display: inline-block;
    background-color: #00aaff;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
}

a.cta-link:hover {
    background-color: #0088cc;
}