* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  font-family: Georgia, serif;
  color: #fff;
  overflow: hidden;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* Contact Bar - Fixed at top */
.contact-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #000;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  box-sizing: border-box;
}

.contact-item {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: color 0.3s ease;
  margin: 0 5px;
}

.contact-item:hover {
  color: rgba(255, 255, 255, 0.9);
}

.separator {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 10px;
  font-size: 0.7rem;
}

/* Quote - Centered in viewport */
.quote-container {
  position: fixed;
  top: 80px; /* Start below the contact bar */
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.quote {
  padding: 20px;
  width: 90%;
  max-width: 800px;
  text-align: center;
}

.quote-text {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #fff;
}

.quote-author {
  font-size: 1rem;
  opacity: 0.7;
  color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-bar {
    padding: 15px 10px;
  }

  .contact-item {
    font-size: 0.75rem;
    margin: 0 3px;
  }

  .separator {
    margin: 0 5px;
    font-size: 0.6rem;
  }

  .quote-text {
    font-size: 1.5rem;
  }

  .quote-author {
    font-size: 0.9rem;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .contact-item {
    font-size: 0.7rem;
    display: inline-block;
    margin: 5px;
  }

  .separator {
    display: none;
  }

  .quote-text {
    font-size: 1.25rem;
  }
}