/* FONTS */
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,500&display=swap");

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

body {
  font-family: "Raleway", sans-serif;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo {
  height: 200px;
  width: auto;
  transition: opacity 2s;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -100%);
}

.loader-wrapper {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.invitation-button {
  font-size: 0.9rem;
  color: #251632; /* Neutral dark grey text */
  background-color: #fff; /* Pure white background */
  border: 1px solid #251632; /* Light grey border */
  border-radius: 30px; /* Rounded corners for a soft look */
  padding: 10px 20px; /* Comfortable padding */
  cursor: pointer;
  transition: all 0.3s ease; /* Smooth transitions */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.invitation-button:hover {
  background-color: #fff; /* Light grey on hover */
  border-color: #251632; /* Slightly darker border */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow */
  color: #fff;
}

.invitation-button:active {
  background-color: #251632; /* Slightly darker grey for press effect */
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1); /* Reduced shadow on press */
  transform: scale(0.98); /* Slight press-down effect */
  color: #fff;
}

/* Fade-out animacija */
.fade-out {
  opacity: 0;
  transition: opacity 1s ease-out; /* Trajanje fade-out efekta */
}
