
@font-face {
  font-family: 'New Standard Old';
  src: url('../font/Newstandardold.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}


@font-face {
  font-family: 'Allegretto';
  src: url('../font/allegrettoscripttwo.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}

canvas {
  display: block;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  position: relative;
  overflow-x: hidden;
  color: #fff;
  font-family: 'New Standard Old', serif;
  font-style: italic;
  font-weight: 400;
  min-height: 100vh;
  background-color: #000;
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.fabric {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.2);
}

/*
.fabric {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: url('../images/bg.jpg') top center / cover no-repeat;
}

.fabric::before,
.fabric::after {
  content: "";
  position: absolute;
  inset: -12%;
  background-image: url('../images/bg.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  will-change: transform;
}

.fabric::before {
  opacity: 0.32;
  animation: drift1 8s ease-in-out infinite alternate;
}

.fabric::after {
  opacity: 0.22;
  animation: drift2 11s ease-in-out infinite alternate;
}

@keyframes drift1 {
  0% {
    transform: translate(-2.5%, -1.5%) scale(1.03);
  }

  100% {
    transform: translate(2.5%, 1.5%) scale(1.06);
  }
}

@keyframes drift2 {
  0% {
    transform: translate(2%, -2.5%) scale(1.04) rotate(0.3deg);
  }

  100% {
    transform: translate(-2%, 2.5%) scale(1.07) rotate(-0.3deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fabric::before,
  .fabric::after {
    animation: none;
    transform: none;
  }
}

*/

section {
  overflow-x: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--hero {
  transition-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .reveal--hero {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  padding: 35px 0;
}

.subtitle {
  font-size: 22px;
}

.hero h1 {
  font-family: 'Allegretto';
  font-size: 64px;
  font-weight: 400;
  line-height: 200%;
}

.date {
  font-size: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.date__day {
  font-size: 64px;
  font-family: 'Allegretto';
  line-height: 100%;
  margin-top: -15px;
}

.music {
  width: min(320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 220px 0 250px;
}

.music-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 160px;
  margin: 0 auto;
}

.music-player__audio {
  display: none;
}

.music-player__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.music-player__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.music-player__btn:hover {
  opacity: 0.85;
}

.music-player__btn--play {
  width: 38px;
  height: 38px;
}

.music-player__btn--play .music-player__icon--pause[hidden] {
  display: none;
}

.music-player__btn--play.is-playing .music-player__icon--play {
  display: none;
}

.music-player__btn--play.is-playing .music-player__icon--pause {
  display: block;
}

.music-player__progress {
  width: 100%;
  padding: 10px 0;
  cursor: pointer;
}

.music-player__progress-track {
  position: relative;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.music-player__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #fff;
  border-radius: 2px;
  pointer-events: none;
}

.music-player__progress-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.music-player__toggle {
  font-family: inherit;
  font-size: 16px;
  font-style: italic;
  color: #fff;
  text-decoration: none;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.music-player__toggle:hover {
  opacity: 0.85;
}

.white {
 border-radius: 20px;
 border: 1px solid #fff;
 background: rgba(255, 255, 255, 0.2);
 padding: 30px 25px;
 margin: 0 20px;
 text-align: center;
 margin-bottom: 250px;
}

.white:last-of-type {
  margin-bottom: 100px;
}

.image {
  border-radius: 20px;
  border: 1px solid #fff;
  width: 100%;
  object-fit: cover;
}

.section__title {
  font-size: 36px;
  line-height: 150%;
  margin: 15px 0 30px;
  font-family: 'Allegretto';
}

.section__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
}

.section__date__item {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 25px;
}

.section__date-title {
  width: 60px;
}

.section__date-value {
  text-align: left;
  width: 125px;
  font-size: 32px;
  line-height: 100%;
  font-family: 'Allegretto';
}

.section__date__item:last-child .section__date-value {
 font-size: 16px;
 font-family: 'New Standard Old';
 line-height: 100%;
}

.flo {
  margin: 40px auto;
}

.image2 {
  margin-bottom: 40px;
}