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

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: url("images/hero-bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem 200px 2rem;
  position: relative;
}

.diagonal-banner {
  position: absolute;
  bottom: 160px;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #d64545;
  display: flex;
  align-items: center;
  overflow: hidden;
  transform: skewY(-3deg);
}

.banner-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  animation: slide 30s linear infinite;
  letter-spacing: 0.1em;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.logo-center {
  width: clamp(300px, 60vw, 800px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
}

.social-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 50px;
}

.social-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-button:hover {
  background-color: #005844;
  color: #fff;
  transform: scale(1.1);
}

.social-button svg {
  width: 28px;
  height: 28px;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem 180px 1rem;
  }

  .social-links {
    gap: 1.5rem;
  }

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

  .social-button svg {
    width: 24px;
    height: 24px;
  }

  .diagonal-banner {
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
    height: 40px;
    background-color: #d64545;
    display: flex;
    align-items: center;
    overflow: hidden;
    transform: skewY(-3deg);
  }

  .banner-text {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    animation: slide 20s linear infinite;
    letter-spacing: 0.1em;
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}