    html, body {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a 85%);
  background-image: url('assets/images/FLOURSHED_LOGO.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  color: #f5f5f5;
  font-family: 'Georgia', serif;
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Dark overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.65);
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 95%;
  padding: 3.5rem 2rem;
  background-color: rgba(82, 72, 72, 0.95);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
  text-align: center;
  animation: fadeInUp 1s;
}

    .icon {
      font-size: 4rem;
      margin-bottom: 1.2rem;
    }

    h1 {
      color: #d4a574;
      margin-bottom: 0.9rem;
      font-family: 'Times New Roman', serif;
    }

    .tagline {
      font-size: 1rem;
      font-style: italic;
      color: #cc6633;
      margin-bottom: 0.6rem;
    }

    p {
      color: #cccccc;
      margin-bottom: 0.8rem;
      font-size: 1.14rem;
    }

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

      .socials {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}



.socials a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  border-radius: 12px;
  border: 1px solid #d4a574;

  color: #d4a574;
  background: rgba(255, 255, 255, 0.02);

  box-shadow: 0 4px 10px rgba(0,0,0,0.25);

  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease, color 0.2s ease;
}


.socials a:hover {
  background-color: #d4a574;
  color: #1a1a1a;

  transform: translateY(-3px);

  box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

.socials a:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.socials a::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(
    rgba(255,255,255,0.08),
    rgba(255,255,255,0)
  );
  pointer-events: none;
}

   /* Mobile adjustments */
@media (max-width: 480px) {
  body {
    background-position: top center; /* Shift focus to top to avoid cutting important logo parts */
    background-attachment: scroll;  /* Disable fixed for mobile smoothness */
  }
  
  .container {
    padding: 2.2rem 1rem;
  }
  
  .icon {
    font-size: 2.8rem;
  }
  .socials {
    flex-direction: row;
    gap: 0.7rem;
  }

}
