

/* ===============================
styles.css
Theme: Offwhite & #7a8f78
=============================== */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  }
  
  
  body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
 background: url('../images/4.png') center center no-repeat !important;
  position: relative;
  color: #ffffff;
  text-align: center;
  }
  
  
  /* Soft overlay for premium look */
  .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.541); /* offwhite overlay */
  z-index: 1;
  }



.container {
position: relative;
z-index: 2;
max-width: 600px;
padding: 40px 20px;
}


.logo {
width: 250px;
margin-bottom: 25px;
}


/* Animated Coming Soon Text */
.coming-soon {
font-size: 64px;
letter-spacing: 5px;
color: #f3faf2;
margin-bottom: 15px;
animation: glowText 2.5s ease-in-out infinite alternate;
}


@keyframes glowText {
from {
opacity: 0.6;
transform: translateY(0);
text-shadow: 0 0 5px rgba(122, 143, 120, 0.2);
}
to {
opacity: 1;
transform: translateY(-3px);
text-shadow: 0 0 18px rgba(122, 143, 120, 0.5);
}
}


.tagline {
font-size: 18px;
color: #ffffff;
line-height: 1.7;
}


.highlight {
color: #aac3a8;
font-weight: 600;
}


.footer {
margin-top: 40px;
font-size: 28px;
color: #f7f7f7;
}


/* Responsive */
@media (max-width: 600px) {
.coming-soon {
font-size: 34px;
}


.tagline {
font-size: 16px;
}
}