/*Main StyleSheet*/
* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.header {
  position: relative;
  padding: 10px;
  text-align: center;
  font-size: 35px;
  height: 200px; /* Adjust height as needed */
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../image/webCOVER_1.webp'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  opacity: 0.6; /* Adjust opacity (0.0 to 1.0) */
  z-index: -1; /* Ensures the background stays behind the content */
}

/*logo style*/
#logo {
  max-width: 100%; /* Ensures the image doesn't exceed the width of its container */
  height: auto; /* Maintains the aspect ratio */
  display: block; /* Removes any inline spacing issues */
  margin: 0 auto; /* Centers the image horizontally if needed */
}


/*Top nav style*/
.topnav {
  overflow: hidden;
  background-color: #ffffff;

}

/*top nav links*/
.topnav a {
  float: left;
  display: block;
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: underline;
}


/*sticky navbar*/
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}


/*Text holder*/
.textHolder {
  padding-bottom: 2px;
}

/*Add some top padding to the page content to prevent sudden
quick movement(as the navigation bar gets a new position at the top
of the page)(position:fixed and top:0)*/
.sticky + .content {
  padding-top: 46.4px;
}


/*top nav links on hover*/
.topnav a:hover {
  background-color: #ddd;
  color: #FFA500;
}

.content {
  background-color: #ccc;
  padding: 16px 250px 50px 250px;
}

/*Style for footer*/
.footer {
  background-color: #f1f1f1;
  padding: 5px;

}

/*top nav links*/
.footer a{
  display: block;
  color: #898989;
  text-align: center;
  text-decoration: underline;
}

.footer a:hover{
  color: #000000;
}




/*-----------------------------*/
/*-----------------------------*/
/*-----------------------------*/
/*styles for forms*/

/*style for form heading*/
#frmHeading {
  color: black;
  text-align: center;
}

/*button styles*/
button {
  background-color: #FFA500;
  color: black;
  border: none;
  padding: 10px;
  border-radius: 4px;
}

/*styles for input and select elements*/
input[type=text], input[type=number], select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}


/*Style the label to display next to the inputs*/
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

/*Style the submit button*/
input[type=submit] {
  background-color: #ffa600c8;
  color: black;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

/*style the container*/
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px 20px 20px 20px;
}

/*Floating column for labels: 25% width*/
.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

/*Floating column for inputs: 75%*/
.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}


.onethird {
  float: left;
  width: 33.33%;
  text-align: center;
  padding: 2px;
}

.onehalf {
  float: left;
  width: 50%;
  text-align: center;
  padding: 2px;

}

.row {
  margin-top: 30px;
}



/*Clear floats after the columns*/
.row:after {
  content: "";
  display: table;
  clear: both;
}

/*Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other.*/
@media screen and (max-width: 800px) {
  .col-25, .col-75, .onehalf, .onethird {
    width: 100%;
    margin-top: 0;
  }


  .content {
    padding: 50px 10px 50px 10px;
  }

  #resultLinks {
    padding: 30px 0px 0px 0px;
  }

  .sticky + .content {
    padding-top: 90px;
  }



}


/*external styles for buttons and tab indicators*/



/*Marks invalid input*/
input.invalid {
  background-color: #ffdddd;
}

/*hide all steps by default*/
.tab {
  display: none;
}

/*zoning type styles*/
#zRes, #zCom {
  display: none;
  margin-top: 6px;
}



/*zoning options styling*/

.innerCon {
  opacity: 0.4;
}

.innerCon.zEnabled {
  opacity: 1;
}



.zonePics {
  max-width: 100%;
  max-height: 100%;
  border: 1px solid #f1f1f1;
}

/*lot type selection types*/
.iLots {
  max-height: 100%;
  max-width: 100%;
  border: 2px solid #828282;
  border-radius: 5px;
}

/*firewall selection types*/

.fire.fEnabled {
    opacity: 1;
}

.fire {
  opacity: 0.4;
}



.iFire {
  max-height: 100%;
  max-width: 100%;
  border: 2px solid #828282;
  border-radius: 5px;
}

/*lot row formatting*/
.lotCon {
  padding-top: 20px;
}



/*finish type selection types*/
.ifinish {
  max-height: 100%;
  max-width: 100%;
  border: 2px solid #828282;
  border-radius: 5px;
}


/*lot row formatting*/
.finishcon {
  padding-top: 20px;
}


/*make circles that indicate the steps of the form*/
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #FFA500;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

/*mark the active step*/
.step.active {
  opacity: 1;
}

/*mark the steps that are finished and valid*/
.step.finish {
  background-color: #FFA500;
}


/*result button styles*/
.resButtons {
  background-color: #FFA500;
  color: Black;
  border: none;
  padding: 10px;
  border-radius: 4px;
}


/*result links container formatting*/
#resultLinks {
  padding: 30px 0px 30px 0px;
}



/*-- Modal Styles --*/

.modal {
  position: fixed; z-index: 999; left: 0; top: 0; width: 100%; height: 100%;
  overflow: auto; background-color: rgba(0,0,0,0.4);
}
.modal-content {
  background-color: #fff; margin: 10% auto; padding: 20px; border: 1px solid #888;
  width: 300px; border-radius: 8px; text-align: center;
}
.close { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; }
.close:hover { color: #000; }


/* Add space above the modal submit button */
#emailModal .modal-content button {
  margin-top: 16px;
}



/*-----------------------------*/
/*-----------------------------*/
/*-----------------------------*/
/*-----------------------------*/
