@import "tailwindcss";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Poppins:wght@300;400;500&display=swap");

body {
  font-family: "Poppins", sans-serif;
  background-color: black;
  background-image: radial-gradient(circle at top, #282828, black, black);
  /* background-image: radial-gradient(circle at top left,#282828,black 80%,blue,gold); */

  background-attachment: fixed;
  height: 100vh;
  width: 100vw;
  /* Primary Background */
  color: #333333;
  /* Secondary Text */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
}

.sfade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.sfade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.creative-role {
  transition: all 0.3s ease-in-out;
  border-color: transparent;
}

.creative-role:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
  border-color: gold;
}

.text-accent-gold-main-btn:hover {
  background-color: #d4af37;
  /* Accent Gold */
  color: white;
}

.text-accent-gold {
  color: gold;
}

.border-accent-gold {
  border-color: gold;
}

input,
textarea {
  color: white;
}

.PopUP {
  display: none;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1000;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

#messageModal {
  display: none;
  z-index: 999;
  /* Sit on top */
  position: fixed;
}

#mainMessageModal {
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 1000; /* Sit on top */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;

}


#messageModalContainer {
  justify-content: space-between;
  z-index: 1000; /* Sit on top */


}

#secondMessageModalContainer {
  position: relative;
  
}


#closeMessageModal {
  position: absolute;
  top: 3%;
  right: 3%;
  
}

#about {
  display: none;
  position: fixed;
  z-index: 1100;
}

.form-container {
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.hidden-form {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.show-form {
  max-height: 500px;
}

.scale-up-center {
  -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* New animations */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fade-in-up 1s ease-out;
}

.hover-pulse:hover {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

