body{
	background:url('../images/background.jpg') no-repeat top center;
	background-size:cover;
}

.card {
	min-height: 360px;
	display: grid;
	place-items: center;
	background:#000000;
	box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.30);
}

.card p {
	margin: 0;
	padding: 0;
	font-size: 60px;
	line-height: 1;
	transform: translateY(-20px);
	font-family: "Zalando Sans Expanded", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	color:#ffffff;
}

.card-clickable {
   cursor: pointer;
   transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.card-clickable:hover {
    transform: perspective(900px) rotateX(5deg) rotateY(-8deg);
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.50);
}

.card-clickable:focus-visible {
  outline: 3px solid #0d6efd;
  outline-offset: 4px;
}

/* modal */

#zalandoModal .modal-dialog {
  max-width: 550px;
  width: calc(100% - 30px);
}

.modal-header{
	background:url('../images/background-premii.jpg') no-repeat bottom center;
	background-size:90%;
	padding:0;
	border: none;
}

.modal-body{
	padding:20px 30px 0 30px;
}

.modal-body p{
	margin: 0;
	padding: 0;
	font-size: 50px;
	line-height: 1;
	font-family: "Zalando Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color:#000000;
}

#zalandoModal .modal-footer {
  display: block;
  border:none;
  padding:0 15px 20px 15px;
}

.modal-footer{
	border:none;
}

#zalandoModal .modal-footer p{
	margin: 0;
	padding: 0;
	font-size: 28px;
	line-height: 1;
	font-family: "Zalando Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	color:#000000;
	text-transform:uppercase;
}

#zalandoModalMaiIncearca .modal-body p.felicitari{
	padding:100px 0;
}

#zalandoModalMaiIncearca .modal-dialog {
  max-width: 350px;
  width: calc(100% - 30px);
}


/* overlay */

body {
  background: url('../images/background.jpg') no-repeat top center;
  background-size: cover;
}

/* Overlay afișat la intrarea în pagină */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);

  cursor: pointer;
  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.intro-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-overlay-content {
  width: 100%;
  max-width: 1100px;
  color: #ffffff;
}

.intro-overlay h1 {
  margin: 0 0 45px 0;

  font-family: "Zalando Sans Expanded", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(52px, 6vw, 110px);
  font-weight: 400;
  line-height: 0.95;
  text-align: center;
}

.intro-overlay-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 75px;
}

.intro-overlay-bottom p {
  margin: 0;

  font-family: "Zalando Sans Expanded", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(24px, 2.4vw, 42px);
  font-weight: 200;
  line-height: 1.15;
  color: #ffffff;
}

.intro-tap-icon {
  width: 150px;
  max-width: 18vw;
  height: auto;

  animation: tap-pulse 1.6s ease-in-out infinite;
}

@keyframes tap-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}

@media (max-width: 767px) {
  .intro-overlay {
    padding: 24px;
  }

  .intro-overlay h1 {
    margin-bottom: 30px;
    font-size: 48px;
  }

  .intro-overlay-bottom {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .intro-overlay-bottom p {
    font-size: 24px;
  }

  .intro-tap-icon {
    width: 90px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay,
  .intro-tap-icon {
    animation: none;
    transition: none;
  }
}