* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  font-family: 'Open Sans', sans-serif;
  color: #233f52;
}

p {
  line-height: 1.5;
}

/* Nav */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.logo {
    width: 45%;
    height: 100px;
    font-size: 20px;
    font-weight: bold;
}

.logo img {
    height: 100%;
}

.nav-menu {
    display: flex;
    width: 35%;
    align-items: center;
    list-style: none;
    justify-content: space-between;
    font-size: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: black;
}

/* END NAV */

/* HOMEPAGE HERO */
.home-hero-overlay-container {
    position: relative;
    background-image: url('../../images/gallery-page/home_hero_landscaping_2.jpg');
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-hero-overlay-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #233f5299;
  z-index: 1;
}

.home-hero {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.home-hero h1 {
    text-align: center;
    width: 90%;
    font-size: 78px;
    font-weight: 300;
    color: white;
}

.home-hero p {
    width: 50%;
    text-align: center;
    font-size: 24px;
    color: white;
}

.orange-button button {
    background-color: #ff8800;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.orange-button button:hover {
    transform: scale(1.05);
}

button a {
    color: inherit;
    text-decoration: none;
}

/* END HOME HERO */

.services-section {
    padding: 100px 50px;
}

.services-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-title-container, .services-text-container {
    height: 80px;
    display: flex;
}

.services-title-container h2 {
    font-weight: 300;
    font-size: 2.5rem;
}

.services-text-container {
    border-left: 1px solid #FF8800;
    padding-left: 40px;
    align-items: center;
    font-size: 1.3rem;
    max-width: 45%;
}

.services-card-container {
    display: flex;
    justify-content: space-between;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 30%;
    gap: 20px;
    margin-top: 50px;
}

.card img {
    border-radius: 0 30px;
    width: 100%;
}

.card h3 {
    font-weight: 300;
    font-size: 1.5rem;
}

.about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 50px;
  background-color: rgb(248, 247, 247);
  gap: 20px;
  width: 100%;
}

.about h2 {
  font-weight: 300;
  font-size: 2.5rem;
}

.about p {
  font-size: 1.3rem;
}

.about p a {
  text-decoration: none;
  color: #ff8800;
}

.about p a:hover {
  font-weight: bold;
}

.about img {
  width: 100%;
  border-radius: 0 30px;
  margin-top: 50px;
  height: 650px;
  object-fit: cover;
  object-position: center top;
}

.testimonial-overlay-container {
    position: relative;
    background-image: url('../../assets/home-hero-img.jpg');
    height: 550px;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.testimonial-overlay-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.testimonial {
    position: relative;
    z-index: 2;
    padding: 100px 50px 0 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.testimonial h2 {
  font-weight: 300;
  font-size: 2.5rem;
  margin-bottom: 80px;
  color: white;
  text-align: center;
}

.testimonial p {
  font-size: 1.3rem;
}

.testimonial-card-container {
    display: flex;
    background-color: white;
    border-radius: 30px 30px 0 0;
    height: 70%;
}

.testimonial-card-container > :not(:first-child) {
    position: relative;
}

.testimonial-card-container > :not(:first-child)::before {
  content: '';
  position: absolute;
  top: 30px; /* Start of the border */
  bottom: 30px; /* End of the border */
  left: 0;
  width: 1px; /* Border thickness */
  background-color: black; /* Border color */
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px 40px;
    gap: 30px;
}

.fa-quote-left {
    color: #FF8800;
    font-size: 150%;
}

.why-choose-us {
    padding: 0 50px 100px;
    background-color: rgb(248, 247, 247);
    width: 100%;
}

.why-choose-us h2 {
    font-weight: 300;
    font-size: 2.5rem;
    margin-bottom: 80px;
}

.why-choose-us-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.why-choose-us-card {
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
    border-radius: 0 30px;
    width: 30%;
    
}

.why-choose-us-card h3 {
    font-weight: 300;
    font-size: 1.5rem;
}

.get-quote {
    background-color: #233f52;
    padding: 80px 20px 50px 20px;
}

.get-quote-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-radius: 0 30px;
    padding: 60px 50px;
}

.get-quote-container h2 {
    font-weight: 300;
    font-size: 2.5rem;
}

/* FOOTER */
.footer {
    display: flex;
    justify-content: space-between;
    padding: 70px 50px;
    background-color: #233f52;
    margin-top: 1px;
    color: white;
}

.footer h3 {
    font-weight: 300;
    font-size: 1.5rem;
}

.about-us-container, .quick-links-container, .contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 30%;
}

.footer ul {
    list-style: none;
    line-height: 2;
}
.footer .quick-links-container a, .footer .contact-info-container a {
    /* text-decoration: none; */
    color: inherit;
}
/* END FOOTER */

/* SUB PAGES HEADER */
.sub-pages-hero {
    height: 200px;
    background-color: #233f52;
    display: flex;
    align-items: center;
    padding-left: 100px;
    justify-content: center;
}

.sub-pages-hero h1 {
    color: white;
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 300;
    /* margin-bottom: -20px; */
}

/* SERVICES PAGE */
.services-list {
    padding: 100px 50px;
}
.services-list > p {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 50px;
}

.service-item {
    padding-bottom: 25px;
}

/* ABOUT PAGE */
.about-page {
    padding: 100px;
}

.about-intro {
    padding: 20px 0;
}

.about-intro a {
    color: black;
}

.about-intro h2, .about-meet-team p:first-of-type, .meet-team-intro {
    padding-bottom: 20px;
}

.about-intro hr {
    margin: 20px 0;
}

.about-meet-team p:first-of-type {
    font-weight: bold;
}

.about-main .why-choose-us {
    padding-top: 100px;
}

/* GALLERY PAGE */
.gallery-page {
    padding: 100px;
}

.gallery-intro h2 {
    padding-bottom: 20px;
}

.gallery-intro {
    padding-bottom: 50px;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-images img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* CONTACT PAGE */
.contact-us-section {
    padding: 100px 50px;
}

.contact-us-section h2 {
    font-size: 36px;
}

.contact-us-section > p {
    font-size: 24px;
    padding: 20px 0;
}

.contact-info {
    font-size: 20px;
}

.contact-info a {
    color: black;
}