﻿:root {
    --rotateStart: -4deg;
    --rotateEnd: 6deg;
}

body {
    font-family: "Comme", sans-serif;

}

header {
    padding: 0 !important;
    position: fixed;
    z-index: 100;
    width: 100%;
    top: 0;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
}

header nav li {
    padding: 0.4rem !important;
}

header nav .top-right-menu {
    font-variant: all-small-caps;
    font-size: 120%;
}

/* MANU STYLING - START */
#menu-btn {
    position: absolute;
    top: -100%;
    left: -100%;
}

.menu-icon {
    visibility: hidden;
}

@media screen and (max-width: 768px) {
    header nav .top-right-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease-out;
        background-color: rgba(255, 255, 255, 0.9);
    }

    header nav .top-right-menu li {
        text-align: center;
        width: 100%;
        border-bottom: 1px solid rgba(210, 210, 210, 0.85);
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    header nav .top-right-menu li a {
        display: inline-block;
        font-size: 1.75rem;
        padding: 2rem 0;
        height: 100%;
        width: 100%;
    }

    .navicon {
        background: var(--pico-color-azure-850);
        display: block;
        height: 2px;
        width: 24px;
        position: relative;
    }

    .navicon:before {
        top: 7px;
    }

    .navicon:after {
        top: -7px;
    }

    .navicon:before, .navicon:after {
        background: var(--pico-color-azure-850);
        display: block;
        width: 100%;
        height: 100%;
        content: '';
        position: absolute;
        transition: all .2s ease-out;
    }

    .menu-icon {
        cursor: pointer;
        display: flex;
        padding: 2.35rem 20px 30px 20px;
        position: relative;
        user-select: none;
        visibility: visible;
    }

    .menu-btn:checked ~ .top-right-menu {
        max-height: 700px;
    }

    .menu-btn:checked ~ .menu-icon .navicon {
        background: transparent;
    }

    .menu-btn:checked ~ .menu-icon .navicon:before {
        transform: rotate(-45deg);
    }

    .menu-btn:checked ~ .menu-icon .navicon:after {
        transform: rotate(45deg);
    }

    .menu-btn:checked ~ .menu-icon .navicon:before,
    .menu-btn:checked ~ .menu-icon .navicon:after {
        top: 0;
    }

}
/* MENU STYLING - END */

h2, h3, h4 {
    font-family: "Oranienbaum", serif;
}

h2 {
    font-size: 3.25rem;
}

h2::before {
    display: inline-block;
    content: "";
    border-top: .2rem solid var(--pico-color-azure-850);
    width: 3.35rem;
    margin-right: 1.25rem;
    transform: translateY(-1rem);
}

.logo-img {
    height: 95px;
}

.logo-text {
    font-size: 1.45rem;
    font-family: "Montserrat", sans-serif;
}

.hero-section {
    background-color: var(--pico-color-slate-50);
    min-height: 600px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: 111px;
}

.hero-text .container > div {
    width: 50%;
}

@media screen and (max-width: 768px) {

    .hero-section {
        margin-top: 83px;
    }

    h2 {
        font-size: 2.75rem;
    }

    h2::before {
        content: "";
        border-top: .2rem solid var(--pico-color-azure-850);
        width: 2.55rem;
        margin-right: 1rem;
        transform: translateY(-1rem);
    }

    .logo-img {
        height: 70px;
    }

    .logo-text {
        font-size: 1.25rem;
        font-family: "Montserrat", sans-serif;
    }

    .hero-section {
        min-height: 350px;
    }

    .hero-text .container > div {
        width: 100%!important;
    }
}

@media screen and (max-width: 1280px) {
    .hero-text .container > div {
        width: 75%;
    }
}


.hero-section .image-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url("../img/hero-bg-5.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 80%;
    z-index: 1;
    opacity: 0.75;
    box-shadow: inset -1px -4px 4px rgba(0, 0, 0, 0.05);
}

.hero-section .text-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.hero-section .text-overlay .welcome-text {
    font-family: "Oranienbaum", serif;
    padding-top: 4.25rem;
    padding-bottom: 1.5rem;
}

