@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: 6px solid red; */
    display: flex;
    flex-direction: column;
    color: #f9faf8;
    /* gap: 50px; */
    /* margin-bottom: 7%; */
    height: 25em;
}

a {
    text-decoration: none;
    color: black;
}

a:visited {
    color: black;
}

/* 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;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    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;
}

/* SECTION TWO */
.section-two {
    /* border: 4px solid black; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-two>.section-header {
    /* border: 2px solid peru; */
    justify-content: center;
    color: #1f2937;
    font-size: 36px;
    font-weight: bolder;
    text-align: center;
    width: 100%;
    padding: 30px;
}

.section-two>.about-clinic {
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.section-two>.about-clinic>p {
    /* border: 2px solid blue; */
    padding: 15px;
    width: 80%;
}

/* SECTION THREE */
.section-three {
    /* border: 4px solid black; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-three>.section-header {
    /* border: 2px solid peru; */
    justify-content: center;
    color: #1f2937;
    font-size: 36px;
    font-weight: bolder;
    text-align: center;
    width: 100%;
    padding: 30px;
}

.section-three>.podiatrist-bio {
    /* border: 2px solid blue; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    align-self: center;
}

.section-three>.podiatrist-bio>p {
    /* border: 2px solid red; */
    margin: auto;
    width: 70%;
    text-align: left;
}

.section-three>.podiatrist-bio>.image-container {
    /* border: 2px solid blue; */
    width: 30%;
}

.section-three>.podiatrist-bio>.image-container>img {
    height: 100%;
    width: 100%;
}


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