@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap");

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

html {
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth !important;
}

body {
  background-color: #474747;
  scroll-behavior: smooth;
  overflow-x: hidden;
}


a {
  text-decoration: none;
}

.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: auto;
  z-index: 100;
}

#header .header {
  min-height: 8vh;
  background-color: rgba(31, 30, 30, 0.24);
}

#header .brand {
  color: #cea779;
  font-size: 1.5rem;
}

#header .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 1300px;
  padding: 0 10px;
  position: inherit;
  z-index: 100;
}


#header .nav-list ul {
  list-style: none;
  position: absolute;
  background-color: black;
  width: 100vw;
  height: 100vh;
  left: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  overflow-x: hidden;
  transition: .7s ease left;
}

#header .nav-list ul.active {
  left: 0;
}

#header .nav-list ul a {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: .2rem;
  color: white;
  text-transform: uppercase;
  padding: 20px;
  display: block;
}

#header .nav-list ul a::after {
  content: attr(data-after);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #C4C4C4;
  font-size: 13rem;
  letter-spacing: 50px;
  text-align: center;
  opacity: 0.1;
  z-index: -100;
  transition: .3s ease letter-spacing;
}

#header .nav-list ul li:hover a::after {
  transform: translate(-50%, -50%) scale(1);
  letter-spacing: initial;
}

#header .nav-list ul li:hover a {
  color: #cea779;
}

#header .hamburger {
  height: 50px;
  width: 50px;
  display: inline-block;
  border: 3px solid #cea779;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 101;
  border-radius: 50%;
  cursor: pointer;
  transform: scale(.8);
}

#header .hamburger::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 3px solid #cea779;
  animation: hamburger_pulse 1s ease infinite;
}

#header .hamburger .bar {
  height: 2px;
  width: 30px;
  position: relative;
  background-color: #cea779;
  z-index: -1;
}

#header .hamburger .bar::after,
#header .hamburger .bar::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  background-color: #cea779;
  transition: .3s ease;
  transition-property: top, bottom;
}

#header .hamburger .bar::after {
  top: 8px;
}

#header .hamburger .bar::before {
  bottom: 8px;
}

#header .hamburger.active .bar::before{
  bottom: 0;
}

#header .hamburger.active .bar::after{
  top: 0;
}

#hero {
  /* background: linear-gradient(to bottom right, black, grey); */
  background-color: #474747;
  position: relative;
  z-index: -2;
  overflow-x: hidden;
}

/* #hero .hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    justify-content: flex-start;
} */

/* #hero .hero {
  z-index: -10;
} */

#hero .gold-line1 {
  height: auto;
  width: auto;
  position: absolute;
  transform: scaleY(-1) rotate(5deg);
  left: 0;
  top: 80px;
  /* z-index: -1; */

}

#hero .gold-line2 {
  height: auto;
  width: auto;
  transform: scaleX(-1) rotate(5deg);
  position: absolute;
  right: 0;
  bottom: 60px;
  /* z-index: -1; */

}

#hero h1 {
  display: block;
  width: fit-content;
  font-size: 4rem;
  position: relative;
  color: transparent;
  animation: text_reveal 0.5s ease forwards;
  animation-delay: 1s;
  /* z-index: -1; */
}

#hero h1:nth-child(1) {
  animation-delay: 1s;
}

#hero h1:nth-child(2) {
  animation-delay: 2s;
}

#hero h1:nth-child(3) {
  /* animation: text_reveal_name .5s ease forwards; */
  animation-delay: 3s;
}

#hero h1 span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #cea779;
  animation: text_reveal_box 1s ease;
  animation-delay: 0.5s;
}

#hero h1:nth-child(1) span {
  animation-delay: 0.5s;
}

#hero h1:nth-child(2) span {
  animation-delay: 1.5s;
}

#hero h1:nth-child(3) span {
  animation-delay: 2.5s;
}

