@import url('https://fonts.googleapis.com/css2?family=Itim&family=Rowdies:wght@300;400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mainbody {
  background-color: #f9f3e0;
}


.logo_section {
  height: 100%;
  background-color: #f9f3e0;
}

.title_section {
  display: inline-block;
  position: relative;
  height: 100%;
  background-color: #f9f3e0;
}

.navbar-custom {
  background-color: white;
}


.navbar-nav .nav-link {
  line-height: 100px;
  /* Vertically center the links */
}

.section_divider {
  text-align: center;
  /* padding: 100px; */
  margin: 4rem 0 4rem 0;
  background-color: #f9f3e0;
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

.section_title {
  font-family: "Rowdies", serif;
  font-size: 4rem;
}

.video_section {
  background-color: #f9f3e0;
}

.vibespace_video iframe,
.vibespace_video video {
  border-radius: 1rem;
}

.button-custom {
  background-color: #cfaf8d;
  border: 1px solid #cfaf8d;
}

.button-custom:hover {
  background-color: #7b4b34;
  border: 1px solid #cfaf8d;
}

#logo {
  display: block;
  width: 70%;
  margin: auto;
}

#vibespace_title {
  font-family: "Rowdies", serif;
  font-size: 6rem;
  font-weight: lighter;
}

#vibespace_slogan {
  font-size: 1.7rem;
  text-align: center;
  color: #f9f3e0;
  background-color: #cfaf8d;
  padding: 20px;
  border-radius: 10px;
}

#vibespace_description {
  font-family: "Itim", serif;
  font-size: 1.5rem;
  text-align: left;
  font-weight: lighter;
}

#animated_icon {
  width: 200px;
}

#coffee_icon {
  width: 60%;
}


/* Keyframe for vibration effect */
@keyframes vibrate {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-0.5vw, 0.5vw);
  }

  50% {
    transform: translate(0.5vw, -0.5vw);
  }

  75% {
    transform: translate(-0.5vw, -0.5vw);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* Apply the animation to the images */
.vibrate {
  display: inline-block;
  animation: vibrate 5s infinite;
  cursor: pointer;
}


.vibrate:hover {
  animation: vibrate 3s infinite;
}

@media (max-width: 1200px) {
  .section_title {
    font-size: 3rem;
  }

  #vibespace_title {
    font-size: 5rem;
  }
}

@media (max-width: 1024px) {
  .section_title {
    font-size: 2rem;
  }

  #vibespace_title {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .section_title {
    font-size: 2rem;
  }


  #vibespace_title {
    font-size: 4rem;
    text-align: center;
  }

  .main_sections {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section_title {
    font-size: 1.5rem;
  }

  #vibespace_title {
    font-size: 3rem;
  }

  .main_sections {
    padding: 1.5rem;
  }

  #coffee_icon {
    width: 50%;
  }

}

/* Features Carousel Styles */
.features-swiper {
  width: 100%;
  padding: 1rem 0;
}

.features-swiper .swiper-slide {
  height: auto;
  min-height: 60vh;
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.6s ease;
}

.features-swiper .swiper-slide-active {
  opacity: 1;
}

/* Optional: hide scrollbar on horizontal scroll (mobile) */
.features-swiper .swiper-wrapper {
  align-items: center;
}

.features-swiper img.vibrate {
  max-width: 55%;
  height: auto;
  margin: 1rem auto;
  display: block;
}

/* Basic bullet - always circle */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  transition: all 0.4s ease;
}

/* Active bullet - wider but still rounded */
.swiper-pagination-bullet-active {
  width: 30px !important;
  height: 10px;
  border-radius: 10px !important;
  opacity: 1;
  background: #c89f7a !important;
  transform: none;
}

/* Cozy worlds video styling */
.cozy-video {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-swiper .swiper-slide {
    min-height: 80vh;
    padding: 1rem 0;
  }

  .features-swiper img.vibrate {
    max-width: 60%;
    /* Even smaller on mobile */
  }

  .features-swiper .swiper-slide .text-center img {
    max-width: 65%;
  }

  .section_title {
    font-size: 2.2rem !important;
  }

  #coffee_icon {
    width: 50% !important;
  }

  .cozy-video {
    max-width: 85% !important;
  }
}