@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html, body { height: 100%; width: 100%; }

body {
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;

  /* Animated gradient BACKGROUND */
  background: linear-gradient(-45deg, #205072, #329D9C, #56C596, #7BE495);
  background-size: 400% 400%;
  -webkit-animation: Gradient 15s ease infinite;
  -moz-animation: Gradient 15s ease infinite;
  animation: Gradient 15s ease infinite;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../images/ss_hexagon_pattern.png") center center no-repeat;
  background-size: cover;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

/* Ensure page content sits above the overlay */
.vh {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

img { max-width: 100%; height: auto; }

.wrap { text-align: center; }
.sitelogo { margin: 0 0 15px; }

/* Container for logo with reflection */
.sitelogo {
  position: relative;
  display: inline-block;
  perspective: 1000px; /* enables 3D depth */
}

/* Logo fade-in */
.sitelogo img {
  display: block;
  margin: 0 auto;
  opacity: 0; /* start invisible */
  transform: scale(0.9);
  transition: opacity 1s ease, transform 1s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.sitelogo img.show {
  opacity: 1;
  transform: scale(1);
}

/* Glossy reflection overlay */
.sitelogo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* don't block mouse */
  background: radial-gradient(circle at center, rgba(255,255,255,0.5), transparent 70%);
  opacity: 0.3;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s ease, background-position 0.15s ease;
}


/* Text fade + slide animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}



.wrap h1 {
  font-size: 34px;
  font-weight: 600;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #004020;
}

.wrap h3 {
  font-size: 13px;
  font-weight: 400;
  margin: 12px 0 25px;
  line-height: 1.3;
  color: #ffffff;
}

.wrap h2 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: #004020;
}

@-webkit-keyframes Gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@-moz-keyframes Gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes Gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


@media screen and (max-width: 767px) {
    .wrap { margin: 35px; }
}

@media screen and (max-width: 500px) {
    .wrap h1 { font-size: 28px; }
    .wrap h2 { font-size: 14px; }
    .wrap h3 { font-size: 12px; }
}