#hero .cta {
  display: inline-block;
  padding: 10px 30px;
  color: #cea779;
  background-color: transparent;
  border: 2px solid #cea779;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-top: 30px;
  transition: 0.3s ease;
  transition-property: background-color, color;
}

#hero .cta:hover {
  color: white;
  background-color: #cea779;
}


/* about-us */

#about-us {}

#about-us .about-us {
  flex-direction: column;
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 100px 0;
}

#about-us .section-title {
  font-size: 50px;
  font-weight: 300;
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .2rem;
  text-align: center;
}

#about-us .section-title span {
  color: #cea779;
}

#about-us .about-us-top p {
  font-size: 15px;
  margin-top: 5px;
  line-height: 2.5rem;
  font-weight: 300;
  letter-spacing: .05rem;
  color: #C4C4C4;
  margin-bottom: 50px;
  margin-right: 40px;
  margin-left: 40px;
}

#about-us .about-us-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

#about-us .about-us-item-1 {
  flex-basis: 80%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  padding: 40px 0;
  border-radius: 10px;
}

#about-us .about-us-item-2 {
  flex-basis: 80%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  padding: 40px 0;
  border-radius: 10px;
}

#about-us .about-us-item-1 h2 {
  font-size: 3rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #cea779;
  text-transform: uppercase;
  font-weight: 400;
  text-align: left;
  padding-bottom: 5px;
  border-bottom: solid 1.5px #cea779;
  width: 80%;
  margin-left: 20%;
}

#about-us .about-us-item-2 h2 {
  font-size: 3rem;
  margin-top: 70px;
  margin-bottom: 20px;
  margin-left: 30px;
  color: #cea779;
  text-transform: uppercase;
  font-weight: 400;
  padding-bottom: 5px;
  border-bottom: solid 1.5px #cea779;
  width: 80%;
}


#about-us .about-us-item-1 p {
  margin-right: 20px;
  font-size: 15px;
  color: #C4C4C4;
  text-align: justify;
  line-height: 2.5rem;
  letter-spacing: 0.05rem;
  width: 80%;
  margin-left: 20%;
}

#about-us .about-us-item-2 p {
  font-size: 15px;
  color: #C4C4C4;
  text-align: justify;
  line-height: 2.5rem;
  letter-spacing: 0.05rem;
  width: 80%;
  margin-left: 30px;
  /* margin-right: 100px; */
}

#about-us .img-about-us-1 {
  height: auto;
  width: auto;
  display: block;
  max-width: 600px;
  min-width: 200px;
  object-fit: cover;
  cursor: pointer;
  -webkit-transition-property: all;
  -webkit-transition-duration: 1s;
  -webkit-transition-timing-function: ease;
  transition-property: all;
  transition-duration: 1s;
  transition-timing-function: ease;
}

.img-about-us-1:hover {
  transform: scale(1.1);
}

#about-us .img-about-us-2 {
  height: auto;
  width: auto;
  display: block;
  max-width: 450px;
  min-width: 200px;
  margin-left: 60px;
  object-fit: cover;
  -webkit-transition-property: all;
  -webkit-transition-duration: 1s;
  -webkit-transition-timing-function: ease;
  transition-property: all;
  transition-duration: 1s;
  transition-timing-function: ease;
}

.img-about-us-2:hover {
  transform: scale(1.1);
}

#services {
  background: linear-gradient(to bottom, #474747, #C4C4C4);
}

#services .section-title {
  font-size: 50px;
  font-weight: 300;
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .2rem;
  text-align: center;
}

#services .section-title span {
  color: #cea779;
}

#services .services {
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}

#services .services-header .h1 {
  margin-bottom: 50px;
}

#services .all-services {
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;

}


#services .service-item {
  position: relative;
}

#services .service-img img {
  max-width: 400px;
  height: auto;
}

#services .service-text {
  position: absolute;
  bottom: 0;
  left: 30px;
  display: flex;
  flex-direction: column;
  height: 50%; /* adjust as needed */
}

