/* styles.css */

:root {
  --primary-color: #673de6;
  --secondary-color: #5025d1;
  --background-color: #f4f4f4;
  --text-color: #1d1e20;
  --header-color: #243328;
  --footer-color: #2f1c6a;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--text-color);
}

/* Fixed header */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--header-color);
  color: white;
  z-index: 1000;
  padding: 20px;
}

.page-content {
  padding-top: 50px; /* space for fixed header */
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  margin: 0 8px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
}

.nav-menu a.active {
  font-weight: bold;
  text-decoration: underline;
}
.logo img {
	width: 25px;
}
.hero-text h1, h2, h3 {
	text-align: center;
}
.step-content h3 {
		text-align: left;
}
.hero-text ul  {
	    margin-left: 50%;
		list-style-type: none;
		font-size: small;
}



section {
  padding: 20px;
  background: white;
  margin: 10px auto;
  max-width: 800px;
  border-radius: 5px;
}

.form-group {
  margin-bottom: 15px;
  display: block;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

.wide-input {
  width: 100% !important;
  padding: 8px;
  box-sizing: border-box;
}

footer {
  text-align: center;
  padding: 10px;
  background: var(--footer-color);
  color: white;
}
th {
	text-align:left;
}
.homeLeft {
	width: 40%;
}
.homeRight {
	width: 60%; 
}

.twoColumns {
	display: flex; 
	/*align-items: center;*/
}

.homeImage {
	margin-top: 20px;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain; /* Ensures the image fits within the div without cutting off or distortion */
	
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}


.grid-form-layout {
  display: grid;
  grid-template-columns: 20% 70%; /* Left: 20%, Right: 80% */
  gap: 2rem;
  align-items: start;
}

.left-column {
  font-size: small;
}

.right-column form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1rem;
}
#map-container {
  margin-top: 2rem;
}

label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
}

input,
textarea {
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

button.btn {
  margin-top: 1rem;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  background-color: #333;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

/* Responsive layout: stack columns on smaller screens */
@media (max-width: 768px) {
  .grid-form-layout {
    grid-template-columns: 1fr;
  }
}
