@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');

body, h1, h3, p, input, label, button {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background: radial-gradient(circle, #1A1E2B, #212C3C, #1B1E2C);
    color: white;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 1.5px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.App {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 64px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 80px;
    letter-spacing: 1.5px;
}

h3 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #677995;
    margin-bottom: 20px;
}

.orange {
    color: #FA8714;  
}

.click-count {
    color: #677995;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 32px;    
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #a5b2c7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    padding: 0 20px;
}

.subtitle br {
    display: none;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.input-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.input-group,
.learn-more-container,
.waiting-list-container {
    background-color: rgba(26, 30, 43, 0.8);
    border-radius: 25px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(7px);
    width: 100%;
    max-width: 600px;
}

label {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    padding: 20px;
    text-align: left;
}

input[type="text"], input[type="file"], textarea {
    width: calc(100% - 20px);
    padding: 10px;
    font-size: 16px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1px;
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
}

.info-icon {
    font-size: 18px;
    margin-left: 5px;
    color: #FA8714;
}

.tooltip-text {
    visibility: hidden;
    width: 250px;
    background-color: #555;
    font-style: italic;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%); /*ADDED THIS*/
    /* margin-left: -125px; */
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

/* Button Styles */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%; /*ADDED THIS*/
}

button {
    background-color: #FA8714;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    margin-bottom: 80px;
    max-width: 100%;
}

button:hover {
    background-color: white;
    color: #E67300;
}

.error-message {
    background-color: #ffebee;
    color: #c62828;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #ef9a9a;
    max-width: 100%; /*ADDED THIS*/
    box-sizing: border-box; /*ADDED THIS*/
}

/* Modal styles */
.modal {
    position: fixed;
    color: black;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    display: flex; /*ADDED THIS*/
    justify-content: center; /*ADDED THIS*/
    align-items: center; /*ADDED THIS*/
}

.modal-content {
    background-color: #fefefe;
    border-radius: 25px;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto; 
}

.summary, 
.questions {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.questions,
.summary {
  background-color: rgba(26, 30, 43, 0.8);
  border-radius: 25px;
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(7px);
  width: 100%;
  max-width: 800px;
  text-align: left; 
}

.questions-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap; 
  }

.questions h2,
.summary h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    width: 100%; 
}

 .questions ol {
    padding-left: 20px; 
 }

.questions li {
    list-style-type: none;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 300;
}

.summary p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.questions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.copy-container {
    display: flex;
    align-items: center;
}

.copy-button {
    background: none;
    cursor: pointer;
    font-size: 20px;
    color: #888;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    padding: 5px;
}

.copy-button:hover {
    color: #FA8714;
}

.copy-success {
    display: none;
    margin-left: 10px;
    color: #FA8714;
    font-size: 14px;
    white-space: nowrap;
}

.learn-more-container,
.waiting-list-container {
    width: 100%;
    max-width: 600px; 
    margin: 20px auto; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.learn-more-box h3,
.waiting-list-container h3 {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    color: #FA8714;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.learn-more-box h3 .arrow,
.waiting-list-container h3 .arrow {
    transition: transform 0.3s ease;
    font-size: 0.5em;
    margin-left: 5px;
}

#learnMoreContent,
#waitingListContent {
    color: #a5b2c7;
    margin-top: 10px;
    line-height: 1.6;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    max-height: 0;
}

#learnMoreContent.show,
#waitingListContent.show {
    max-height: 1500px;
}

#learnMoreContent p,
#learnMoreContent ul {
    margin: 20px 0;
}

#learnMoreContent a {
    color: #FA8714;
    text-decoration: none;
    font-weight: bold;
}

#learnMoreContent a:hover {
    text-decoration: underline;
}

.user-type-selection {
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.user-type-selection label {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #a5b2c7;
}

.user-type-selection input[type="radio"] {
    margin-right: 10px;
}

#recruiterForm, #jobSeekerForm {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
}
.waiting-list-container form {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
}

.waiting-list-container input[type="email"] {
    font-family: 'Montserrat', sans-serif;
    padding: 10px;
    min-width: 300px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.g-recaptcha {
    margin-bottom: 15px;
    transform: scale(0.9);
    transform-origin: 0 0;
    border: 1px red;
}


/* Footer.css */
.footer {
    margin-top: auto; 
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between text and logo */
}

.footer-text {
    margin: 5px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.2em;
}

.footer-link {
    color: #FA8714; /* Match the button color */
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-logo {
    height: 20px; 
    vertical-align: middle;
}

/* Decorative line above social icons */
.decorative-line {
    width: 100%;
    max-width: 600px;
    height: 1px;
    margin: 30px auto;
    background: linear-gradient(
      to right,
      white,
      white 20%,
      transparent 50%,
      white 80%,
      white 100%
    );
  }

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }
  
  .social-icon {
    color: white;
    font-size: 24px;
    padding: 10px;
    background-color: transparent;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    opacity: 0.8;
    transform: scale(1.1);
  }
  
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
        margin-top: 20px;
    }

    h3 {
        font-size: 20px;
    }

    .click-count {
        font-size: 20px;
    }

    .subtitle {
        font-size: 20px;
    }
    
    .subtitle br {
        display: inline;
    }

    label {
        font-size: 16px;
        padding: 5px;
    }

    button {
        font-size: 18px;
        padding: 12px 24px;
    }

    .questions h2, .summary h2 {
        font-size: 20px;
    }

    .questions li, .summary p {
        font-size: 14px;
    }

    .questions-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .copy-container {
        margin-top: 10px;
    }

    .footer-text {
        font-size: 12px;
    }
}


@media (max-width: 767px) {
    .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
}