/* styles/globals.css */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Display:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
/* src/styles/globals.css */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

body {
  @apply font-sans;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  overflow-x: hidden;
  /* background: #0d0c0c; */
  transition: 0.2s ease-in-out;
  text-align: center;
  z-index: 20;
}

.sidenav ul {
  padding-top: 20px;
}

.sidenav ul li {
  margin: 10px 0;
}

.sidenav a {
  font-size: 18px;
  text-decoration: none;
  color: white;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #be9343;
}

.open {
  width: 30%;
}

@media screen and (max-width: 576px) {
  .open {
    width: 60%;
  }
}

/* swiper */

.swiper {
  margin: 20px auto;
  padding: 20px;
  /* Adjust this based on your design preference */
}

/* Adjusting slider for small screens */
@media (max-width: 576px) {
  .swiper {
    height: auto;
    /* Smaller height for mobile */
  }
}

/* Styles for custom navigation buttons */
.custom-prev-button,
.custom-next-button {
  background: none;
  border: none;
  cursor: pointer;
}

/* About Us gallery  */
.AboutGrid {
  --n: 1;
  --m: 5;
  --g: 10px;
  --f: .1;
  display: grid;
  gap: var(--g);
  width: 100%;
  height: auto;
  grid-template-columns: repeat(var(--m), 1fr);
}

.AboutGrid>.AboutGallery {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  filter: grayscale(80%);
  transition: .35s linear;
}

.AboutGrid .AboutGallery:hover {
  filter: grayscale(0);
}

/* Responsive styles */
@media (max-width: 1200px) {
  .AboutGrid {
    --m: 4;
    /* Adjust the number of columns */
  }
}

@media (max-width: 992px) {
  .AboutGrid {
    --m: 3;
  }
}

@media (max-width: 768px) {
  .AboutGrid {
    --m: 2;
  }
}

@media (max-width: 576px) {
  .AboutGrid {
    --m: 1;
  }

  .AboutGrid>.AboutGallery {
    width: 100%;
    height: auto;
    /* Allow images to adjust height based on width */
  }
}

.whatsapp-chat {
  position: fixed;
  bottom: 45px;
  right: 20px;
  background-color: whitesmoke;
  border: none;
  border-radius: 50px;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  z-index: 2000;
  transition: background-color 0.3s ease;
}

.whatsapp-chat:hover {
  background-color: #1ebc5a;
}

.whatsapp-chat img {
  width: 40px;
  height: 40px;
  display: block;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .whatsapp-chat {
    bottom: 15px;
    right: 15px;
    padding: 10px;
  }

  .whatsapp-chat img {
    width: 32px;
    height: 32px;
  }
}
