@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  border: none;
  transition: all 0.3s;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins";
}

@font-face {
  font-family: "Poppins";
  src: url("../typography/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "DMSerifDisplay";
  src: url("../typography/DMSerifDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
}
.green-text {
  color: rgb(22, 148, 22);
}

.red-text {
  color: red;
}

.important-text {
  color: #c88c8c;
}

.bold {
  font-weight: 600;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.hidden {
  opacity: 0;
  scale: 0.8;
}

.shown {
  opacity: 1;
  scale: 1;
}

hr {
  width: 100%;
  background-color: #c8c5ba;
  height: 2px;
}

body {
  background-color: #c8c5ba;
  overflow-x: hidden;
}

.body-content {
  padding: 1rem;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  color: black;
  gap: 50px;
}

a {
  color: #c88c8c;
}

.btn {
  padding: 0.5rem 1.6rem;
  border-radius: 8px;
  border: solid 2px #c8c5ba;
  background: #c8c5ba;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  min-width: 200px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn:active {
  transform: scale(0.95);
  box-shadow: none;
}
.btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(200, 197, 186, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}
.btn:hover:after {
  width: 300px;
  height: 300px;
  pointer-events: none;
}
.btn:hover {
  translate: 0px -5px;
}

.ghost-btn {
  background: transparent;
  border: solid 2px #c8c5ba;
  color: #c8c5ba;
  transition: all 0.3s ease;
}
.ghost-btn:hover {
  background: #c8c5ba;
  color: #333333;
  box-shadow: 0 4px 12px rgba(200, 140, 140, 0.3);
  transform: translateY(-2px);
}
.ghost-btn:active {
  transform: scale(0.95);
  box-shadow: none;
}

section {
  text-align: center;
}
section h2 {
  margin-bottom: 30px;
}

.card {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(200, 140, 140, 0.3);
  background: rgba(245, 245, 245, 0.5);
  overflow: hidden;
  border: solid 1px rgba(200, 140, 140, 0.4);
}
.card .card-content {
  position: relative;
  padding: 1rem;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.card::after {
  content: "✿";
  position: absolute;
  bottom: 0;
  right: 10px;
  font-size: 8rem;
  color: rgba(200, 140, 140, 0.1);
  pointer-events: none;
  line-height: 1;
  transform: translateY(25%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(200, 140, 140, 0.5);
}
.card:hover::before, .card:hover::after {
  opacity: 1;
}

.section-title {
  color: #333333;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-family: "DMSerifDisplay";
  letter-spacing: 2px;
  width: 100%;
}
.section-title .styled-underline {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: auto;
}

section {
  margin-bottom: 2rem;
}

.show-up-blur {
  animation: showUpBlurAnimation 1.5s forwards;
}

@keyframes showUpBlurAnimation {
  0% {
    opacity: 0;
    filter: blur(15px);
    transform: translateY(300vh);
  }
  80% {
    opacity: 0;
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
  }
}
.blur-in {
  animation: blurIn 1.5s forwards;
}

@keyframes blurIn {
  0% {
    filter: blur(0px);
  }
  to {
    filter: blur(8px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #c8c5ba;
  font-weight: bold;
}

.nav-icon-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-icon-wrapper:hover .nav-title {
  color: whitesmoke;
}

.nav-icon {
  width: 100%;
  max-width: 40px;
  border-radius: 100vh;
}
@media screen and (min-width: 700px) {
  .nav-icon {
    max-width: 50px;
  }
}

.nav-title {
  color: #333333;
  font-size: 1.3rem;
}

.nav-links {
  display: none;
}
@media screen and (min-width: 700px) {
  .nav-links {
    display: flex;
    gap: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    align-items: center;
    font-size: 0.9rem;
  }
  .nav-links p {
    color: #333333;
    position: relative;
  }
  .nav-links p:hover {
    color: whitesmoke;
  }
  .nav-links p::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: whitesmoke;
    transition: width 0.3s ease;
  }
  .nav-links p:hover::after {
    width: 100%;
  }
}

@media screen and (min-width: 700px) {
  .nav-link {
    padding: 0.5rem 1rem;
    display: flex;
    gap: 10px;
    border-radius: 100vh;
  }
}

.side-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(-200%);
  padding: 1rem;
  background-color: #c88c8c;
  z-index: -1;
  gap: 50px;
}

.side-bar-links {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.side-bar-link {
  display: flex;
  gap: 10px;
  align-items: center;
  color: whitesmoke;
  font-size: 1.5rem;
}
.side-bar-link:hover {
  color: #c88c8c;
}

.side-bar-social {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 15px;
}

.social-link {
  width: 50px;
}

.toggle-btn {
  background: none;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 35px;
  height: 30px;
  padding: 5px;
  border-radius: 5px;
}
@media screen and (min-width: 700px) {
  .toggle-btn {
    display: none;
  }
}
.toggle-btn .bar {
  height: 2px;
  width: 100%;
  background-color: #333333;
  border-radius: 2px;
  transition: transform 0.4s ease, opacity 0.2s ease;
}
.toggle-btn.toggled .bar:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.toggle-btn.toggled .bar:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}
.toggle-btn.toggled .bar:nth-child(2) {
  opacity: 0;
}

.header {
  height: 80vh;
  background-image: url(../assets/header.jpg);
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header-content {
  padding: 1rem;
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.header-title {
  color: whitesmoke;
  font-size: 5rem;
  line-height: 0.8;
  opacity: 0;
  font-family: "DMSerifDisplay";
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .header-title {
    text-align: left;
  }
}

.header-subtitle {
  animation-delay: 0.3s;
  filter: blur(15px);
  transform: translateY(300vh);
  color: whitesmoke;
  font-size: 2rem;
}

.cta-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin-top: 3rem;
}
.cta-section .btn {
  min-width: 250px;
  animation-delay: 0.4s;
  filter: blur(15px);
  transform: translateY(300vh);
}
.cta-section .ghost-btn {
  animation-delay: 0.5s;
  filter: blur(15px);
  transform: translateY(300vh);
}
@media screen and (min-width: 768px) {
  .cta-section {
    flex-direction: row;
    margin-top: 0;
    gap: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.services-container {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .services-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services-container .service {
  width: 100%;
  max-width: 320px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(200, 140, 140, 0.2);
  text-align: left;
}
.services-container .service .service-image {
  width: 100%;
}
.services-container .service:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 25px rgba(200, 140, 140, 0.35);
}
.services-container .service:hover h3 {
  color: #c88c8c;
}
.services-container .service:hover .service-image {
  scale: 1.5;
}
.services-container .service .card-content {
  padding: 1rem;
}
.services-container .service h3 {
  font-size: 1.5rem;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
}
.services-container .service ul {
  color: #333333;
  line-height: 1.8;
}
.services-container .service ul li:before {
  content: "✦";
  margin-right: 5px;
  font-size: 0.9rem;
}

.products {
  width: 100%;
  overflow: hidden;
}
.products .styled-underline {
  padding: 1rem;
}
.products .products-carousel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100%;
  padding: 1rem;
}
.products .products-carousel::-webkit-scrollbar {
  display: none;
}
.products .products-carousel .carousel-card {
  position: relative;
  width: 100%;
  min-width: 250px;
  max-width: 250px;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  scroll-snap-align: start;
}
.products .products-carousel .carousel-card:hover {
  transform: scale(1.02);
}
.products .products-carousel .carousel-card:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
}
.products .products-carousel .carousel-card:first-child .carousel-title {
  font-size: 3.5rem;
  text-wrap: wrap;
  line-height: 0.9;
  color: #333333;
  text-transform: uppercase;
  padding: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
}
.products .products-carousel .carousel-card:first-child::after {
  animation: pulse 3s infinite ease-in-out;
  content: url(../assets/icons/caret-circle-double-right.svg);
  position: absolute;
  right: 4rem;
  scale: 1.7;
  transition: transform 0.3s ease;
}
.products .products-carousel .carousel-card:first-child:hover::after {
  transform: translateX(10px);
}
.products .products-carousel .carousel-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 0.75rem;
  margin: 0.75rem;
}
.products .products-carousel .carousel-action {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
}
.products .products-carousel .carousel-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  color: #333333;
}
.products .products-carousel .carousel-price {
  font-size: 0.9rem;
  color: #333333;
  font-weight: 500;
  margin-left: 0.5rem;
}
.products .products-carousel .carousel-btn {
  background: #c88c8c;
  color: white;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: none;
  width: 100%;
  text-transform: uppercase;
}
.products .products-carousel .carousel-btn:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .products .products-carousel {
    gap: 15px;
  }
  .products .products-carousel::-webkit-scrollbar {
    display: block;
    height: 15px;
  }
  .products .products-carousel::-webkit-scrollbar-track {
    margin-inline: 1rem;
    background: rgba(200, 140, 140, 0.1);
    border-radius: 4px;
  }
  .products .products-carousel::-webkit-scrollbar-thumb {
    background: #c88c8c;
    border-radius: 4px;
  }
}

.team {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .team-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team-container .team-member {
  width: 150px;
  cursor: pointer;
}
.team-container .team-member:hover {
  transform: scale(1.03);
}
.team-container .team-member:hover .team-picture {
  box-shadow: 0 4px 20px rgba(200, 140, 140, 0.3);
}
.team-container .team-member:active {
  scale: 0.9;
}
@media screen and (min-width: 768px) {
  .team-container .team-member {
    width: 200px;
  }
}
.team-container .team-member .team-picture {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 100vh;
}

.why-us-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .why-us-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reason {
  text-align: left;
  color: #333333;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reason .reason-icon {
  width: 50px;
}
.reason h3 {
  font-size: 1.4rem;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.reason p {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .reason {
    max-width: 320px;
  }
}

.location-hours {
  width: 100%;
}
.location-hours .location-hours-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  justify-items: center;
}
@media screen and (min-width: 768px) {
  .location-hours .location-hours-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.location-hours .location-hours-container .location-card,
.location-hours .location-hours-container .hours-card {
  width: 100%;
  box-sizing: border-box;
  color: #333333;
  box-shadow: none;
  border: none;
}
.location-hours .location-hours-container .location-card .card-content,
.location-hours .location-hours-container .hours-card .card-content {
  text-align: left;
  padding: 1.5rem;
}
.location-hours .location-hours-container .location-card .card-content div,
.location-hours .location-hours-container .hours-card .card-content div {
  display: flex;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.location-hours .location-hours-container .location-card .card-content h3,
.location-hours .location-hours-container .hours-card .card-content h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.location-hours .location-hours-container .location-card .card-content img,
.location-hours .location-hours-container .hours-card .card-content img {
  width: 25px;
  margin-right: 1rem;
}
.location-hours .location-hours-container .location-card .card-content p,
.location-hours .location-hours-container .location-card .card-content a,
.location-hours .location-hours-container .hours-card .card-content p,
.location-hours .location-hours-container .hours-card .card-content a {
  font-size: 1rem;
  color: #333333;
}
.location-hours .location-hours-container .location-card .card-content .ghost-btn,
.location-hours .location-hours-container .hours-card .card-content .ghost-btn {
  margin-top: 1rem;
  width: 100%;
  max-width: 300px;
  border: solid 2px #c88c8c;
  color: #c88c8c;
}
.location-hours .location-hours-container .location-card .card-content .ghost-btn:hover,
.location-hours .location-hours-container .hours-card .card-content .ghost-btn:hover {
  background: #c88c8c;
  color: #c8c5ba;
}
.location-hours .location-hours-container .hours-card .hours-list {
  list-style: none;
}
.location-hours .location-hours-container .hours-card .hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(200, 140, 140, 0.1);
  font-weight: 600;
}

.footer {
  background: #c88c8c;
  color: whitesmoke;
  padding: 20px;
  text-align: center;
  padding-block: 20vh;
  width: 100%;
  box-sizing: border-box;
}
.footer .social-media {
  margin-top: 10px;
}
.footer .social-media a {
  margin: 0 10px;
}
.footer .social-media a .social-link {
  width: 35px;
}

/*# sourceMappingURL=style.css.map */
