@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Karla:ital,wght@0,200..800;1,200..800&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Oswald:wght@200..700&display=swap");
/* General Body Styles */
html {
  scroll-behavior: smooth;
  width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
  padding: 0 20px;
}

/* Navigation Bar */
.navbar {
  background: rgb(252, 252, 252);
  padding: 0.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  text-align: center;
  font-weight: 300;
}
.navbar .logo {
  text-decoration: none;
  position: relative;
}
.navbar .logo img {
  width: 3rem;
  margin-bottom: -3px;
  margin-right: 5px;
}
.navbar .logo span {
  color: black;
  display: inline-block;
  text-align: left;
  font-size: 11pt;
  font-family: "Oswald";
  font-weight: 500;
  line-height: 15px;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
}
.navbar .nav-links li {
  padding: 0 1.2vw;
}
.navbar .nav-links a {
  color: #b01919;
  text-decoration: none;
  font-size: 1.1rem;
}

.anchorref {
  position: absolute;
  top: -50px;
}

.banner {
  padding: 0; /* Remove padding to allow carousel to fill the space */
  position: relative;
  height: 80vh; /* Adjust height as needed */
  color: #fff;
}
.banner .banner-header {
  height: 100%;
}
.banner .banner-header h1 {
  position: relative;
  top: 22vh;
  left: calc(6vw + 115px);
  transform: translateY(-50%);
  color: #b01919;
  font-size: 8.5vh;
  font-family: "IBM Plex Sans";
  font-weight: 400;
  line-height: 8.2vh;
}
.banner .banner-header p {
  position: relative;
  top: 12vh;
  left: calc(6vw + 115px);
  transform: translateY(-50%);
  color: #b01919;
  font-size: 2.5vh;
  font-family: "Nunito Sans";
  font-weight: 300;
  line-height: 27px;
  width: 500px;
}
.banner .banner-header button {
  position: relative;
  top: 10vh;
  left: calc(6vw + 115px);
  padding: 1vw 2.5vw;
  font-size: 2.5vh;
  font-family: "Karla";
  background-color: #b01919;
  border: none;
  border-radius: 3px;
  color: rgb(245, 245, 245);
}
.banner .banner-header button:hover {
  opacity: 0.8;
  cursor: pointer;
}

.carousel-shading {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(
    to right,
    rgba(245, 245, 245, 0.95),
    rgba(245, 245, 245, 0.85),
    rgba(245, 245, 245, 0.6),
    rgba(245, 245, 245, 0.15),
    rgba(245, 245, 245, 0.05),
    rgba(245, 245, 245, 0)
  );
  z-index: 1;
}

.carousel-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-slide {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; /* Ensures image covers the container */
}

.carousel-caption {
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  height: 100%;
  text-align: left;
  border-radius: 5px;
  color: rgb(20, 20, 20);
}

.carousel-caption h1 {
  font-size: 3rem;
}

.carousel-caption p {
  font-size: 1.2rem;
  margin: 0;
  font-family: "Nunito Sans";
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(20, 20, 20, 0.4);
  border: none;
  color: white;
  font-size: 1.8rem;
  padding: 10px;
  border-radius: 3px;
  cursor: pointer;
  z-index: 10;
}
.carousel-btn:hover {
  background-color: rgba(20, 20, 20, 0.8);
}

.prev-btn {
  left: 2vw;
  transform: rotate(180deg);
}

