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

/* Fullscreen background and fade-in */
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  background: #ffffff url("../pwwc-photo-building.jpg") center center / cover no-repeat;
  animation: fadeIn 1.5s ease-out forwards;
  opacity: 0;
}
.small { font-size: 11px; }
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Overlay container */
.holding-container {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.logo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


h1 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.75rem;
}
a { color: #000; text-decoration: none;}
/* Social icons row */
.social {
  display: flex;
  gap: 1rem;
}

.social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.social a.facebook {
  background-color: #1877f2;
}

.social a.email {
  background-color: #444444;
}

.social a.dev {
  background-color: #000000;
}

.social a.dev img {
	filter: invert(1);
	max-width: 24px;
  }

.social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

/* Small tweaks for very small screens */
@media (max-width: 480px) {
  .holding-container {
	padding: 2rem 1.5rem;
  }
  h1 {
	font-size: 1.4rem;
  }
  p {
	font-size: 0.9rem;
  }
}