/* General Body Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #fff;
  background: url('images/background.png') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

/* Overlay to darken background for readability */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  z-index: -1;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
}

/* Header Styles */
header {
  background-color: white;
  /*color: white;
  padding: 20px;*/
  text-align: left;
  padding: 0rem 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.box {
  width: 30%;
  height: 100px;
  border: 5px dashed #f7a239;
}

img {
  width: 500px; /* takes the 100 % width of its container (.box div)*/
  /* height: 100%;  takes the 100 % height of its container (.box div)*/
  object-fit: cover;
}

header h1 {
  font-family: Krub;
  font-size: 2.5em;
  margin: 0;
}

nav {
	font-family: Krub;
	padding: 50px;
	display: flex;
	gap: 2rem;
}

nav a {
  /*color: #fff;*/
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Main Content Section */
main {
  padding: 20px;
}

main h2 {
  font-size: 1.6em;
  color: white;
  margin-bottom: 10px;
  justify-content: center;
}

main p {
  font-size: 1em;
  line-height: 1.4;
  color: white;
}

.little {
  font-size: .75em;
  color: white;
  padding: 10rem;
}

.services {
font-size: 1.25em;
color:black;
list-style-type: square;
padding-left: 43rem;
}

.about {
  width: 100%;
  max-width: 500px; /* caps the width */
  color: white;
  font-size: 1.1em;
}

.address {
padding 0px,200px,0px,200px;
  display: flex;
  gap: 3rem;
  color:= white;
  font-size: .85em;
  justify-content: center; /* Distributes space evenly between the items */
  align-items: center; /* Aligns items vertically (optional) */}
}

/* Form Elements Styling */
form {
  margin-top: 30px;
}

form input,
form textarea {
  width: 100%;
  max-width: 400px; /* caps the width */
}


form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 1.1em;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form label {
  font-size: 1.2em;
  color: white;
}

form button,
form input[type="button"] {
  padding: 10px;
  margin: 10px 0;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 1.1em;
  background-color: black; /*#fff;*/
  color: white;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  max-width: 140px;

}

/* Input Focus and Hover Effects */
input[type="text"]:focus, textarea:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 8px rgba(52, 152, 219, 0.5);
}

input[type="text"]:hover, textarea:hover {
  border-color: #2980b9;
}

/* Textarea Styles */
textarea {
  height: 150px;
  resize: vertical; /* Allows resizing vertically */
}

/* Footer Styles */
footer {
  background-color: #2c3e50;
  color: white;
  padding: 10px;
  text-align: center;
  position: fixed;
  width: 100%;
  bottom: 0;
}

footer p {
  margin: 0;
  font-size: 1em;
}
