@import url("https://fonts.googleapis.com/css2?family=Kalam:wght@700&family=Noto+Serif&display=swap");

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

/* Main stying of the entire body*/
html,
body {
  line-height: 1.7em;
  font-family: "Noto Serif", serif;
}

header,
h1,
h2,
h3,
h4 {
  font-family: "Kalam", cursive;
}

/* stying the "a" ref*/
a {
  color: #333;
  text-decoration: none;
}

/* syting all the paragraph */
p {
  margin: 10px 0;
}

/* utility class */
.container {
  margin: auto;
  max-width: 1100px;
  overflow: auto;
  padding: 0 20px;
}

.text-Primary {
  color: rgb(255, 136, 92);
}

.lead {
  font-size: 30px;
}

.btn {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  background-color: #001853;
  padding: 13px 20px;
  border: none;
  cursor: pointer;
}

.btn-light {
  background-color: #f4f4f4;
  color: #001853;
}

.btn:hover {
  background-color: rgb(255, 136, 92);
  color: #333;
}

.bg-dark {
  background-color: #001853;
  color: #fff;
}

.bg-light {
  background-color: #f4f4f4;
  color: #001853;
}

.bg-primary {
  background-color: #001853;
  color: #f4f4f4;
}

.clr {
  clear: both;
}
/* navbar */
#navbar {
  background-color: #001853;
  color: #fff;
  float: auto;
  overflow: hidden;
}

.logo a {
  color: rgb(255, 136, 92);
}

#navbar ul a {
  color: #fff;
}

#navbar h1 {
  float: left;
  padding-top: 20px;
}

#navbar ul {
  list-style: none;
  float: right;
}

#navbar ul li {
  float: left;
}

#navbar ul li a {
  display: block;
  padding: 20px;
  text-align: center;
}

#navbar ul li a:hover,
#navbar ul li a.current {
  color: rgb(255, 136, 92);
  transition: 0.3s;
}

.burger {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.burger .line {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
}

.burger.toggle .line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line:nth-child(2) {
  opacity: 0;
}

.burger.toggle .line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Styling the showcase section */
#showcase {
  background-image: url(../CSS/image/showcase.jpeg);
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  /* height: 600px; */
  font-family: "Kalam", cursive;
}

#showcase .showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* justify-items: center; */
  align-items: center;
  text-align: center;
  color: #fff;
  height: 100vh;
}

#showcase .showcase-content h1 {
  font-size: 60px;
  line-height: 1.2em;
}

#showcase .showcase-content p {
  padding-bottom: 20px;
  line-height: 1.7em;
}

/* styling the home-info */
#home-info {
  height: 400px;
}

#home-info .info-image {
  float: left;
  width: 50%;
  background-image: url(../CSS/image/outside.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100%;
}

#home-info .info-content {
  float: right;
  width: 50%;
  min-height: 100%;
  overflow: hidden;
  text-align: center;
  padding: 60px 40px;
}

#home-info .info-content p {
  padding-bottom: 30px;
  padding-top: 30px;
}

/* Features */
#features {
  margin-bottom: 20rem;
  font-weight: 100;
}

#features h1 {
  text-align: center;
  padding: 20px;
  color: #001853;
  margin-top: 50px;
}

.box {
  float: left;
  width: 33.3%;
  padding: 40px;
  text-align: center;
  color: #001853;
}

.box i {
  color: rgb(255, 136, 92);
}

.unique {
  background-color: #001853;
  color: #fff;
  box-shadow: 10px 10px rgb(255, 136, 92);
  border-radius: 10px;
}

.unique h3 {
  color: rgb(255, 136, 92);
}

.main-footer {
  background-color: #001853;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 10px;
  bottom: 0;
}

/* ABOUT STYLING */
.about h1 {
  color: #001853;
  margin-bottom: 20px;
}

.about p {
  font-weight: 100;
  text-align: center;
}

.about-container {
  margin: auto;
  max-width: 1100px;
  padding: 20px;
  display: flex;
  gap: 20px;
  text-align: center;
  align-items: center;
}

.about-container img {
  width: 100rem;
  height: 30rem;
  box-shadow: 0 0 8px 8px #d6d4d4;
}

/*CONTACT & GUESTS TESTIMONIES */
.testimony {
  margin: auto;
  max-width: 1100px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimony h1 {
  margin-bottom: 30px;
  margin-top: 50px;
}

.test-container {
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 20px;
}

.guest {
  background-color: #001853;
  padding: 15px;
  display: flex;
  text-align: justify;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.guest img {
  border-radius: 100%;
  width: 100px;
  height: 80px;
}

/* CONTACT */
.contact {
  margin: auto;
  width: 40%;
  padding: 20px;
}

.contact-container {
  margin-top: 40px;
}

.form-detail {
  margin-bottom: 20px;
}

.form-detail label {
  display: block;
  margin-bottom: 5px;
}

.contact input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact textarea {
  height: 200px;
}

.contact input:focus,
textarea:focus {
  outline: none;
  border: 2px solid rgb(255, 136, 92);
}

.contact-info .container {
  background-color: #001853;
}

.contact-info .container .box {
  color: #f4f4f4;
}

.contact-details i,
h4 {
  color: rgb(255, 136, 92);
}
