
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
}

.navbar {
  display: flex;
  justify-content: center;
  background-color: rgba(0,0,0,0.7);
  padding: 10px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar button {
  margin: 0 10px;
  padding: 10px 20px;
  background-color: white;
  border: none;
  cursor: pointer;
}

.navbar button.active {
  background-color: #ff9900;
}

.content {
  padding-top: 70px;
  text-align: center;
}

.section {
  display: none;
}

.box {
  background-color: white;
  padding: 20px;
  margin: 20px auto;
  width: 80%;
  border-radius: 10px;
}

.photo-buttons button {
  margin: 5px;
}

ul {
  text-align: left;
  padding-left: 20px;
  line-height: 1.6;
}
/* Style for the white box around the Contact Us form */
#contact .box {
  width: 50%;
  margin: 0 auto; /* centers the box horizontally */
  background-color: white;
  padding: 20px;
  box-sizing: border-box;
}

/* Stylish white box around the Contact Us form */
#contact .box {
  width: 50%;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border: 2px solid #007BFF; /* Stylish blue border */
  border-radius: 12px;        /* Rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow */
  box-sizing: border-box;
}

/* Stylish input fields and textarea */
#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif; /* Stylish font */
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  margin-bottom: 15px;
}

/* Taller message box */
#contact textarea {
  height: 200px;
}

/* Stylish placeholder text */
#contact input::placeholder,
#contact textarea::placeholder {
  color: #555;
  font-weight: 600;
  font-size: 18px;
}

/* Stylish submit button */
#contact button[type="submit"] {
  background-color: #007BFF;
  color: white;
  padding: 15px 25px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
}

#contact button[type="submit"]:hover {
  background-color: #0056b3;
}
}
