/* Reset styles */
body, h1, h2, h3, p, nav, a, ul, span, section, footer {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ff5a13;
    overflow-y: hidden;
    height: 100vh;
}

hr {
    border-color: #ff5a13;
    border-style: solid;
}

header {
    background: #FFFFFF;
}

section p a {
    color: #333;
    text-decoration: none;
}

section p a:hover {
    text-decoration: underline;
}

/* Custom Styles */
.snap-scroll-container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

.snap-scroll-section {
    scroll-snap-align: start;
    width: 100%;
    height: 100vh;
    margin-bottom: 10px;
}

.hero-header {
    background: #FFFFFF;
    color: #333;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-header-title-section {
    display:flex;
    height: 25%;
    margin-bottom: 10px;
}

.hero-header-title {
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    font-family: 'Raleway', sans-serif;
    color: #333;
    display: flex;
    height: 100%;
    width: 100%;
}

.hero-header-call-to-action-section {
    display:flex;
    flex-direction: column;
    align-items: start;
    text-align: center;
    justify-content: center;
    margin: 10px;
    height: auto;
    padding-left: 50px;
    padding-top: 75px;
    padding-bottom: 75px;
    width: 100%;
}

.hero-header-call-to-action {
    display:flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 100%;
    width: 100%
}

.hero-header-call-to-action-text {
    font-family: 'Source Sans Pro', sans-serif;
    margin-bottom: 10px;
}

.hero-button {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    font-family: 'Raleway', sans-serif;
    color: #333;
    border-width: 1px;
    border-radius: 6px;
    border-color: #ff5a13;
    border-style: solid;
    background-color: #FFFFFF;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.hero-button:hover {
    transform:scale(105%);
    transition-duration: 150ms;
    cursor: pointer;
}

.scroll-indicator {
    margin-top: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #333;
}

.scroll-indicator-text {
    font-family: 'Source Sans Pro', sans-serif;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 1px solid #333;
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px auto;
}

.scroll {
    width: 4px;
    height: 8px;
    background-color: #333;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: jiggle 1.2s infinite ease-in-out;
}

@keyframes jiggle {
    0%, 100% {
        transform: translate(-50%, 8px);
    }
    50% {
        transform: translate(-50%, 10px);
    }
}

.hero-header-rotating-text-section {
    display:flex;
    position: relative;
    white-space: nowrap;
    width: 100%;
    align-items: center;
    justify-items: center;
    height: 25%;
    margin-bottom: 20px;
}

.hero-header-rotating-text-section-item {
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    font-family: 'Raleway', sans-serif;
    color: #ff5a13;
    position: absolute;
    animation: rotateText 15s linear infinite;
    opacity: 0;
}

.hero-header-rotating-text-section-item:nth-child(1) {
    animation-delay: 0s;
}

.hero-header-rotating-text-section-item:nth-child(2) {
    animation-delay: 5s;
}

.hero-header-rotating-text-section-item:nth-child(3) {
    animation-delay: 10s;
}

@keyframes rotateText {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    5%, 25% {
        opacity: 1;
        transform: translateY(0);
    }
    30% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

.hero-header-summary-container {
    font-family: 'Source Sans Pro', sans-serif;
    height: 30%;
    text-align: start;
}

.hero-header-headshot-container {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.hero-header-headshot{
    border-radius: 6px;
    width: 75%;
    height: 75%;
}

.about-section-container {
    background: #363636;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-section-container-content {
    max-width: 800px;
}

.about-section-title {
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    font-family: 'Raleway', sans-serif;
    color: #FFFFFF;
    display: flex;
    height: 100%;
    width: 100%;
}

.about-section-text {
    font-family: 'Source Sans Pro', sans-serif;
    text-align: start;
}

.services-section-container {
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-section-container-content {
    max-width: 800px;
}

.services-section-title {
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    font-family: 'Raleway', sans-serif;
    color: #333;
    display: flex;
    height: 100%;
    width: 100%;
}

.services-section-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    font-family: 'Raleway', sans-serif;
    color: #333;
}

.services-section-text {
    font-family: 'Source Sans Pro', sans-serif;
}

.services-separator {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 20px;
}

.ampersand-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ampersand-style {
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    color: #ff5a13;
}

.service-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.service-image {
    height: 100px;
    width: 100px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.testimonials-section-container {
    background: #363636;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-section-container-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    justify-content: center;
    justify-items: center;
}

.testimonials-carousel {
    padding:20px;
    display: flex;
    position: relative;
    white-space: nowrap;
    text-wrap: auto;
    width: 100%;
    align-items: center;
    justify-items: center;
    justify-content: center;
    min-height: 100px;
}

.testimonial {
    position: absolute;
    font-size: 1em;
    opacity: 0;
    animation: fade 40s infinite;
}

.testimonial:nth-child(1) {
    animation-delay: 0s;
}

.testimonial:nth-child(2) {
    animation-delay: 10s;
}

.testimonial:nth-child(3) {
    animation-delay: 20s;
}

.testimonial:nth-child(4) {
    animation-delay: 30s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.testimonial-title {
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    font-family: 'Raleway', sans-serif;
    color: #FFFFFF;
}

.testimonial-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    font-family: 'Raleway', sans-serif;
    text-align: start;
    color: #FFFFFF;
}

.testimonial-text {
    font-family: 'Source Sans Pro', sans-serif;
    text-align: start;
    color: #FFFFFF;
}

.contact-section-container {
    background: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-section-headshot-container {
    display: flex;
    height: 100%;
    width: 50%;
    justify-content: center;
    align-items: center;
}

.contact-section-headshot{
    border-radius: 6px;
    width: 75%;
    height: 75%;
}

.contact-details-section {
    display: flex;
    flex-direction: column;
    height: 75%;
    width: 50%;
}

.contact-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 30%;
}

.contact-section-title {
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    font-family: 'Raleway', sans-serif;
    color: #333;
}

.contact-section-text {
    font-family: 'Source Sans Pro', sans-serif;
}

.socials-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 20%;
}

.socials-section-title {
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    font-family: 'Raleway', sans-serif;
    color: #333;
}

.socials-section-icons-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.socials-icon:hover {
    transform:scale(105%);
    transition-duration: 150ms;
    cursor: pointer;
}

.clinics-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50%;
}

.clinics-section-title {
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    font-family: 'Raleway', sans-serif;
    color: #333;
}

.clinics-section-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.clinic {
    width: 50%;
    text-align: start;
    font-family: 'Source Sans Pro', sans-serif;
}

.footer-section {
    font-family: 'Source Sans Pro', sans-serif;
    text-align: center;
    justify-content: center;
    background: #363636;
    color: #fff;
    min-width: 100%;
    padding: 10px;
}

.footer-section p a {
    color: #fff;
    text-decoration: none;
}

.footer-section p a:hover {
    text-decoration: underline;
}