/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #2e2e2e;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  position: relative;
}

.coming-soon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.teaser-image {
  width: 75%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
}

.slogan {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff4d4d;
  margin: 0 auto;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  animation: pulse 2s infinite;
  max-width: 75%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Floating Contact Ribbon */
.contact-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff4d4d;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.contact-banner:hover {
  transform: scale(1.1);
  background-color: #e04343;
}

/* Floating Social Media Buttons */
.social-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-buttons a {
  background-color: #3b5998; /* Facebook Blue */
  color: #fff;
  padding: 10px 15px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.3s ease;
  text-align: center;
}

.social-buttons a.instagram {
  background-color: #e1306c; /* Instagram Pink */
}

.social-buttons a:hover {
  transform: scale(1.1);
  background-color: #2d4373; /* Slightly darker for hover (Facebook Blue) */
}

.social-buttons a.instagram:hover {
  background-color: #c2275c; /* Slightly darker Instagram Pink */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .slogan {
    font-size: 1.25rem;
    max-width: 75%;
  }
}
