/* Style page for the pre-application page*/
:root { --nav-height: 72px; }
body.pre-app { padding-top: var(--nav-height); }

.pre-app{
    font-family: 'Futura','Inter','Avenir','Helvetica Neue',Arial,sans-serif; 
    color:black; 
    line-height: 1.6;
    background-color: #f5f6fa;
}

.pre-app .container{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto; 
  padding: 20px 0;   
}

.pre-app .hero{
    background: url("/images/tree-forest-nature-landscape.jpg") center center / cover no-repeat;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 120px 0 80px; 
    margin-bottom: 40px;
}

.pre-app .hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.pre-app .hero .container{
    position: relative;
    z-index: 1;
}

.pre-app .hero h1 {
    font-family: serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.pre-app .hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}



/* Questions styling */
.pre-app .body {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}


.pre-app form#pre-app-screening-form {
    margin-top: 1rem;
}


.pre-app form fieldset {
    border: 0;
    margin: 1.25rem 0;
    padding: 0;
}

.pre-app form fieldset legend {
    font-family: 'Source Serif Pro','Playfair Display',serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
    display: block;
    border-left: 4px solid #008080;
    padding-left: .5rem;
}

/* Labels */
.pre-app fieldset label {
    font-family: 'Inter','Helvetica Neue',Arial,sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #444;
    display: block;
    margin: .45rem 0;
    cursor: pointer;
}

/*  checkbox  */
.pre-app fieldset input[type="radio"],
.pre-app fieldset input[type="checkbox"] {
    margin-right: .5rem;
    transform: scale(1.05);
}

/* Symptoms list spacing */
.pre-app .symptoms-list {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0 0.5rem 0;
}

.pre-app .healingMethods {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0 0.5rem 0;
}

.pre-app .symptoms-list li {
    margin: .3rem 0;
}

.pre-app .healingMethods li

/* Required asterisk */
.required {
    color: #d93025;
    font-weight: 700;
    margin-left: .2rem;
}


.hidden {
  display: none;
}

/*hide the header unless going to take app*/
#hero-description {
  display: none;
}

/* Button */
.btn-next {
    display: block;
    width: fit-content;
    margin: 1.5rem auto 0 auto;
    padding: 0.8rem 1.2rem;
    background: #008080;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.1s ease;
    border: none;
}

.btn-next:hover {
    background: rgba(0, 128, 128, 0.5);
    transform: translateY(-2px);
}

.btn-next:active {
    transform: translateY(0);
}


/* Styling for Endings*/

.ending {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.ending p {
    margin-bottom: 1rem;
}

