@font-face {
  font-family: 'Cormorant';
  src: url('fonts/cormorant/Cormorant-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Involve';
  src: url('fonts/involve/Involve-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #42101B;
}

.dkp-hero {
  position: relative;
  min-height: 100vh;
  background-image: url('images/placeholder-img.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dkp-hero-header {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 3rem 3.5rem;
}

.dkp-hero-logo {
  display: block;
  width: 170px;
  height: auto;
}

.dkp-hero-title {
  margin: 0;
  font-family: 'Cormorant', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.dkp-hero-notice {
  margin: 0;
  font-family: 'Involve', sans-serif;
  font-size: clamp(0.75rem, 0.9vw, 0.8125rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.dkp-hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  padding: 3rem 3.5rem;
}

.dkp-hero-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  max-width: 3rem;
  width: 100%;
  height: 3rem;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.dkp-hero-instagram:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.dkp-hero-instagram-icon {
  display: block;
}

.dkp-hero-legal {
  max-width: 480px;
}

.dkp-hero-legal-line {
  margin: 0 0 0.5rem;
  font-family: 'Involve', sans-serif;
  font-size: clamp(0.70rem, 0.9vw, 0.875rem);
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.dkp-hero-legal-line:last-child {
  margin-bottom: 0;
}

.dkp-hero-legal-line strong {
  font-weight: 400;
}

.dkp-hero-legal-link {
  color: #fff;
  text-decoration: none;
}

.dkp-hero-legal-link:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .dkp-hero {
    background-position: -280px;
  }
}

@media (max-width: 768px) {
  .dkp-hero-header {
    padding: 2rem 1.5rem;
    gap: 1rem;
  }

  .dkp-hero-legal {
    max-width: 360px;
    margin-left: auto;
  }

  .dkp-hero-bottom {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 460px) {
  .dkp-hero {
    background-position: -360px;
  }
}
