/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto Slab', serif;
  line-height: 1.6;
  color: #eee;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #000;
  background-image: none;
  background-size: 20px 20px;
}

.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 0;
  min-height: 100vh;
  position: relative;
}

.content {
  text-align: center;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.coming-soon {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 0;
  background: #000;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.coming-soon-img {
  width: 200px; /* Fixed width */
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.logo-container {
  margin: 0 0 0.5rem 0;
}

.logo {
  max-width: none;
  height: auto;
  display: block;
  margin: 0 auto;
}

.contact-info {
  margin-top: 0;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  font-weight: 500;
}

.email-link:hover {
  color: #ddd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .email-link {
    font-size: 1rem;
  }
}
