@import url(https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans&display=swap);

:root {
    --left: 40px;
    --bgcolour: #1F2937;
    /* --bgcolour: #1b2f4e; */
    /* --bgcolour: #003277; */
    /* --bgcolour: #01396d; */
    --altbcolour: #e1ebfa;
    --linkColours: #1F2937;
    --white: #f9faf8;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Plus Jakarta Sans", "Fredoka", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

body {
    min-height: 100vh;
}

/* SECTION ONE
.section-one {
    border: 1px solid red;
    display: flex;
    flex-direction: column;
    background-color: #1F2937;
    color: #f9faf8;
}

.section-one .container {
    border: 1px solid purple;
    display: flex;
    flex-flow: column;
    gap: 50px;
    margin-bottom: 7%;
}

a {
    text-decoration: none;
}

HEADER
header {
    border: 1px solid yellow;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

header>h1 {
    display: block;
    padding: 20px 25px;
    margin: 0;
    padding: 0;
}

header>h1>a {
    border: 1px solid red;
    color: #f9faf8;
    font-size: 24px;
    cursor: pointer;
}

header>ul {
    border: 1px solid red;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    position: sticky;
    top: 0;
}

header>ul>li {
    display: inline-block;
    position: relative;
    height: 100%;
}

header>ul,
header>ul>li>a {
    display: block;
    padding: 20px 25px;
    text-decoration: none;
    text-align: center;
}

header>ul>li>a {
    border: 1px solid red;
    color: #f9faf8;
    cursor: pointer;
}

header>ul>li>ul.dropdown>li>a {
    color: #f9faf8;
    cursor: pointer;
}

header>ul>li>ul.dropdown>li {
    display: block;
}

.dropdown {
    background-color: #1F2937;
    border: 1px solid red;
    width: 100%;
    visibility: hidden;
    display: none;
    position: absolute;
    z-index: 999;
}

.visible {
    visibility: visible;
    display: block;
}

HERO
.hero {
    border: 1px solid green;
    width: 80%;
    height: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 5px;
    flex: 1;
}

.hero-text {
    border: 1px solid pink;
    display: flex;
    flex-flow: column;
    gap: 15px;
}

.hero-text .main-text {
    border: 1px solid yellow;
    margin: 0;
    font-size: 48px;
    font-weight: bold;
    color: #f9faf8;
    text-align: center;
}

.hero-text .secondary-text {
    text-align: center;
    border: 1px solid purple;
    margin: 0;
    font-size: 18px;
    color: #e5e7eb;
}

.hero-text .btn {
    height: 35px;
    width: 150px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: medium;
    font-weight: 600;
    border-radius: 5px;
    color: #f9faf8;
    background-color: #3882f6;
    border: none;
    cursor: pointer;
    margin: 0 auto;
}

.hero-text .btn:hover {
    color: #1f2937;
    background-color: white;
} */

/* SECTION ONE */
.section-one {
    /* border: 6px solid red; */
    display: flex;
    flex-direction: column;
    color: #f9faf8;
    /* gap: 50px; */
    /* margin-bottom: 7%; */
    height: 25em;
}

a {
    text-decoration: none;
    color: #1F2937;
}

a:visited {
    color: #1F2937;
}

/* HEADER */
header {
    /* border: 3px solid yellow; */
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header>h1 {
    display: block;
    padding: 20px 25px;
    margin: 0;
    padding: 0;
    font-size: 35px;
}

header>h1>a {
    /* border: 1px solid red; */
    /* color: #f9faf8; */
    cursor: pointer;
}

header>ul {
    /* border: 1px solid red; */
    list-style: none;
    margin: 0;
    padding: 0;
    /* display: inline; */
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

header>ul>li {
    display: inline-block;
    position: relative;
    height: 100%;
}

header>ul,
header>ul>li>a {
    display: block;
    padding: 20px 25px;
    text-decoration: none;
    text-align: center;
}

header>ul>li>a {
    /* border: 1px solid black; */
    cursor: pointer;
}

header>ul>li>ul.dropdown>li>a {
    /* color: #f9faf8; */
    cursor: pointer;
    align-self: center;
    justify-self: center;
}

header>ul>li>ul.dropdown>li {
    text-align: center;
    display: block;
    width: auto;
    height: 40px;
    border-bottom: 1px solid black;
}

.dropdown {
    /* background-color: #1F2937; */
    border: 1px solid black;
    background-color: white;
    width: 100%;
    visibility: hidden;
    display: none;
    position: absolute;
    z-index: 999;
}

.visible {
    visibility: visible;
    display: block;
}

/* HERO */
.hero {
    /* border: 3px solid red; */
    /* background-color: #1F2937; */
    background-color: var(--bgcolour);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    /* height: 40em; */
    /* height: 500px; */
    /* margin: auto; */
    /* margin-top: 30px; */
    /* flex-flow: column wrap; */
    /* justify-content: space-around; */
    /* gap: 5px; */
    /* gap: 15px; */
}

.hero>.main-text {
    /* border: 1px solid yellow; */
    margin: 0;
    font-size: 80px;
    font-weight: bold;
    color: #f9faf8;
    text-align: center;
    align-self: center;
    justify-self: center;
}

.hero>.secondary-text {
    width: 80%;
    text-align: center;
}

.hero>.btn {
    margin-top: 20px;
    padding: 20px;
    border-radius: 50px;
    font-size: 20px;
    color: black;
    background-color: white;
    /* border: 1px solid red; */
}


/* SECTION TWO */
.section-two {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-bottom: 50px;
}

.section-two>.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-top: 30px;
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #1f2937;
    font-size: 36px;
    font-weight: bolder;
    padding: 30px;
}

.section-two>.container>p {
    text-align: left;
    width: 80%;
    padding: 10px;
}

.section-two p {
    text-align: center;
    margin: 0;
    padding: 3%;
}


/* SECTION THREE */
.section-three {
    padding: 40px;
    background-color: #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1;
}

.quote-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-section p {
    font-size: 36px;
    font-style: italic;
    color: #1f2937;
}

.speaker {
    display: flex;
    align-self: flex-end;
}

.speaker p {
    font-size: large;
    font-weight: 700;
}

/* SECTION FOUR */
.section-four {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-bottom: 50px;
}

.section-four>.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-top: 30px;
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #1f2937;
    font-size: 36px;
    font-weight: bolder;
    padding: 30px;
}

.section-four>.container>p {
    text-align: left;
    width: 80%;
    padding: 10px;
}

.section-four p {
    text-align: center;
    margin: 0;
    padding: 3%;
}


/* SECTION FIVE */
.section-five {
    /* border: 4px solid blueviolet; */
    display: flex;
    flex-direction: column;
    background-color: var(--altbcolour);
    padding-bottom: 40px;
}

.section-five>.section-header {
    flex: 1;
}

.section-five>.popular-treatments {
    /* border: 3px solid red; */
    display: flex;
    justify-content: space-evenly;
    flex: 2;
}

.section-five>.popular-treatments>div {
    /* border: 3px solid green; */
    /* background-color: #1F2937; */
    background-color: var(--bgcolour);
    color: #e5e7eb;
    text-align: center;
    width: 30%;
    height: 550px;
}

.section-five>.popular-treatments>div>div>p:first-child {
    padding-top: 20px;
    font-size: 25px;
    font-weight: 700;
}

.section-five>.popular-treatments>div>div>p:nth-child(2) {
    padding-top: 20px;
    padding-bottom: 40px;
    font-size: 15px;
}

.section-five>.popular-treatments>div>div>a {
    background-color: var(--white);
    color: var(--linkColours);
    padding: 10px;
    border-radius: 5px;
}

.section-five>.popular-treatments>div>img {
    width: 100%;
    height: 50%;
}

/* .popular-treatments {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-bottom: 5%;
    flex: 1;
} */

/* .treatment-one,
.treatment-two,
.treatment-three {
    
} */


/* FOOTER */
.footer {
    background-color: #1F2937;
    color: #f9faf8;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-bottom: auto;
}