.fade-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Reset some default styles */
body,
h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

li {
  display: inline;
  margin-right: 20px; /* Adjust the spacing between links if needed */
}

.footer-artists {
  padding-bottom: 15px;
}

/* Basic styling */
body {
  text-align: center;
}

/* Custom Font */
@font-face {
  font-family: "Dancing";
  src: url(../Assets/Fonts/BebasNeue.ttf);
}

/* Header styles */
header {
  font-family: Dancing;
  font-size: 30px;
  background-color: rgba(
    0,
    0,
    0,
    0
  ); /* Use rgba to set a transparent background */
  color: white;
  padding: 10px 0;
  text-align: left;
  margin-bottom: 75px;
}

/* Updated logo styles */
.logo {
  font-size: 40px;
  font-weight: bold;
  margin-left: 20px;
  text-decoration: none; /* Remove underline */
  color: white; /* Set the text color to white */
  transition: color 0.3s ease, transform 0.3s ease; /* Add smooth transition for color and scale */
}

.logo:hover {
  color: purple; /* Change the color on hover */
  transform: scale(1.05); /* Add hover effect */
}

/* Styles for the background image and overall layout */
.artist-background {
  background-image: url("../Assets/Images/PurpleSmoke.png");
  background-size: cover;
  background-position: center;
  font-family: Arial, sans-serif;
}

/* Footer styles */
footer {
  font-family: "Dancing";
  margin-top: 100px;
  background-color: rgba(
    0,
    0,
    0,
    0
  ); /* Use rgba to set a transparent background */
  color: white;
  padding: 20px 0;
}

.social-links {
  list-style: none;
  display: flex; /* Display the icons in a row */
  justify-content: center;
  margin-bottom: 20px;
}

.social-links li {
  margin: 0 15px;
}

.social-links a {
  text-decoration: none;
  color: white; /* Set the icon color to white */
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 24px;
}

.social-links a i {
  margin-right: 10px;
}

/* Footer link hover effect */
.social-links a:hover {
  color: purple; /* Change the icon color to purple on hover */
  opacity: 0.7;
}

.container {
  font-family: "Dancing";
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container p {
  margin-bottom: 50px; /* Add margin to create space between the paragraph and labels */
}

form {
  display: grid;
  gap: 20px;
}

label {
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="name"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button[type="submit"] {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #0056b3;
}

.g-recaptcha {
  display: flex;
  justify-content: center; /* Horizontal centering */
  align-items: center; /* Vertical centering */
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  header {
    padding: 10px; /* Reduce header padding */
    text-align: center;
  }

  .logo {
    font-size: 30px; /* Decrease logo font size */
    text-align: center;
    margin-right: 20px;
  }

  .social-links {
    text-align: center; /* Center the list horizontally */
  }

  .social-links li {
    display: inline-block; /* Make list items appear in a horizontal line */
    margin: 0 10px; /* Add margin around each social icon */
  }

  footer {
    padding: 10px; /* Reduce footer padding */
    font-size: 13px;
    margin-top: 250px;
  }
}
