body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: url('../images/flavayaadbg.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  color: #2d5a2d;
  text-align: center;
  position: relative;
  padding: 40px;
  box-sizing: border-box;
  gap: 60px;
}

/* Dark overlay for better contrast */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}

body>* {
  position: relative;
  z-index: 1;
}

/* Left Column */
.left-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 30px;
}

.logo {
  width: 600px;
  max-width: 100%;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  animation: fadeInDown 0.8s ease;
}

.coming-soon {
  font-size: 2.5rem;
  letter-spacing: 5px;
  font-weight: 700;
  color: #fff;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.7), 2px 2px 6px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease;
  background: rgba(45, 90, 45, 0.4);
  padding: 12px 35px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.social-icons {
  display: flex;
  gap: 25px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  opacity: 0.85;
  transition: all 0.3s ease;
  cursor: pointer;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.social-icons img:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.1);
}

/* Right Column */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  flex: 1;
}

.btn {
  padding: 16px 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 248, 240, 0.98) 100%);
  backdrop-filter: blur(10px);
  color: #1e3c1e;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 14px;
  letter-spacing: 0.8px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  min-width: 280px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: linear-gradient(135deg, #2d5a2d 0%, #1e3c1e 100%);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(45, 90, 45, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
  border-color: #2d5a2d;
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(45, 90, 45, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive - Stack on smaller screens */
@media (max-width: 900px) {
  body {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }

  .logo {
    width: 400px;
  }

  .coming-soon {
    font-size: 2rem;
  }
}