/* public/css/enrollment.css */

/* Import form step specific styles */
@import 'enrollment-form-steps.css';


body {
  font-family: 'Nunito Sans', sans-serif;
  margin: 0;
  color: var(--text-color);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* button */
button {
  font-size: 14px !important;
  font-weight: 600;
  min-height: 45px;
  border-radius: 10px !important;
  /* padding: 17px 20px !important; */

  &.mainbtn {
    background: #F3E96E;
    color: #363636;
  }

  &.drkbtn {
    background: #363636;
    color: #FFFFFF;
  }
}

/* header */
.header {
  box-shadow: 0px 4px 18px 0px #0000001A;
  padding: 1% 5%;
  background-color: #ffff;

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobileToggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #363636;
  }

  .navbar {
    display: flex;
    align-items: center;
    gap: 20px;

    ul {
      display: flex;
      gap: 20px;
      margin: 0;
      list-style: none;

      li a {
        color: #363636;
        font-size: 14px;
        text-decoration: none;
        font-family: Manrope, sans-serif;
      }
    }

  }
}

.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--primary-color);
  /* background-color: var(--light-gray); Removed background color */
  background-image: url('/svg/background.svg');
  background-repeat: repeat;
  background-size: cover;
  background-position: center center;
}

.highlight {
  color: var(--primary-color);
}

.bg-main {
  background-color: var(--primary-color) !important;
}

/* Header Styles */
.app-header {
  background-color: var(--white);
  padding: 10px 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.header-left .logo-link {
  display: block;
}

.header-left .logo {
  height: 60px;
  transition: transform 0.2s ease-in-out;
}

.header-left .logo:hover {
  transform: scale(1.05);
}

.header-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.header-nav li {
  margin-left: 40px;
}

.header-nav li:first-child {
  margin-left: 0;
}

.header-nav a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 1.15rem;
  transition: color 0.3s ease-in-out;
}

.header-nav a:hover {
  color: var(--accent-blue);
}


.header-right {
  display: flex;
  align-items: center;
}

.enroll-now-button {
  background-color: var(--orange-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.2s ease-in-out;
  letter-spacing: 0.5px;
}


.enroll-now-button:hover {
  background-color: #fdd835;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}


.music-note-button {
  display: none;
}

.music-note-icon {
  height: 32px;
}


/* Main Content Styles */
.app-main {
  background-color: var(--primary-color);
  background-image: url('/svg/background.svg');
  background-size: cover;
}

/* billing tabs */
.billing-tabs {

  li {
    a {
      color: black;
      font-size: 18px;
      font-weight: 600;

      &.active {
        border-color: transparent !important;
        border-bottom: 2px solid var(--primary-color) !important;
      }
    }
  }
}


/* Footer Styles (Optional) */
.app-footer {
  display: none;
}

@media screen and (max-width:768px) {

  /* header */
  .header {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
      justify-content: start;
      position: fixed;
      top: 0%;
      height: 100vh;
      z-index: 1;
      left: 0;
      background: white;
      transition: all .5s ease-in-out;
      box-shadow: 0px 4px 18px 0px #0000001A;
      transform: translateX(-100vw);
      width: 70%;
      padding: 1rem;
      gap: 1rem;

      &.open {
        transform: translateX(0vw);
      }

      .navlinks {
        flex-direction: column;
        gap: 10px;

        padding: 0;
      }
    }

    .mobileToggle {
      display: block;
      font-size: 18px !important;
    }
  }

  .enrollment-main-page {
    padding: 10px;

    .enrollment-initial-page {
      width: 100%;
      margin: auto !important;
    }
  }

  .lesson-type-buttons {
    flex-direction: column;

    a {
      width: 100%;
    }
  }
}

.btn-blue {
  background-color: #0d6efd;
  color: #FFFFFF !important;
}

.btn-danger {
  background-color: #fd390d;
  color: #FFFFFF !important;
}