#services .service-info {
  /* position: absolute;
  top: 470px;
  left: 30px; */
  position: relative;
  display: flex;
  flex-direction: column;
}

#services .info-content {
  margin-top: 160px;
  margin-bottom: auto;
  height: 190px;
}

#services .service-item h2 {
  font-size: 2.5rem;
  color: #cea779;
  text-transform: uppercase;
  font-weight: 400;
  text-align: left;
  padding-bottom: 5px;
}

#services .service-item h3 {
  font-size: 2rem;
  color: #cea779;
  text-transform: uppercase;
  font-weight: 400;
  text-align: left;
  padding-bottom: 5px;
}

#services ul {
  color: white;
  margin-left: 10px;
  font-size: 12px;
  line-height: 2.5rem;
  font-weight: 300;
  letter-spacing: .05rem;
  padding-bottom: 30px;
  text-align: justify;
}


#services .service-item p {
  color: white;
  font-size: 12px;
  line-height: 2.5rem;
  font-weight: 300;
  letter-spacing: .05rem;
  padding-bottom: 30px;
  text-align: left;
}

#services .service-fees {
  position: relative;
  /* margin-top: 20px; */
}

#services .service-fees p {
  color: white;
  font-size: 16px;
  line-height: 2.5rem;
  font-weight: 300;
  letter-spacing: .05rem;
  padding-bottom: 30px;
  text-align: left;
}


#contact {
  background-color: #C4C4C4;
}

#contact .contact {
  flex-direction: column;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 30px;
}

#contact .contact-details {
  display: flex;
  align-items: center;
  justify-content: space-between; /* This will evenly space the items */
}

#contact .email,
#contact .phone {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  padding-right: 40px;
}

#contact .email img,
#contact .phone img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

#contact .email h3,
#contact .phone h3 {
  font-weight: bold;
  font-size: 2rem;
  color: #474747;
}


#contact .contact-title {
  font-size: 50px;
  font-weight: 400;
  color: #474747;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: .2rem;
  text-align: center;
}

#contact .contact-heading p {
  color: black;
  font-size: 15px;
  text-align: center;
  line-height: 2.5rem;
  font-weight: 300;
  letter-spacing: .05rem;
  padding-bottom: 30px;
  padding-left: 100px;
  padding-right: 100px;
}

#contact a { /* Style for all links within #contact */
  color: #474747; /* Change hyperlink color */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease; /* Smooth transition for hover effect */
}

#contact a:hover {
  color: #cea779; /* Color change on hover */
}

/* #contact .contact-form {
  width: 40%;
  padding: 40px;
  border: #cea779 2px solid;
  background-color: white;
}

#contact .contact-form h2 {
  font-size: 30px;
  font-weight: 500;
  color: #cea779;
}

#contact .contact-form .inputBox {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

#contact .contact-form .inputBox input,
#contact .contact-form .inputBox textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
}

#contact .contact-form .inputBox span {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}

#contact .contact-form .inputBox input:focus ~ span,
#contact .contact-form .inputBox input:valid ~ span,
#contact .contact-form .inputBox textarea:focus ~ span,
#contact .contact-form .inputBox textarea:valid ~ span {
  color: #e91e63;
  font-size: 12px;
  transform: translateY(-20px);
}

#contact .contact-form .inputBox input[type="submit"] {
  width: 100px;
  background-color: #cea779;
  color: black;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
} */



#footer {
  background-color: #C4C4C4;
  padding: 20px 0;
  position: relative;
}

#footer .footer-container {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* This will push the content to the right */
  max-width: 1200px;
  margin: 0 auto;
}

/* Style the copyright notice */
#footer .copyright {
  font-size: 14px;
  color: #cea779;
  margin: 0;
  position: absolute;
  bottom: 10px;
  right: 20px; /* Adjust this value to move it slightly to the left if needed */
}


/* .email,
.phone {
  display: flex;
  align-items: center;
  margin: 0 80px; /* Adjust this margin for the desired spacing */
/* }

.email img,
.phone img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.email h3,
.phone h3 {
  font-size: 18px;
} */