.hero-section .text-overlay .welcome-text .therapist-name {
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    border-bottom: 1px solid var(--pico-color-azure-900);
}

.hero-section .text-overlay .welcome-text .therapist-name .divider {
    flex: 1;
    height: 1.5rem;
    border-bottom: 1px solid var(--pico-color-azure-700);
}

.hero-section .text-overlay .welcome-text .therapist-name .label {
    padding: 0.5rem 1rem;
}

.hero-section .text-overlay .welcome-text .quote {
    line-height: 4rem;
    font-size: 3.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--pico-color-azure-650);
}

@media screen and (max-width: 768px) {

    .hero-section .text-overlay .welcome-text {
        padding-top: 2rem;
    }

    .hero-section .text-overlay .welcome-text .quote {
        line-height: 3rem;
        font-size: 2.25rem;
        padding-bottom: 0.75rem;
    }
}

.main-description-section {
    padding-bottom: 1rem;
}

.main-description-columns {
    padding-top: 2rem;
}

.offer-section {
    color: #fff;
    padding: 2rem 0 10rem;
    background-color: var(--pico-color-azure-650);
}

.contact-section {
    padding: 2rem 0;
}

.offer-section h2 {
    color: #fff;
}

.offer-section h2::before {
    border-top-color: white;
}

.offer-section h3 {
    text-align: center;
}

.offer-section .details {
    padding-top: 2rem;
    margin-bottom: 1.5rem;
}

.offer-section .details > div {
    padding: 1rem;
}

.offer-section .details article {
    height: 100%;
}

.offer-section .pricing-disclaimer {
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
}

.contact-card {
    font-size: 1.25rem;
    border-radius: 0.25rem;
    background-color: #fff;
    margin-top: -11rem;
    padding: 1rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    min-height: 400px;
    text-align: center;
}

.contact-card .material-symbols-outlined {
    font-size: 1.75rem;
    position: relative;
    top: 0.35rem;
}

.contact-card .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer {
    background-color: #eee;
    text-align: center;
    font-size: 0.75rem;
}

.stack {
    position: relative;
    width: 79%;
    height: 720px;
    margin: 40px auto;
}

@media screen and (max-width: 768px) {
    .stack {
        display: none !important;
    }
}

@media screen and (max-width: 1536px) {
    .stack { height: 620px; }
}

@media screen and (max-width: 1280px) {
    .stack { height: 500px; }
}

@media screen and (max-width: 1024px) {
    .stack { height: 400px; }
}

.stack .card {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
    animation: stackRotate 1000ms ease-out 1 forwards, zoomIn 1s ease forwards;
    transform-origin: 50% 50%;
}

.stack .card:nth-child(1) {
    --rotateEnd: -5deg;
    background: var(--pico-color-azure-50);
}

.stack .card:nth-child(2) {
    --rotateEnd: -2deg;
    background: #eee;
}

.stack .card:nth-child(3) {
    display: flex;
    align-items: center;
    justify-content: center;
    --rotateEnd: 0.75deg;
    background: #fff;
}

.stack .card:nth-child(3) img {
    width: 95%;
    height: 96%;
    border-radius: 0.5rem;
    outline: 1px solid rgb(0, 0, 0, 0.5);
}

.photo-small {
    display: none;
}

@media screen and (max-width: 768px) {
    .photo-small {
        float: right;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.25rem;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
        border-radius: 6px;
        margin-left: 0.75rem;
    }

    .photo-small img {
        height: 270px;
        border-radius: 5px;
    }
}

@media screen and (max-width: 410px) {
    .photo-small img {
        height: 175px;
    }

    a[role="button"] {
        display: none;
    }
}

@keyframes stackRotate {
    from {
        transform: rotate(var(--rotateStart));
    }
    to {
        transform: rotate(var(--rotateEnd));
    }
}

@keyframes zoomIn {
    0% {
        scale: 85%;
    }
    100% {
        scale: 100%;
    }
}
