/* Use Roboto font for all text */
body {
  margin: 0; 
  font-family: 'Roboto', sans-serif;
  background: #ffffff;           /* Page background color (white) */
  color: #333333;               /* Text color (dark gray for good contrast) */
  height: 100vh;                /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Centered content (logo and message) */
.center {
  text-align: center;
  /* Position in the middle of the screen */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Logo image styling */
.logo {
  max-width: 80%;    /* Make sure logo is responsive on small screens */
  height: auto;
  display: block;
  margin: 0 auto 1rem auto; /* center the image and add bottom margin */
}

/* "Coming Soon" message styling */
#coming-soon {
  font-size: 2em;
  font-weight: 700;
  margin: 0;
  opacity: 0;                 /* start invisible for fade-in effect */
  animation: fadeIn 2s ease-in forwards;
  /* You can adjust the duration (2s) or add delay if needed */
}

/* Fade-in animation keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Bottom-left corner text (e.g., location) */
.bottom-left {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 0.9em;
}

/* Bottom-right corner social icons */
.bottom-right {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/* Style the social media icons */
.bottom-right a {
  color: #333333;             /* Icon color (matches text color; change if needed) */
  text-decoration: none;
  margin-left: 15px;          /* space out icons */
  font-size: 1.2em;
}

/* Change icon color on hover */
.bottom-right a:hover {
  color: #000000;
}

/* Responsive adjustments (if needed) */
@media (max-width: 600px) {
  #coming-soon {
    font-size: 1.5em;
  }
  .bottom-left, .bottom-right {
    font-size: 0.85em;
  }
}
