@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* GLOBAL COLOURS */
:root {
    --color-primary: #43a337;
    --color-background: #21511b;
    --color-dark-background: #0c2a08;
    --color-light-background: #f4faf3;
    --color-ndis-purple: #6b2a76;
}

* { box-sizing: border-box; }

body {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;

    font-size: 18px;
    font-family: 'Rubik', sans-serif;
}


/* GLOBAL ALIGNMENT */
.main-page, .section { width: 100%; }

.section {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 20px 40px;
}

.pageheight { min-height: 100vh; }

.media-box {
    display: flex;
    gap: 5vw;
    align-items: center;
}

.column { flex-direction: column; }

.center { align-self: center; }

p { max-inline-size: 70ch; }

ul { margin: 0; }

@media screen and (max-width: 1100px) {
    .media-box {
        flex-direction: column;
    }
}


/* GLOBAL TEXT */
a { text-decoration: none; color: inherit; }

button { font-family: "Montserrat", sans-serif; }

.arrow {
    width: 0.65em !important;
    height: auto !important;
}

.header {
    color: var(--color-primary);
    font-size: clamp(20px, 3vw, 30px);
    font-size: 30px;
    
    font-weight: 600;
}

.italic { font-style: italic; }

.bold { font-weight: 600; }

li {
    list-style-type: none;
}

.whiteondark {
    background-color: var(--color-dark-background);
    color: white;
}

.right {
    display: flex;
    justify-content: end;
}

.return {
    font-size: 24px;
    font-weight: 600;
    color: brown;
}
.return:hover { font-weight: 700; }

.pointer { cursor: pointer; }


/* GLOBAL BUTTON */
.button {
    font-weight: 600;
    font-size: 19px;
    padding: 10px;
    border-radius: 5px;

    height: fit-content;
    width: fit-content;

    color: white;
    border: 0;
    box-shadow: 3px 3px 5px grey;
}

.button:hover {
    color: grey;
    cursor: pointer;
}

.button_flex { font-size: clamp(14px, 1.2vw, 19px); }

.button_book { background-color: var(--color-primary); }
.button_ndis { background-color: var(--color-ndis-purple); }


/* JS ANIMATIONS */
.fade-in {
    animation: fadeIn 500ms;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.fade-out {
    animation: fadeOut 500ms;
}
@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* NAVBAR */
.section_navbar {
    display: flex;
    height: fit-content;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;

    background-color: var(--color-light-background);
    font-family: 'Rubik', sans-serif;
}

.navbar_buttons {
    display: flex;
    gap: 2.4vw;
}

.navbar_buttons button {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(12px, 1.1vw, 20px);
    font-weight: 500;
}

.navbar_logo img {
    width: 18vw;
    height: auto;
}

.navbar_links { text-align: center; }

.navbar_links ul {
    display: inline-block;
    text-justify: center;
    padding-left: 0;
}
.navbar_links li {
    display: inline;
    padding-right: 25px;
    line-height: 2.5;
    text-wrap: nowrap;
}
.navbar_links-flex li { font-size: clamp(14px, 1.1vw, 20px); }
.navbar_links-noflex li { font-size: 20px; }
.section_navbar li:hover {
    color: grey;
    cursor: pointer;
}

/* NAVBAR MOBILE */
@media screen and (max-width: 1300px) {
    .section_navbar {
        flex-direction: column;
        padding: 20px 20px;
        gap: 25px;
    }

    .navbar_logo img { width: 400px; }
    .navbar_buttons button { font-size: 18px; }
    .navbar_links li { font-size: 18px; }
}


/* HERO VIDEO */
.section_hero-video { padding: 0px; }

.section_hero-video video {
    width: 100%;
    object-fit: cover;
    height: 28vw;
}

@media screen and (max-width: 1450px) { .section_hero-video video { height: 35vw; } }
@media screen and (max-width: 1100px) { .section_hero-video video { height: 49vw; } }
@media screen and (max-width: 550px) { .section_hero-video video { height: 256w; } }

.section_hero-video {
    justify-content: start;
    position: relative;
}

.tag {
    display: flex;
    position: absolute;
    align-items: center;
    height: 100%;
    z-index: 2;
    justify-content: start;
    padding: 0px 3vw;
    opacity: 0.8;
    width: fit-content;
    background-color: var(--color-background);
}

.tag p {
    margin-bottom: 25px;
    font-size: clamp(14px, 3vw, 32px);
    font-weight: 500;
    color: white;
}


/* BODY PART CHOICES */
#bodypart-choices {
    display: flex;
    align-items: center;
    width: 100%;
}

