* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.preload * {
  animation-duration: 0s !important;
  transition: background-color 0s, opacity 0s, color 0s, width 0s, height 0s,
    padding 0s, margin 0s !important;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url("./assets/images/background01.jpg") no-repeat center center
    fixed;
  background-size: cover;
}

.bg-slideshow {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: url("./assets/images/background01.jpg") no-repeat center center
    fixed;
  background-size: cover;
}

.bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: bgSlideshow 60s linear infinite;
  opacity: 0;
  will-change: opacity, transform;
}

.bg-image:nth-child(1) {
  background-image: url("./assets/images/background01.jpg");
  animation-delay: 0s;
  opacity: 1;
}

.bg-image:nth-child(2) {
  background-image: url("./assets/images/background02.jpg");
  animation-delay: 5s;
}

.bg-image:nth-child(3) {
  background-image: url("./assets/images/background03.jpg");
  animation-delay: 10s;
}

.bg-image:nth-child(4) {
  background-image: url("./assets/images/background04.jpg");
  animation-delay: 15s;
}

.bg-image:nth-child(5) {
  background-image: url("./assets/images/background05.jpg");
  animation-delay: 20s;
}

.bg-image:nth-child(6) {
  background-image: url("./assets/images/background06.jpg");
  animation-delay: 25s;
}

.bg-image:nth-child(7) {
  background-image: url("./assets/images/background07.jpg");
  animation-delay: 30s;
}

.bg-image:nth-child(8) {
  background-image: url("./assets/images/background08.jpg");
  animation-delay: 35s;
}

.bg-image:nth-child(9) {
  background-image: url("./assets/images/background09.jpg");
  animation-delay: 40s;
}

.bg-image:nth-child(10) {
  background-image: url("./assets/images/background10.jpg");
  animation-delay: 45s;
}

@keyframes bgSlideshow {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  2% {
    opacity: 1;
  }
  9% {
    opacity: 1;
  }
  11% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}

.logo {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
}

.logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
}

.logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.8);
  border-radius: 50%;
  z-index: -1;
}

h1 {
  font-size: 48px;
  font-family: "Overlock", sans-serif;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

p {
  font-size: 24px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.menu-link {
  display: inline-block;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  background-color: #ff5722;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.menu-link:hover {
  background-color: #e64a19;
  transform: scale(1.05);
}

.navbar {
  padding: 1rem;
  text-align: center;
  margin-bottom: 2rem;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  will-change: transform;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  backface-visibility: hidden;
}

.nav-link:hover {
  color: #ff5722;
}

.nav-link.active {
  font-weight: bold;
  border-bottom: 2px solid #ff5722;
  color: #ff5722;
}

.contact-info {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.contact-info p {
  margin: 1rem 0;
  line-height: 1.5;
}
