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

html,
body {
  height: 100%;
}

body {
  display: grid;
  place-items: center;
  font-family: "Alfa Slab One", system-ui, sans-serif;
  position: relative;
  background: linear-gradient(135deg, #2b0208, #4f0820);
  color: #fef2f2;
}

body::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("img/bg/pexels-stephen-leonardi-587681991-35962860_cropped_compressed.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
  z-index: -1;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  min-height: 70vh;
  gap: 1.75rem;
}

.logo {
  display: block;
  width: 240px;
  height: auto;
  filter: drop-shadow(0px 7px 2px rgb(0 0 0 / 0.5));
}

h1 {
  font-family: "Ceviche One", system-ui;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0.05em;
  color: white;
}

h2 {
  letter-spacing: 0.05em;
  text-shadow: 0px 7px 2px rgb(0 0 0 / 0.5);
}

.wave {
  position: relative;
}

.wave::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: rgba(0, 0, 0, 0.5);
  filter: blur(2px);
  transform: translateY(12px);
  white-space: pre;
  z-index: 0;
  pointer-events: none;
}

.wave .char {
  display: inline-block;
  position: relative;
  z-index: 1;
  will-change: transform;
  transition: transform 120ms ease-out;
}



.description {
  margin-top: 1rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.25rem 1.5rem;
  background: rgba(161, 63, 73, 0.2);
  color: #fde7ec;
  transform: skewX(-15deg);
  overflow: hidden;
  position: relative;
  box-shadow: 0px 7px 2px rgb(0 0 0 / 0.5);
}

.socials {
  margin-top: 1rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  background: rgb(100, 32, 46);
  transform: skewX(-15deg);
  overflow: hidden;
  position: relative;
  box-shadow: 0px 7px 2px rgb(0 0 0 / 0.5);
}

.socials-header {
  width: 100%;
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  color: #fdf2f8;
  transform: skewX(15deg);
}

.social-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
  flex: 0 0 auto;
  transform: skewX(15deg);
}

.social-icon svg,
.social-icon img {
  width: 32px;
  height: 32px;
  display: block;
}

.mouseSpotlight-overlay,
.stageSpotlight-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 280px;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(30px);
  transform: translate3d(-140px, -140px, 0);
  mix-blend-mode: screen;
  transition: background 180ms ease;
  z-index: 20;
}

.stageSpotlight-overlay {
  background: rgba(255, 255, 255, 0.14);
  filter: blur(30px);
  z-index: 18;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: skewX(15deg);
}

.description p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.95;
  transform: skewX(15deg);
}
@media (max-width: 768px) {
	.container {
		padding: 1.5rem;
		min-height: auto;
		gap: 1.25rem;
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.logo {
		width: 160px;
	}

	h1 {
		font-size: clamp(1.5rem, 5vw, 2.5rem);
	}

	h2 {
		font-size: 0.65rem;
	}

	.description,
	.socials {
		max-width: 90%;
		padding: 1rem 1.25rem;
	}

	.socials-header {
		font-size: 0.9rem;
	}

	.social-icon {
		width: 56px;
		height: 56px;
	}

	.social-icon svg,
	.social-icon img {
		width: 28px;
		height: 28px;
	}

	.mouseSpotlight-overlay,
	.stageSpotlight-overlay {
		width: 200px;
		height: 200px;
		transform: translate3d(-100px, -100px, 0);
		filter: blur(20px);
	}
}

@media (max-width: 480px) {
	.container {
		padding: 1rem;
		gap: 0.75rem;
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.logo {
		width: 120px;
	}

	h1 {
		font-size: clamp(1.25rem, 4vw, 2rem);
	}

	h2 {
		font-size: 0.5rem;
	}

	.description,
	.socials {
		max-width: 95%;
		padding: 0.875rem 1rem;
	}

	.socials-header {
		font-size: 0.8rem;
	}

	.social-icon {
		width: 48px;
		height: 48px;
	}

	.social-icon svg,
	.social-icon img {
		width: 24px;
		height: 24px;
	}

	.mouseSpotlight-overlay,
	.stageSpotlight-overlay {
		width: 150px;
		height: 150px;
		transform: translate3d(-75px, -75px, 0);
		filter: blur(16px);
	}
}