* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

header {
  background-color: #333;
  color: #fff;
  padding: 1rem;
}

/*
.logo {
  display: flex;
  align-items: center;
  margin-right: auto; Push the logo to the left as much as possible 
}

.logo img {
  width: 40px;  Adjust the width of the logo 
  height: auto;  Maintain aspect ratio 
  margin-right: 10px;  Adjust the margin as needed
}
*/

nav ul {
  list-style-type: none;
  text-align: right;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

section {
  padding: 2rem;
}

section h1,
section h2 {
  margin-bottom: 1rem;
}

#home {
  background-image: url("assets/reno1.jpg");
  background-size: cover;
  background-attachment: fixed; /* This ensures the background image remains fixed when scrolling */
  background-position: center;
  color: #fff; /* Set text color for better readability */
  text-align: center;
  padding: 2rem;
  height: 100vh; /* Set the height to 100% of the viewport height */
  display: flex;
  align-items: center;
  position: relative; /* Add this to enable positioning of the overlay */
}

/* Add an overlay with transparency */
#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha value for the desired level of transparency */
}

#home .home-text {
  width: 500px;
  margin: 0 auto;
  color: white;
  font-size: 20px;

  z-index: 2; /* Ensure the text is on top of the overlay */
}

#about {
  color: #000000;
  text-align: center;
  /* width: 50%;
  top: 50%; */
  padding: 2rem;
  height: 100vh;
  display: flex;
  align-items: center;
}
.about-text {
  width: 500px;
  margin: 0 auto;
  font-size: 20px;

  /* background: linear-gradient(to right, #ffffff, #000000);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text; */
  color: rgb(0, 0, 0);
  text-align: center;
}

#renovations {
  background-image: url("assets/reno1.jpg");
  background-size: cover;
  background-attachment: fixed; /* This ensures the background image remains fixed when scrolling */
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

#renovations::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha value for the desired level of transparency */
}

#renovations .reno-text {
  width: 500px;
  margin: 0 auto;
  font-size: 20px;
  color: rgb(255, 255, 255);
  z-index: 2; /* Ensure the text is on top of the overlay */
}

#services {
  color: #000000;
  text-align: center;
  padding: 2rem;
  height: 100vh;
  display: flex;
  align-items: center;
}

.services-text {
  width: 700px;
  margin: 0 auto;
  font-size: 20px;

  /* background: linear-gradient(to right, #ffffff, #000000);
      -webkit-text-fill-color: transparent;
      -webkit-background-clip: text; */
  color: rgb(0, 0, 0);
  text-align: center;
}

.services-text ul {
  list-style-type: none;
}

#img2-1 {
  background-image: url("assets/reno1.jpg");
  background-size: cover;
  background-attachment: fixed; /* This ensures the background image remains fixed when scrolling */
  background-position: center;
  color: #fff; /* Set text color for better readability */
  text-align: center;
  padding: 2rem;
  height: 100vh; /* Set the height to 100% of the viewport height */
  display: flex;
  align-items: center;
  position: relative; /* Add this to enable positioning of the overlay */
}

/* Add an overlay with transparency */
#img2-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha value for the desired level of transparency */
}

#img2-1 .img2-1-text {
  width: 500px;
  margin: 0 auto;
  color: white;
  font-size: 20px;
  z-index: 2; /* Ensure the text is on top of the overlay */
}

.listing-bullets-2 {
  list-style-type: none;
}

#Kitchen {
  color: #000000;
  text-align: center;
  /* width: 50%;
  top: 50%; */
  padding: 2rem;
  height: 100vh;
  display: flex;
  align-items: center;
}
.kit-text {
  width: 500px;
  margin: 0 auto;
  font-size: 20px;

  /* background: linear-gradient(to right, #ffffff, #000000);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text; */
  color: rgb(0, 0, 0);
  text-align: center;
}

#img2-2 {
  background-image: url("assets/reno1.jpg");
  background-size: cover;
  background-attachment: fixed; /* This ensures the background image remains fixed when scrolling */
  background-position: center;
  color: #fff; /* Set text color for better readability */
  text-align: center;
  padding: 2rem;
  height: 100vh; /* Set the height to 100% of the viewport height */
  display: flex;
  align-items: center;
  position: relative; /* Add this to enable positioning of the overlay */
}

/* Add an overlay with transparency */
#img2-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha value for the desired level of transparency */
}

#img2-2 .img2-2-text {
  width: 500px;
  margin: 0 auto;
  color: white;
  font-size: 20px;
  z-index: 2; /* Ensure the text is on top of the overlay */
}

#Bathroom {
  color: #000000;
  text-align: center;
  /* width: 50%;
  top: 50%; */
  padding: 2rem;
  height: 100vh;
  display: flex;
  align-items: center;
}
.bath-text {
  width: 700px;
  font-size: 20px;
  margin: 0 auto;
  /* background: linear-gradient(to right, #ffffff, #000000);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text; */
  color: rgb(0, 0, 0);
  text-align: center;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-item {
  flex: 1;
  text-align: left;
  padding: 0 10px;
}

.footer-item-2 {
  flex: 1;
  text-align: right;
  padding: 0 10px;
}

.email {
  text-decoration: none;
  color: white;
}
/* Adjust for responsiveness */
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-item {
    flex: none;
    margin-bottom: 20px;
  }
}
