body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  overflow: hidden;
  background-image: url('abg.png'); /* Replace with your image URL */
  background-size: cover; /* Ensures the image covers the entire body */
  background-position: center; /* Centers the background image */
  background-attachment: fixed; /* Keeps the background fixed while scrolling */
}

/* Topbar */
.topbar {
  position: absolute;
  top: 20px;
  width: 98%;
  padding: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  height: 70px; /* Keeps the height of the logo fixed */
  width: auto; /* Keeps the width proportional */
  padding-left: 35px; /* Padding stays the same */
  max-width: 100%; /* Ensures it doesn't exceed container width */
  object-fit: contain; /* Maintains aspect ratio */
}

.brand-name {
  font-family: 'Zilla Slab', serif;
  color: white;
  font-size: 22px;
  letter-spacing: 1.5px;
  max-width: 40%;
}

/* COMING SOON Message */
.msg {
  font-size: 20px;
  color: white;
  letter-spacing: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-align: center;
}

.quote {
  font-size: 12px;
  color: #ff96ae;
  letter-spacing: 2px;
  position: absolute;
  font-weight: 900;
  bottom: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    height: 50px; /* Adjust logo size for mobile */
    padding-left: 0; /* Remove left padding for mobile */
  }

  .brand-name {
    font-size: 18px; /* Adjust font size for mobile */
    letter-spacing: 1px; /* Adjust letter spacing for mobile */
  }

  .msg {
    font-size: 15px; /* Adjust text size for mobile */
    letter-spacing: 5px; /* Adjust letter spacing for mobile */
  }

  .quote {
    font-size: 10px; /* Adjust quote text size for mobile */
    letter-spacing: 1px; /* Adjust letter spacing for mobile */
  }
}

@media (max-width: 480px) {
  .logo {
    height: 40px; /* Adjust logo size for very small screens */
  }

  .brand-name {
    font-size: 16px; /* Adjust font size for very small screens */
  }

  .msg {
    font-size: 15px; /* Adjust message text size for very small screens */
    letter-spacing: 2px; /* Adjust letter spacing for very small screens */
  }

  .quote {
    font-size: 8px; /* Adjust quote text size for very small screens */
  }
}

.social-footer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
}

.social-footer h3 {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-icons a {
  color: white;
  font-size: 22px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ff96ae;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .social-footer h3 {
    font-size: 14px;
  }

  .social-icons {
    gap: 18px;
  }

  .social-icons a {
    font-size: 18px;
  }
}
