@import url('https://fonts.googleapis.com/css2?family=Sixtyfour&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

/* ===== Base Reset & Body ===== */
body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top right, #EAF6FB 0%, #D4E7F5 50%, #BFD9EB 100%);
  display: flex;
  flex-direction: column;
  color: #1B263B;
}

/* ===== Frosted Container ===== */
/* Frosted glass container stays centered */
.container {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 4px 30px rgba(27, 38, 59, 0.1),
    0 0 40px rgba(255, 255, 255, 0.15);
  width: 80%;
  max-width: 800px;
  text-align: center;
  padding: 60px 30px;
  margin: 40px auto;
}

/* ===== FrostLabz Header ===== */
.sixtyfour-h1 {
  font-family: "Sixtyfour", sans-serif;
  font-size: 3.5em;
  color: #2E8BC0;
  text-shadow:
    0 0 10px rgba(46, 139, 192, 0.5),
    0 0 20px rgba(255, 255, 255, 0.4);
  margin-bottom: 0.2em;
  position: relative;
  display: inline-block;
}

/* Light shimmer across the logo */
.sixtyfour-h1::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  opacity: 0;
}

.sixtyfour-h1:hover::after {
  left: 125%;
  opacity: 1;
}

/* ===== Tagline ===== */
h2 {
  color: #145DA0;
  font-weight: 400;
  margin-top: 0;
  text-shadow: 0 0 6px rgba(173, 216, 230, 0.6);
}

/* ===== Paragraphs ===== */
p {
  color: #0C2D48;
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 600px;
  margin: 20px auto;
}

/* ===== Frost Glow Animation (Optional) ===== */
@keyframes frostGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(46, 139, 192, 0.5); }
  50% { text-shadow: 0 0 20px rgba(173, 216, 230, 0.8); }
}

.sixtyfour-h1 {
  animation: frostGlow 4s ease-in-out infinite;
}



/* ===== Footer ===== */
footer {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.1);
}

.footer-text {
  color: #145DA0;
  font-size: 0.95em;
  letter-spacing: 0.5px;
  text-shadow: 0 0 4px rgba(173, 216, 230, 0.4);
}
/* Optional hover glow for future footer links */
footer a {
  color: #2E8BC0;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

footer a:hover {
  color: #00BFFF;
  text-shadow: 0 0 6px rgba(0, 191, 255, 0.6);
}

@media (max-width: 768px) {
    .sixtyfour-h1 {
        font-size: 2em;
    }