.section_bodypart p, .section_bodypart h2 { text-align: center; }

#bodypart-questions li { line-height: 1.5; }

.bodypart-images {
    margin-top: 15vh;
    width: 100%;

    display: flex;
    justify-content: space-evenly;
    align-items: end;
    flex-wrap: wrap;
    gap: 40px;
}

.bodypart:hover {
    transform: scale(105%);
    font-weight: 600;
}

@media screen and (max-width: 1250px) {
    .bodypart-images { margin-top: 5vh; }
}

/* BODY PART QUESTIONS */
.bodypart-questions {
    display: none;
    align-items: center;
    min-height: 100vh;
    gap: 1vw;
}

.bodypart-questions h3, .bodypart-questions p {
    max-inline-size: 70ch;
}

.bodypart-questions h3, .bodypart-questions p { text-align: center; }

.bodypart-questions li {
    margin-bottom: 1rem;
    max-inline-size: 70ch;
}

@media screen and (max-width: 640px) {
    .section_bodypart { padding: 0px 10px; }
    .bodypart-questions { padding: 40px 0px; }
    .bodypart-questions li { max-inline-size: 140ch; }
}

/* SERVICES */
.section_services p:hover { color: grey; }

/* ABOUT */
.section_about {
    justify-content: space-evenly;
    align-items: center;
    gap: 40px;
}

.section_about img {
    width: clamp(250px, 20vw, 20vw);
    border-radius: 20px;
}
.section_about video { width: clamp(300px, 30vw, 30vw); }
.section_about p { max-inline-size: 80ch; }

@media screen and (max-width: 750px) {
    .section_about > .media-box { flex-direction: column; }
    .section_about img { width: 300px; }
    .section_about video { width: 300px; }
}

/* FAQ */
.section_faq, .section_faq h2 {
    justify-content: space-between;
}

.section_faq h2 { text-align: center; }

.section_faq p {
    margin: 0;
    line-height: 2.5;
}

.faq_question { cursor: pointer; }
.faq_answer { display: none; }

.contracted::before { content: "⮞ "; }
.expanded::before { content: "⮟ "; }

/* FOOTER */
.section_footer {   
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    
    background-color: var(--color-dark-background);
    color: white;
}

.section_footer_small-logos, .section_footer_main-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_footer_small-logos { gap: 40px; }
.section_footer_main-logo { flex-direction: column; }
.section_footer_empty { width: 20vw; }

.section_footer_small-logos img { height: 60px; }
.section_footer_main-logo img { height: 70px; }

@media screen and (max-width: 1020px) {
    .section_footer { flex-direction: column-reverse; }
}

/* NDIS */
.section_ndis_services li, .section_ndis_coordinators li {
    line-height: 1.5;
}

.section_ndis_services p, .section_ndis_coordinators p {
    line-height: 1.5;
}

.section_ndis_services img {
    width: 400px;
    border-radius: 20px;
}

.ndis-image-spacer {
    display: flex;
    width: 400px;
}

.ndis-pics {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* ONLINE TRAINING */
.section_online p { line-height: 1.5; }

.section_online li {
    line-height: 2.5;
    list-style: disc;
}

.section_online {
    display: flex;
    align-items: center;
}

.section_online .media-box { gap: 30px; }

.section_online img { width: 250px; }

.section_online .bigger { width: 450px; }

.more-space {
    display: flex;
    height: 75px;
}

.section_online .more-gap { gap: 100px; }