/* .copyright {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
  margin: 10px;
  color: #cea779;
} */


@keyframes hamburger_pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

@keyframes text_reveal_box {
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

@keyframes text_reveal {
  100% {
    color: #cea779;
  }
}


/* @keyframes text_reveal_name {
    100% {
        color: white;
    }
} */


@media only screen and (min-width: 1200px) {

  #header .hamburger {
    display: none;
  }

  #header .nav-list ul {
    position: initial;
    display: block;
    height: auto;
    width: fit-content;
    background-color: transparent;
  }

  #header .nav-list ul li {
    display: inline-block;
  }

  #header .nav-list ul li a {
    font-size: 1.8rem;
  }

  #header .nav-list ul a::after {
    display: none;
  }
}

@media only screen and (min-width: 1000px) and (max-width: 1300px) {

  #services .all-services {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 60px;
  }

  #about-us .about-us-item-1 h2 {
    margin-top: 0;
  }

  #about-us .about-us-item-2 h2 {
    margin-top: 0;
  }

  #about-us .about-us-text-1 {
    /* padding-right: 5%; */
  }


  #about-us .about-us-text-2 {
    margin: 0;

  }

  #about-us .img-about-us-1 {
    max-width: 500px;
    max-width: 100%;
  }

  #about-us .img-about-us-2 {
    margin: 0;
    padding-left: 10%;
  }

#about-us .about-us-item-1 p {

}

}


@media only screen and (max-width: 1000px) {
  #about-us {
    align-items: center;
  }

  #services .all-services {
    grid-template-columns: repeat(1, 1fr);
  }

  #about-us .img-about-us-1 {
    max-width: 90%;
    margin: 0 auto;
  }

  #about-us .img-about-us-2 {
    max-width: 90%;
    margin: 0 auto;
  }

  #about-us .about-us-text-1 {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    /* Center the text block */

  }

  #about-us .about-us-text-2 {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    /* Center the text block */

  }

  #about-us .about-us-item-1, #about-us .about-us-item-2 {
    flex-direction: column;
    flex-basis: 90%;
    margin-top: 40px, auto;
    width: 100%;
  }

  #about-us .about-us-item-1 p,
  #about-us .about-us-item-2 p,
  #about-us .about-us-item-1 h2,
  #about-us .about-us-item-2 h2 {
    margin: 0;
    /* Consolidated margin */
    width: 100%;
    /* Full width for paragraphs and headings */
  }

  #about-us .about-us-item-1 h2,
  #about-us .about-us-item-2 h2 {
    margin-top: 20px;
  }

  #about-us .about-us-item-2 {
    display: flex;
    /* Only needed if different from default */
  }

  #contact .contact-form {
    width: 70%;
  }

  #about-us .img-about-us-2 {
    order: 1;
  }

  #about-us .about-us-text-2 {
    order: 2;
  }

  /* Additional rules for h2 and p inside .about-us-item-2 to set 'order' property */
  #about-us .about-us-item-2 h2 {
    order: 2;
  }

  #about-us .about-us-item-2 p {
    order: 3;
  }
}

.contact-container {
  flex-direction: column;
  padding-bottom: 15px;
}

#contact .contact-details {
  flex-direction: column;
  align-items: flex-start;
}

#contact .email,
#contact .phone {
  padding-right: 20px;
  padding-bottom: 10px;
}

#contact .email h3,
#contact .phone h3 {
  font-size: 1.5rem;
  /* Smaller font size */
}

#contact .contact-title {
  font-size: 35px;
  /* Smaller title */
  margin-bottom: 20px;
}

#contact .contact-heading p {
  font-size: 14px;
  /* Smaller paragraph text */
  padding-left: 20px;
  padding-right: 20px;
  line-height: 2rem;
}

#header .nav-list ul {
  left: -100%;
  /* Hide off-screen to the left */
}

#header .nav-list ul.active {
  left: 0;
  /* Show menu */
}

}
