body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #3B2B24;
}

.background-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url("243 (1).png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 20px 20px 15vh 20px;
}

.logo {
  width: 100%;
  max-width: 140px;
  height: auto;
  margin-bottom: 12px;
  object-fit: contain;
  flex-shrink: 0;
}

.coming-soon-text {
  font-family: "Philosopher", sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-align: center;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
  font-size: clamp(38px, 6.5vw, 56px);
}

.social-links {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 48px;
  align-items: center;
  z-index: 10;
}
.social-links a {
  text-decoration: none;
  display: flex;
}

.social-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}
.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}