/* ================= HEADER ================= */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 2000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
  max-width: 200px;
  height: auto;
}
.header-right {
  flex: 1; /* takes up remaining space */
  display: flex;
  flex-direction: column;
  align-items: center; /* centers contact + nav horizontally */
  margin-left: -200px; /* shifts it left */
  padding-bottom: 30px; /* adds space below */
}
.contact-numbers {
  display: flex;
  gap: 20px;
}

/* ================= NAVIGATION ================= */
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.nav-links a {
  text-decoration: none !important;
  color: #000;
  font-weight: bold;
  font-size: 1.2em;
}

.trial-link {
  background-color: #0077cc;
  color: #fff !important;
  padding: 6px 15px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;

  margin-top: -0.1rem /* moves it up slightly */
}

.trial-link:hover {
  background-color: #005fa3;
}

#free-trial {
  scroll-margin-top: 90px;
}

/* Hamburger Toggle */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 3;
  position: absolute;
  top: 20px;
  right: 20px;
}

.nav-toggle-label span {
  width: 25px;
  height: 3px;
  background: #000;
  display: block;
}

/* ================= HEADER RESPONSIVE ================= */
@media (max-width: 768px) {
  .nav-toggle-label {
    display: flex;
  }

   .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;          /* full screen */
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
  }

  .nav-toggle:checked + .nav-toggle-label + .nav-links {
    display: flex;
  }
  .nav-toggle:checked ~ .nav-links {
    transform: translateX(0);
  }
   .nav-toggle-label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
  }

  .nav-toggle-label span {
    width: 25px;
    height: 3px;
    background: #000;
    display: block;
  }
   /* Close button inside nav */
  .close-btn {
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #000;
  }
}

/* ================= BACKGROUND SECTION ================= */
.background-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #00a770;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 2rem 1rem;
  box-sizing: border-box;
  gap: 2rem;
  /* background-image: url('https://fortemusicbrisbane.au/wp-content/uploads/2024/12/topbnr-bg-dtp2.jpg'); */
  background-image: url('https://fortemusic.netlify.app/assets/pexels-mart-production-8471817.jpg') !important;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(15deg, rgba(0,167,112,0.97) 30%, rgba(0,167,112,0) 53%);
  pointer-events: none;
  z-index: 1;
}

.bottom-left-text {
  font-size: 1.2rem !important;
  max-width: 400px !important;
  margin-top: 500px;
  color: #fff;
  font-family:"roboto condensed", sans-serif;
  line-height: 1.4;
  z-index: 2;
}

/* ================= PURPLE BACKGROUND SECTION ================= */
.background-section.purple {
  position: relative;
  width: 100%;
  min-height: 700px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 2rem 1rem;
  box-sizing: border-box;
  background-image: url('../assets/DSC_1932.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #6a0dad;
  z-index: 1;
  overflow: hidden;
  gap: 2rem;
}

.purple .gradient-overlay {
  background: linear-gradient(15deg, rgba(106,13,173,0.97) 30%, rgba(106,13,173,0) 53%);
}

.purple .bottom-left-text {
  font-size: 1.2rem !important;
  max-width: 600px !important;
  margin-top: 400px;
  color: #fff;
  font-family: 'roboto condensed', sans-serif;
  line-height: 1.4;
  z-index: 2;
}
/* Form Styling */
.form-container {
  z-index: 2;
  width: 100%;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  font-size: 0.85rem;
  overflow: auto; /* allows internal scroll if content grows */
}
.form-container h2 {
  margin-bottom: 0.75rem;        /* Less vertical space */
  font-size: 1.3rem;
}

.form-container label {
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
  display: block;
}

.form-container input,
.form-container select {
  width: 100%;
  padding: 0.4rem 0.6rem;
  margin-bottom: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;            /* Rounded inputs */
  font-size: 0.85rem;
}



.form-container button {
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
  background-color: #0078D4;
  color: white;
  border: none;
  border-radius: 8px;            /* Rounded button */
  cursor: pointer;
  font-size: 0.85rem;
  transition: background-color 0.3s ease;
}

.form-container button:hover {
  background-color: #005fa3;
}
/* Ensure form stays the same on mobile */
@media screen and (max-width: 768px), screen and (max-width: 480px) {
  .form-container {
    font-size: 0.85rem !important;
    max-width: 320px !important;
    padding: 1.5rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 12px !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15) !important;
  }
  .form-container h2 {
    font-size: 1.3rem !important;
    margin-bottom: 0.75rem !important;
  }
  .form-container label,
  .form-container input,
  .form-container select,
  .form-container button {
    font-size: 0.85rem !important;
  }
}

/* ================= RESPONSIVE BOTTOM LEFT TEXT ================= */
@media screen and (max-width: 768px), screen and (max-width: 480px) {
  .bottom-left-text,
  .purple .bottom-left-text {
    font-size: 1.2rem !important;
    max-width: 400px !important;
    color: #fff !important;
    line-height: 1.4 !important;
    margin-top: 0 !important;
  }
}