.next-btn {
  right: 2vw;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 10;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #dbdbdb;
  border-radius: 50%;
  box-shadow: 0px 1px 2px rgba(20, 20, 20, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #b01919;
}

.cta-button {
  display: inline-block;
  background: #b01919;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 3px;
  border: none;
  font-size: 1rem;
  font-family: "Karla";
  transition: background 0.3s;
}

.cta-button:hover {
  background: #555;
}

/* General Section Styling */
.section {
  position: relative;
  padding: 60px 0;
  border-bottom: 1px solid #ddd;
}

.section:nth-of-type(odd) {
  background-color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

h2 h3 {
  font-family: "Karla";
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: center;
}

.service-item {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: left;
}
.service-item img {
  margin-left: 50%;
  transform: translateX(-50%);
}
.service-item h3 {
  font-size: 14pt;
  text-align: center;
}
.service-item p {
  font-family: "Nunito Sans";
  font-size: 11pt;
}
.service-item span {
  margin-top: 20px;
  font-weight: 700;
}
.service-item .foam {
  height: 120px;
}
.service-item .box {
  height: 120px;
}
.service-item .bag {
  height: 120px;
}

#description .container p {
  font-family: "Nunito Sans";
}

/* About Section */
#about {
  position: relative;
  overflow: hidden;
}
#about img {
  position: absolute;
  right: -5px;
  top: 0;
  z-index: 1;
  opacity: 0.5;
  width: 500px;
}
#about p {
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  font-family: "Nunito Sans";
}

/* Contact Section */
#contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

#contact input,
#contact textarea {
  padding: 10px 15px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Nunito Sans";
  resize: none;
}
#contact input:focus,
#contact textarea:focus {
  outline: none;
  border: 1px solid rgba(20, 20, 20, 0.4);
}

/* Footer */
.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 50px 0 20px 0;
  font-family: "Nunito Sans";
  color: rgb(200, 200, 200);
}
.footer .sectionleft {
  width: 49%;
  display: inline-block;
}
.footer .sectionleft img {
  width: 150px;
  margin-bottom: -20px;
}
.footer .sectionright {
  width: 49%;
  display: inline-block;
  text-align: left;
  margin: auto 0;
}
.footer .sectionright p {
  margin: 0;
  padding-left: 20%;
}
.footer .copyright {
  padding-top: 30px;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    width: 100vw;
    height: 90px;
  }
  .navbar .container {
    flex-direction: column;
    margin: 0;
    width: 100vw;
    padding: 0;
  }
  .navbar .nav-links {
    margin: 10px 0 5px 0;
    padding: 0;
  }
  .navbar .nav-links a {
    font-size: 11pt;
    padding: 0 5px;
  }
  .banner {
    padding: 100px 0 0px 0;
    width: 100vw;
    height: 70vh;
  }
  .banner .carousel-shading {
    background-image: initial;
    background-color: rgba(250, 250, 250, 0.65);
    width: 100vw;
  }
  .banner .carousel-shading .banner-header {
    width: 100vw;
    height: 70vh;
  }
  .banner .carousel-shading .banner-header h1 {
    font-size: 42pt;
    line-height: 60px;
    width: 100vw;
    left: 0;
    top: 24vh;
    text-align: center;
  }
  .banner .carousel-shading .banner-header p {
    width: 80vw;
    left: 0;
    top: 12vh;
    padding-left: 17vw;
    font-size: 13pt;
    transform: initial;
    line-height: initial;
  }
  .banner .carousel-shading .banner-header button {
    width: 50vw;
    height: 40px;
    left: 50%;
    transform: translateX(-50%);
    top: 15vh;
  }
  .banner .prev-btn {
    display: none;
  }
  .banner .next-btn {
    display: none;
  }
  .service-item p {
    display: none;
  }
  .service-item span {
    margin-top: 20px;
    font-weight: 300;
  }
  .footer {
    width: 100vw;
    margin: 0;
    padding: 40px 0 0 0;
  }
  .footer .container {
    margin: 0;
    padding: 0;
    width: 100vw;
  }
  .footer .container .sectionleft {
    width: 100vw;
  }
  .footer .container .sectionright {
    width: 100vw;
    margin-top: 50px;
  }
  .footer .container .sectionright p {
    padding: 0;
    text-align: center;
  }
  .footer .container .copyright {
    width: 100vw;
    text-align: center;
    margin: 40px 0 15px 0;
    padding: 0;
    font-size: 10pt;
  }
} /*# sourceMappingURL=style.css.map */
