
.menu {
  position: fixed;
  top: 60px;
  left: 20px;
  background: rgba(224, 176, 255, 0.5);
  width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.3s ease-in-out;
}


.burger input:checked ~ .menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}


.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu ul li a {
  display: block;
  padding: 12px 20px;
  color: black;
  text-decoration: none;
  font-family: "Alfa Slab One", serif;
  transition: background 0.2s;
}

.menu ul li a:hover {
  color: whitesmoke;
  background-color: black;
}


.burger {
  position: fixed;
  width: 40px;
  height: 30px;
  background: transparent;
  cursor: pointer;
  display: block;
  top: 20px;
  left: 20px;
  z-index: 1000;
}


.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 28px;
  left: 5px;
}

body {
  background-image: url('../assets/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden; 
  padding: 20px 0;
}

h2{
  margin: 0;
	padding: 10px;
	border: 0;
	font-size: clamp(1.8rem, 10vw, 4rem);
	font-family: "Alfa Slab One", serif;
  font-weight: 400;
  display: grid;
  place-items: center;
  min-height: 10vh;
  color: #e0b0FF;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
  -webkit-text-stroke: clamp(1px, 0.5vw, 2px) white;
  text-align: center;
}

.about-container {
  background-color: rgba(255, 255, 255, 0.5);
  padding: clamp(15px, 5vw, 40px);
  border-radius: 20px;
  width: 85%;
  max-width: 500px;
  text-align: center;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out forwards;
  margin: 60px auto;
  box-sizing: border-box;
}

p{
  font-family: "Zalando Sans Expanded", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h3{
  font-family: "Zalando Sans Expanded", sans-serif;
  font-optical-sizing: auto;
  font-style: bold;
}

#footer {
		background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.5) 75%);
		background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.5) 75%);
		background-image: -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.5) 75%);
		background-image: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.5) 75%);
		bottom: 0;
		cursor: default;
		height: 6em;
		left: 0;
		line-height: 8em;
		position: absolute;
		text-align: center;
		width: 100%;
    background-color: rgba(245, 245, 245, 0.1);
    color: whitesmoke;
    font-family: "Zalando Sans Expanded", sans-serif;
	}

  #footer a{
    color: whitesmoke;
    font-family: "Zalando Sans Expanded", sans-serif;
  }

  @keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  display: flex;
  height: auto;
  width: 100%;
  justify-content: center;
  padding: 10px 0px;
  margin: 0 auto;
  gap: 10px;
}

.card svg {
  position: absolute;
  display: inline-block;
  width: 60%;
  height: 60%;
  font-size: 24px;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.25s;
  z-index: 2;
  cursor: pointer;
  justify-content: center;
}

.card .social-link1,.card .social-link2,.card .social-link3,.card .social-link4, .card .social-link5 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: whitesmoke;
  font-size: 24px;
  text-decoration: none;
  transition: 0.25s;
  border-radius: 12px;
}

.card svg {
  transform: scale(1);
}

.card .social-link1:hover {
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  animation: bounce_613 0.4s linear;
}

.card .social-link2:hover {
  background: linear-gradient(135deg, #006e00 0%, #00e701 100%);
  animation: bounce_613 0.4s linear;
}

.card .social-link3:hover {
  background-color: #5865f2;
  animation: bounce_613 0.4s linear;
}

.card .social-link4:hover {
  background: linear-gradient(180deg, #000000 0%, #0f0f0f 100%);
  animation: bounce_613 0.4s linear;
}

.card .social-link5:hover {
  background: linear-gradient(135deg, #FE2C55 25%, #25F4EE 75%);
  animation: bounce_613 0.4s linear;
}

@keyframes bounce_613 {
  40% {
    transform: scale(1.4);
  }

  60% {
    transform: scale(0.8);
  }

  80% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 450px;
  background-color: transparent;
  padding: 15px;
  border-radius: 10px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  grid-template-columns: repeat(3, 1fr); 
}

.form label, 
.form label .input, 
.input01 {
  width: 100%;
  box-sizing: border-box;
  grid-column: 1 / -1; 
}

.message {
  color: rgba(0, 0, 0, 0.822);
  font-size: 14px;
}

.flex {
  display: flex;
  flex-direction: row; 
  width: 100%;
  gap: 10px;
}

.form label {
  position: relative;
}

.form label .input {
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 5px;
  
}

.form label .input + span {
  position: absolute;
  left: 10px;
  top: 15px;
  color: grey;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
  font-family: "Zalando Sans Expanded", sans-serif;
}

.form label .input:placeholder-shown + span {
  top: 15px;
  font-size: 0.9em;
  font-family: "Zalando Sans Expanded", sans-serif;
  
}

.form label .input:focus + span,.form label .input:valid + span {
  top: 30px;
  font-size: 0.7em;
  font-weight: 600;
  font-family: "Zalando Sans Expanded", sans-serif;
  
}

.form label .input:valid + span {
  color: rgba(105, 105, 105, 0.397);
  font-family: "Zalando Sans Expanded", sans-serif;
}

.input01 {
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 5px;
  font-family: "Zalando Sans Expanded", sans-serif;
  
}

.form label .input01 + span {
  position: absolute;
  left: 10px;
  top: 50px;
  color: grey;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
  font-family: "Zalando Sans Expanded", sans-serif;
}

.form label .input01:placeholder-shown + span {
  top: 40px;
  font-size: 0.9em;
  font-family: "Zalando Sans Expanded", sans-serif;
}

.form label .input01:focus + span,.form label .input01:valid + span {
  top: 50px;
  font-size: 0.7em;
  font-weight: 600;
  font-family: "Zalando Sans Expanded", sans-serif;
}



.button {
  margin: 10px auto;
  height: auto;
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
  --fs-size: clamp(1.2rem, 5vw, 2rem);
  letter-spacing: 2px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  grid-column: 1 / -1; 
}


.button {
  --border-right: 6px;
  --text-stroke-color: rgba(255,255,255,0.6);
  --animation-color: #e0b0ff;
  text-decoration: none;
  font-size: var(--fs-size);
  font-family: "Arial";
  position: relative;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-stroke-color);
}

.hover-text {
  position: absolute;
  box-sizing: border-box;
  content: attr(data-text);
  color: var(--animation-color);
  width: 0%;
  inset: 0;
  border-right: var(--border-right) solid var(--animation-color);
  overflow: hidden;
  transition: 0.5s;
  -webkit-text-stroke: 1px var(--animation-color);
}

.button:hover .hover-text {
  width: 101.1%;
  filter: drop-shadow(0 0 23px var(--animation-color))
}

@media (max-width: 600px) {
  body {
    overflow-y: auto;
    align-items: flex-start;
    padding-top: 60px;
  }

  .flex {
    flex-direction: column; 
    gap: 10px;
  }

  .about-container {
    width: 90%;
    margin: 10px auto;
  }

  .card {
    gap: 5px;
  }

  .form label .input:focus + span,
  .form label .input:valid + span {
    top: 35px;
    font-size: 0.65rem;
  }
  .input01 {
    height: 100px;
  }

   .form {
    grid-template-columns: 1fr; 
    width: 95%;
  }

  .button{
    grid-column: auto;
  }
}

@media (max-height: 500px) {
  body {
    align-items: flex-start;
  }
}