/* Global Styles */
html, body, .cover {
  height: 100%;
  margin: 0;
  padding: 0;
}

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

/* Cover Section */
.cover {
  background: url('img/couchfriends.jpg') top left no-repeat;
  background-size: cover;
  display: table;
  width: 100%;
  padding: 0 20%;
  box-shadow: inset 0 0 100px #100;
  color: white;
  text-align: center;
}

.cover-text {
  display: table-cell;
  vertical-align: middle;
}

.cover-text h1 {
  font-size: 60px;
  color: burlywood;
  margin: 0;
  letter-spacing: -2px;
}

/* Navbar Brand */
.navbar-brand {
  color: white !important;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: white;
  text-decoration: none;
}

/* Sections */
section {
  padding: 100px;
}

h2 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 60px;
}

h2 + p {
  text-align: center;
  margin-top: -30px;
  color: #666;
}

/* Contact Section */
/* Contact Section */
#contact {
  background-color: black; /* Slightly darker grey */
  color: white; /* White text */
  text-align: center;
  padding: 100px;
}

#contact h2 {
  color: white; /* Ensure the heading is white */
}

#contact p {
  font-size: 16px;
  margin-bottom: 20px;
}

#contact a {
  color: #007bff;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

#contact p {
  text-align: center;
  color: white;
}


/* Team Section */
#team {
  background: url('img/fan.jpg') top left no-repeat;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

/* Footer */
footer {
  background: black;
  color: beige;
  text-align: center;
  padding: 20px;
}

footer a {
  color: red;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Testimonials */
.testimonial {
  background: #100000;
  color: aliceblue;
  padding: 50px 20px;
}

blockquote {
  border: none;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: 32px;
}

blockquote cite {
  display: block;
  font-family: Helvetica, sans-serif;
  font-style: normal;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: right;
  color: antiquewhite;
}

/* Media Queries */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .cover-text h1 {
    font-size: 40px;
    margin: 0 20px;
  }

  section {
    padding: 20px;
  }

  #team {
    padding: 50px 20px;
  }

  h2 {
    font-size: 24px;
  }

  blockquote {
    font-size: 24px;
  }

  blockquote cite {
    font-size: 16px;
  }
}

/* Small devices (portrait tablets and large phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .cover-text h1 {
    font-size: 50px;
  }

  section {
    padding: 40px;
  }

  #team {
    padding: 70px 40px;
  }

  h2 {
    font-size: 26px;
  }

  blockquote {
    font-size: 28px;
  }

  blockquote cite {
    font-size: 18px;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .cover-text h1 {
    font-size: 55px;
  }

  section {
    padding: 60px;
  }

  #team {
    padding: 80px 60px;
  }

  h2 {
    font-size: 28px;
  }

  blockquote {
    font-size: 30px;
  }

  blockquote cite {
    font-size: 18px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .cover-text h1 {
    font-size: 60px;
  }

  section {
    padding: 100px;
  }

  #team {
    padding: 100px 80px;
  }

  h2 {
    font-size: 32px;
  }

  blockquote {
    font-size: 32px;
  }

  blockquote cite {
    font-size: 20px;
  }

}

/* Solution Overview Section */
#solution-overview.dark-box {
    background-color: black; /* Dark grey background */
    color: white; /* White text */
    padding: 60px 20px; /* Padding for spacing */
    text-align: center; /* Center align text */
}

#solution-overview h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white; /* Ensure the heading is white */
}

#solution-overview p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px; /* Limit the width of the text for better readability */
    margin: 0 auto;
    color: white;
}

