/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #f0f0f0;
  font-size: 1em;
  line-height: 1.4;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: #0a0a0a;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden;
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  pointer-events: none; /* Allow interaction with particles if needed, or just let text be text */
}

.company-name {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #b3b3b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideUp 1.5s ease-out forwards;
}

.tagline {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.2rem;
  color: #888;
  text-transform: uppercase;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeIn 2s ease-out forwards 1.2s;
}

.contact-info {
  font-size: 0.8rem;
  color: #555;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeIn 2s ease-out forwards 2s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
}
