:root {
  --primary-color: #003366;
  --accent-color: #006699;
  --light-bg: #f5f8fa;
  --text-color: #222;
  --card-bg: #ffffff;
}

body {
  background-color: var(--light-bg);
  color: var(--text-color);
  line-height: 1.6;
}

#content > header > div > div.header-text > h1 > a{
  color:white;
}

.site-header {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-header {
  background-color: #e9f0f6;
  border-bottom: 2px solid var(--accent-color);
  padding: 1.5rem 2rem;
  text-align: center;
}

.page-header h1 {
  margin: 0;
  font-size: 2rem;
  color: var(--primary-color);
}


.logo-container .logo {
  height: 50px;
}


nav {
  margin-top: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem 1.5rem;
  background-color: var(--card-bg);
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

section.highlight {
  background-color: #e9f0f6;
  border-left-color: var(--primary-color);
}

section h2 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

ul {
  padding-left: 1.5rem;
  list-style: disc;
}

/* Styling for Contact Form */
#contact-section,
.contact-section {
    padding: 40px 10%;
    background-color: #f9f9f947;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 2rem;
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.email-bt,
.massage-bt {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.email-bt:focus,
.massage-bt:focus {
    border-color: #3a80b7;
    box-shadow: 0 0 5px rgba(58, 128, 183, 0.5);
}

.massage-bt {
    resize: vertical;
}

#message_response {
    font-size: 0.9rem;
    margin-top: 5px;
}

#send_btn,
.send_btn,
.reset_btn {
    background-color: #3a80b7;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.reset_btn {
    background-color: #efefef;
    color: #333;
}

#send_btn:hover,
.send_btn:hover {
    background-color: #2a6fa0;
    transform: translateY(-2px);
}

.reset_btn:hover {
    background-color: #bae0fa;
    transform: translateY(-2px);
    color: #333;
}

#send_btn:active,
.send_btn:active,
.reset_btn:active {
    transform: translateY(0);
}

.cta {
    background: #3a80b7;
    padding: 30px !important;
    text-align: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, Arial, sans-serif;
    max-width: none;
}

#contact > h2{
  color:white
}
/* end contact styling */

.hide {
    display: none;
}

@media screen and (max-width: 768px) {

  nav {
    text-align: center;
    margin-top: 1rem;
  }

  nav a {
    display: inline-block;
    margin: 0.5rem;
  }
}
