@font-face {
  font-family: "Louis George Cafe";
  src: url("./assets/fonts/LouisGeorgeCafe/LouisGeorgeCafe-200.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans SemiCondensed";
  src: url("./assets/fonts/NotoSansSemiCondensed/NotoSansSC-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --title-color: #ffe56f;
  --subtitle-part1: #f4bfdc;
  --subtitle-part2: #ffe56f;
  --secondary-medium: #00cccc;
  --secondary-medium-hover: #00e6e6;
  --secondary-light: #e6fcfc;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  font-family: "Noto Sans SemiCondensed", sans-serif;
  overflow: hidden;
}

.home-page-bis {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url("./assets/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.highlight-overlay {
  position: absolute;
  inset: 0;
  background-image: url("./assets/highlight.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
  pointer-events: none;
}

.title-container {
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 16px;
}

.title {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.05;
  font-family: "Louis George Cafe", sans-serif;
  font-weight: 200;
  color: var(--title-color);
  text-shadow: 0 0 10px rgba(255, 100, 200, 1), 0 0 26px rgba(255, 100, 200, 0.55);
  animation: title-glow 3s ease-in-out infinite;
}

.subtitle {
  margin: 10px 0 0;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
}

.subtitle .part1 {
  color: var(--subtitle-part1);
  margin-right: 0.35em;
}

.subtitle .part2 {
  color: var(--subtitle-part2);
}

.booklet-button {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: var(--secondary-medium);
  border: 4px solid var(--secondary-light);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  z-index: 2;
}

.booklet-button:hover {
  background: var(--secondary-medium-hover);
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.42);
}

.booklet-button img {
  width: 64px;
  height: 64px;
  display: block;
  filter: brightness(0) saturate(100%) invert(100%);
}

@keyframes title-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(248, 156, 210, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(248, 156, 210, 0.8));
  }
}
