/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

html,
body {
  height: 100%;
  overflow: hidden;
  background-color: #eae8d7 !important;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  html,
  body {
    overflow-y: scroll;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ba9668;
  color: #ffffff;
  padding: 10px!important;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

nav .logo img {
  width: 100px!important;
  color: #ffffff;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

nav ul li {
  position: relative;
}

nav ul li:not(:last-child)::after {
  content: "/";
  color: #78583e;
  margin-left: 2.5rem;
  margin-right: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #3e220f;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #000;
  color: ffffff;
  text-align: center;
  margin-top: -3rem;
  z-index: 1;
}

.hero .image-viewer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero .image-viewer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
  pointer-events: none;
}

.hero .image-viewer img.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.hero .image-viewer img.fade-in {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.menu {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.menu-toggle {
  border: 5px solid black;
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  margin-right: 0.6em;
}

/* Hide menu and show toggle under 1000px */
@media (max-width: 1350px) {
  nav ul li:not(:last-child)::after {
    content: "";
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 1rem;
    background: #ba9668;
    border: 1px solid #78583e;
    padding: 1rem;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 1000px) {
  footer.full {
    display: none;
  }
}

footer {
  width: 100vw;
  display: flex;
  z-index: 2;
}

footer.full {
  margin: auto;
  position: fixed;
  bottom: 1em;
  left: 1em;
  right: 1em;
  text-align: center;
  background-color: black;
  color: white;
  width: 700px;
}

footer.full .clear {
  padding-left: 2rem;
  margin: auto;
  display: flex;
  padding: 1em 0;
  gap: 2rem;
}

footer.full .clear a:not(:last-child)::after {
  content: "|";
  margin-left: 2rem;
  color: #fff;
}

footer a {
  margin: auto;
  flex: 1;
  text-align: center;
  color: #fff;
  padding: 0.5em 1em;
  text-decoration: none;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-img-top {
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  width: 200px !important;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.contact-img {
  width: 63% !important;
  margin-top: 20px !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  border: #000000 1px solid !important;
  border-radius: 10px !important;
}

@media (max-width: 1400px) {
  .contact-img {
    width: 242px !important;
    margin-bottom: 20px !important;
  }
}

@media (max-width: 992px) {
  .card-img-top{
    padding-top: 10px !important;
  }

   .contact-img {
    width: 210px !important;
    margin-bottom: 0px !important;
    margin-top: 2px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;    

  }
}

.center-box {
  margin-top: 4em;
  width: 60vw;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.center-box > div {
  max-width: 100%;
  width: 100%;
}

.badge-custom {
  font-size: 1rem !important;
  padding: 0.6em 1em;
  margin: 0.3em;
}

.center-box {
  width: 100%;
  max-width: 800px;
  padding: 1rem;
}

.badge-custom {
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
  display: inline-block;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background-color: #e4be8c;
}
