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

body {
  font-family: 'Arial', sans-serif;
  background-color: #000; /* Black background */
  color: #fff; /* White text for contrast */
  display: flex;
  flex-direction: column; /* Ensure body uses a column layout */
  min-height: 100vh; /* Make body take up the full viewport height */
  overflow: auto; /* Allow scrolling if content exceeds viewport */
}

.under-construction {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px; /* Add padding to prevent content from touching edges */
  flex-grow: 1; /* Push footer to the bottom when content is short */
}

.logo-container {
  margin-bottom: 20px;
  text-align: center;
}

.logo {
  max-width: 200px; /* Increased size of the logo */
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px; /* Space between logo and tagline */
}

.tagline {
  font-family: 'Dancing Script', cursive; /* Handwritten font */
  font-size: 2rem; /* Larger font size for visibility */
  font-style: italic; /* Italic style */
  color: #b8860b; /* Dark gold color */
  margin-top: 10px; /* Space below the logo */
}

.message h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #f4f4f9; /* Light gray text for contrast */
}

.message p {
  font-size: 1.2rem;
  color: #ccc; /* Lighter gray for secondary text */
  margin-bottom: 30px;
}

/* Product Previews */
.product-previews {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.product-preview {
  background-color: #1a1a1a; /* Dark gray background for cards */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1); /* Subtle white shadow */
  width: 45%;
  margin: 10px;
  text-align: center;
}

.image-container {
  position: relative;
  width: 100%;
  overflow: hidden; /* Ensures the scaled image doesn't overflow the container */
  border-radius: 10px;
}

.product-image {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out; /* Smooth scaling effect */
  cursor: pointer; /* Indicate that the image is clickable */
}

/* Hover Effect */
.image-container:hover .product-image {
  transform: scale(1.2); /* Slightly enlarges the image on hover */
}

.product-preview h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #b8860b; /* Dark Gold Color */
}

.product-preview p {
  font-size: 1rem;
  color: #ccc; /* Lighter gray for descriptions */
}

/* Loading Animation */
.loading-animation {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.dot {
  width: 15px;
  height: 15px;
  background-color: #3498db; /* Bright blue dots for visibility */
  border-radius: 50%;
  margin: 0 5px;
  animation: bounce 1.4s infinite ease-in-out;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
}

/* Footer Styling */
.footer {
  text-align: center;
  padding: 10px 20px;
  background-color: #1a1a1a; /* Dark gray footer */
  color: #ccc; /* Lighter gray text */
  width: 100%;
  font-size: 0.9rem;
}

.footer a {
  color: #3498db; /* Bright blue link color */
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline; /* Underline link on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .message h1 {
    font-size: 2rem;
  }

  .message p {
    font-size: 1rem;
  }

  .product-preview {
    width: 100%;
  }

  .logo {
    max-width: 150px; /* Reduce logo size on smaller screens */
  }

  .tagline {
    font-size: 1.6rem; /* Larger tagline on smaller screens */
  }
}