/* Reset */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  overflow: hidden;
  color: #fff;
}

/* Hero Section */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Background video */
#hero video.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}


/* Title */
header {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}

header h1 {
  font-size: 4vw;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(0,0,0,0.8);
}

/* Buttons section (bottom centered) */
.buttons {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
  z-index: 3;
  font-size: 12px;
}

.buttons a {
  text-decoration: none;
  color: #000000;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 55%;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.buttons a:hover {
  background: #000000;
  color: #ffffff;
}

/* Popup overlay */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(2px);
}

/* Visible state */
.popup.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

/* Popup content box */
.popup-content {
  background: rgba(255,255,255,0.75);
  color: #000;
  padding: 2rem 3rem;
  border-radius: 20px;
  max-width: 400px;
  width: 80%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  transform: scale(0.7);
}

/* Close button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
  transition: 0.2s;
}

.close:hover {
  color: #666;
}


/* Music platform buttons inside popup */
.music-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.music-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.music-buttons a img {
  width: 28px;
  height: 26px;
}

.music-buttons a:hover {
  background: #fff;
  color: #000;
  border-color: #000;
}

.music-buttons a:hover img {
  filter: invert(0);
}

.profile-pic-centered {
  display: block;
  margin: 1rem auto; /* centers the image horizontally */
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,0,0,0.4);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  opacity: 0.8;
}

.contact-content, 
.form-input, 
.form-textarea, 
.contact-form {
  box-sizing: border-box;
}
/* Popup content box */
.contact-content {
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
  max-width: 500px;
  width: 85%;
  text-align: center;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  color: #000;
}

/* Form styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
}

.form-submit {
  background: #000;
  color: #fff;
  padding: 0.9rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

.form-label {
  display:block;
  text-align: left;     /* left-aligns the text */
  font-weight: bold;    /* makes the text bold */
  margin-bottom: 0.25rem; /* adds a little spacing below the label */
  font-size: 0.95rem;   /* optional: slightly smaller than input text for style */
}

.h-captcha {
  transform: scale(0.85); /* shrink the widget a bit */
  transform-origin: 0 0;   /* anchor scaling to top-left */
  width: 100% !important;  /* ensure it doesn’t overflow container */
  max-width: 100% !important;
  margin: 0 auto 1rem auto; /* center it horizontally and add spacing below */
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}


/* Responsive */
@media (max-width: 768px) {

  /* Hero title */
  header h1 {
    font-size: 8vw; /* already set */
  }

  /* Hero buttons smaller and stacked */
  .buttons {
    align-items: center;
    gap: 1rem;
  }
  .buttons a {
    font-size: 8px;       /* smaller font */
    border-radius: 55%;     /* slightly smaller pill shape */
  }

.contact-content {
    width: 90%;             /* narrower width */
    max-width: 350px;       /* cap width */
    max-height: 90vh;       /* cap height to viewport */
    padding: 1.5rem 2rem;   /* smaller padding */
    transform: scale(0.85); /* slightly larger on mobile */
    overflow-y: auto;       /* enable scroll if content is taller */
  }

  /* Optional: reduce form spacing slightly */
  .contact-form {
    gap: 0.8rem;
  }

  /* Inputs and textarea still fill width */
  .form-input, .form-textarea {
    font-size: 0.95rem;
    padding: 0.7rem 0.8rem;
  }

  /* Music buttons smaller */
  .music-buttons a {
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
  }

  /* Close button smaller */
  .close {
    font-size: 1.5rem;
    top: 10px;
    right: 15px;
  }
  
  .h-captcha {
    transform: scale(0.75);
  }
}
