/* style.css */
@font-face {
  font-family: 'UnifrakturCook';
  src: url('./assets/fonts/UnifrakturCook-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'IM Fell English SC';
  src: url('./assets/fonts/IMFellEnglishSC-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

:root {
  --font-text: 'UnifrakturCook', cursive;
  --font-title: 'IM Fell English SC', serif;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-title);
  background: url('./assets/img/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #f5e6c5;
  text-shadow: 2px 2px 4px #000;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  text-align: center;
}

.title {
  font-family: var(--font-title);
  font-size: 5rem;
  color: #ffcc00;
  margin-bottom: 1rem;
  position: relative;
}

.title::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  width: 110%;
  height: 10px;
  background: linear-gradient(90deg, transparent, darkred, crimson, transparent);
  transform: translate(-50%, -50%) rotate(-10deg);
  filter: blur(1px);
  animation: slashAnim 1s ease-out forwards;
}

@keyframes slashAnim {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 110%;
    opacity: 1;
  }
}

.slogan {
  font-family: var(--font-text);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-style: italic;
  color: #ff0000;
}

.links a {
  display: inline-block;
  margin: 1rem;
  padding: 0.8rem 1.2rem;
  color: #fff;
  background: #550000;
  border: 2px solid #8b0000;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow:
    0 0 8px #8b0000,
    0 0 16px #ff0000,
    inset 0 0 6px #550000;
  transition: background 0.3s, transform 0.2s;
}

.links a:hover {
  background: #8b0000;
  transform: scale(1.1);
  animation: bloodPulse 1s infinite ease-in-out;
}

.profile-pic-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid #8b0000;
  box-shadow:
    0 0 10px #8b0000,
    0 0 20px #ff0000,
    inset 0 0 10px #550000;
  object-fit: cover;
  animation: bloodPulse 3s infinite ease-in-out;
}

@keyframes bloodPulse {
  0%, 100% {
    box-shadow:
      0 0 10px #8b0000,
      0 0 20px #ff0000,
      inset 0 0 10px #550000;
  }
  50% {
    box-shadow:
      0 0 20px #ff0000,
      0 0 30px #ff3333,
      inset 0 0 12px #770000;
  }
}

.partner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 1rem;
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
  p {
    margin: 0 20px;
  }
}

.partner:hover {
  opacity: 1;
}

.partner-logo {
  max-height: 50px;
  filter: drop-shadow(0 0 6px #000);
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  color: #f5e6c5;
  text-align: center;
  padding: 1rem 0;
  font-size: 1rem;
  text-shadow: 1px 1px 2px #000;
}

#copyright {
  font-family: var(--font-text);
  font-size: 1rem;
}

#year{
  font-size: 1.8rem;
}