/*CSS variables section*/
:root {
    background-color:black;
}

body, html {
    height: 50%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
  
.hero-image {
    background-image: url("/img/banner.png");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
      
body {
    margin: 0;
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif;
}
  
#navbar {
    position: sticky;
    top: 0;
    overflow: hidden;
    background-color: #333;
}
  
#navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
  
#navbar a:hover {
    background-color: #ddd;
    color: black;
}
  
#navbar a.active {
    background-color: #04AA6D;
    color: white;
}

/* Create a right-aligned (split) link inside the navigation bar */
#navbar a.split {
    float: right;
    background-color: #0454aa;
    color: white;
}

h2 {
    color: #4CAF50;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
}

.contact-section {
    width: 100%;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 1rem;
}
  
.contact-intro > * + * {
    margin-top: 1rem;
}
  
.contact-title {
    font-size: 40px;
    line-height: 2.25rem;
    font-weight: 700;
}
  
.contact-description {
    font-size: 18px;
    color: white;
}
  
.form-group-container {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}
  
.form-group {
    display: flex;
    flex-direction: column;
}
  
.form-label {
    margin-bottom: 0.5rem;
    color: #ffcc00;
}
  
.form-input,
.form-textarea {
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    display: flex;
    height: 2.5rem;
    width: 100%;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
  
.form-input::placeholder,
.form-textarea:focus-visible {
    color: black;
  }
  
.form-input:focus-visible,
.form-textarea:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}
  
.form-textarea {
    min-height: 150px;
    color: black;
}
  
.form-submit {
    width: 100%;
    margin-top: 1.2rem;
    background-color: #3124ca;
    color: #fff;
    padding: 13px 5px;
    border-radius: 0.375rem;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    font-size: 10px;
    text-align: center;
}