/* Default Dark Theme */
body {
  font-family: 'Arial', sans-serif;
  background-color: #121212; /* Dark background */
  color: #e0e0e0; /* Light text */
  margin: 0;
  padding: 0;
}

header {
  background-color: #1e1e1e; /* Dark header */
  padding: 20px;
  text-align: center;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5em;
  color: #e0e0e0; /* Light pink */
}

nav {
  margin: 15px 0;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  display: inline; /* Display items in a row */
  margin: 0 15px; /* Space between items */
}

nav ul li a {
  text-decoration: none;
  color: #80cbc4; /* Light teal */
  font-weight: bold;
}

nav ul li a:hover {
  color: #cecece; /* Change color on hover */
}

main {
  padding: 20px;
  min-height: 78dvh;
}

h2 {
  font-family: 'Poppins', sans-serif;
  color: #80cbc4; /* Light teal */
}

.info, .gallery {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #1e1e1e; /* Dark section background */
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}

.image-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.image-container img {
  max-width: 45%;
  border-radius: 8px;
  margin: 10px 0;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: #1e1e1e; /* Dark footer */
  position: relative;
  bottom: 0;
  width: 100%;
}

footer p {
  margin: 0;
}

footer a {
  text-decoration: none;
  color: #80cbc4; /* Light teal */
  font-weight: bold;
}

/* Password Input Styles */
#password-container {
  text-align: center;
  margin-top: 20px;
}

#password {
  padding: 10px;
  border: 1px solid #80cbc4; /* Light teal border */
  border-radius: 5px;
  background-color: #1e1e1e; /* Dark input background */
  color: #e0e0e0; /* Light text */
}

#submit-password {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #80cbc4; /* Light teal button */
  color: #121212; /* Dark text */
  cursor: pointer;
}

#submit-password:hover {
  background-color: #ff79c6; /* Light pink on hover */
}

#error-message {
  margin-top: 10px;
}

.benefits, .about, .questionnaire {
  margin: 20px auto;
  padding: 20px;
  background-color: #1e1e1e; /* Dark section background */
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
  max-width: 800px; /* Limit the width for better readability */
}

.benefits h2, .about h2, .questionnaire h2 {
  color: #80cbc4; /* Light teal for headings */
}

.benefits ul {
  list-style-type: disc; /* Use disc bullets for the benefits list */
  padding-left: 20px; /* Indent the list */
}

.questionnaire form {
  display: flex;
  flex-direction: column; /* Stack form elements vertically */
}

.questionnaire label {
  margin-top: 10px; /* Space between labels and inputs */
  color: #e0e0e0; /* Light text color */
}

.questionnaire input, 
.questionnaire select, 
.questionnaire textarea {
  padding: 10px;
  border: 1px solid #80cbc4; /* Light teal border */
  border-radius: 5px;
  background-color: #1e1e1e; /* Dark input background */
  color: #e0e0e0; /* Light text */
  margin-top: 5px; /* Space between input and label */
}

.questionnaire button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #80cbc4; /* Light teal button */
  color: #121212; /* Dark text */
  cursor: pointer;
  margin-top: 15px; /* Space above the button */
}

.questionnaire button:hover {
  background-color: #ff79c6; /* Light pink on hover */
}

.card-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.card {
  background-color: #1e1e1e; /* Dark card background */
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
  padding: 20px;
  margin: 10px;
  width: 250px
}


.card-wide {
  display: flex;
  flex-direction: row;
  background-color: #1e1e1e; /* Dark card background */
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
  padding: 20px;
  margin: 10px;
  width: 100%
}

.card-wide img {
  width: 65%;
}


.card-wide-text {
  padding: 20px;
  width: 100%;
}

.tenants {
  display: flex;
  flex-direction: column; /* Stack items in a column */
  align-items: center; /* Center items horizontally */
  justify-content: center; /* Center items vertically */
  min-height: 100vh; /* Full height of the viewport */
  padding: 20px; /* Add some padding */
}

.tenatsSub {
  background-color: #1e1e1e; /* Dark background for each item */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1); /* Shadow effect */
  padding: 15px; /* Padding inside each item */
  margin: 10px 0; /* Space between items */
  width: 80%; /* Width of each item */
  max-width: 600px; /* Maximum width for better readability */
  color: #e0e0e0; /* Light text color */
  text-align: center; /* Center text inside each item */
}


* a {
  text-decoration: none;
  color: #80cbc4; /* Light teal */
  font-weight: bold;
}
* a:hover {
  color: #cecece; /* Change color on hover */
}
