
/* ---- Larger Screen CSS Properties ---- */



/* - DOM CSS Properties - */

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    background-color: #fffaf9;
    color: #d37f5a;
    font-family: sans-serif;
}

html body a {
    color: #d37f5a;
    text-decoration: none;
    cursor: pointer;
}

.container {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.container-stacked {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
}

.col {
    min-width: 0;
    flex: 1;
    padding: 10px;
}

.col-banner {
    min-width: 0;
    flex: 1;
    padding: 0;
}

.width-100 {
    width: 100%;
}

.width-62-small-screen-100 {
    width: 62%;
}

.hide {
    display: none;
}

.big-screen-hide {
    display: none;
}

.items-left {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.items-left-stacked {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.items-right {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
}

.items-right-stacked {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.items-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.items-center-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.items-flex-start-y {
    justify-content: flex-start;
}

.items-flex-start-x {
    align-items: flex-start;
}

.text-cursive {
    font-family: "Sacramento", cursive;
    font-weight: 400;
    font-style: normal;
}

.text-informal {
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: xx-large;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-title {
    font-size: 6rem;
}

.text-xxxl {
    font-size: 4rem;
}

.text-xxl {
    font-size: 3.4rem;
}

.text-xl {
    font-size: 2.8rem;
}

.text-l {
    font-size: 2.2rem;
}

.text-m {
    font-size: 1.6rem;
}

.text-s {
    font-size: 1rem;
}

.text-bold {
    font-weight: 700 !important;
}

.margin-top-s {
    margin-top: 20px;
}

.margin-top-shrink-xs {
    margin-top: -10px;
}

.margin-top-shrink-s {
    margin-top: -20px;
}

.margin-top-shrink-m {
    margin-top: -50px;
}

.margin-top-shrink-l {
    margin-top: -100px;
}

.margin-bottom-xxxs {
    margin-bottom: 1px;
}

.margin-bottom-xxs {
    margin-bottom: 6px;
}

.margin-bottom-xs {
    margin-bottom: 10px;
}

.margin-bottom-s {
    margin-bottom: 20px;
}

.margin-bottom-m {
    margin-bottom: 50px;
}

.margin-bottom-l {
    margin-bottom: 100px;
}



/* - Header CSS Properties - */

.header-banner-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: grey;
    color: black;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 6px 6px;
    display: block;
}

.header-menu-burger-button {
    position: fixed;
    z-index: 98;
    top: 50px;
    left: 50px;
    width: 80px;
    height: 80px;
    border-radius: 25px;
    background-color: #d37e5abe;
    cursor: pointer;
}

.header-menu-burger-button:hover {
    transition: 0.3s;
    background-color: #d37f5a;
}

.header-menu-burger-icon {
    margin-top: 12px;
    display: inline-block;
}

.header-menu-burger-icon .bar1,
.header-menu-burger-icon .bar2,
.header-menu-burger-icon .bar3 {
    width: 44px;
    height: 5px;
    background-color: #fffaf9;
    margin: 10px 18px;
    transition: 0.4s;
}

.header-menu-burger-button.transform .bar1 {
    transform: translate(0, 20px) rotate(-45deg);
}

.header-menu-burger-button.transform .bar2 {
    opacity: 0;
}

.header-menu-burger-button.transform .bar3 {
    transform: translate(0, -10px) rotate(45deg);
}

.header-menu {
    position: fixed;
    z-index: 100;
    top: 0;
    left: -160px;
    width: 160px;
    height: fit-content;
    border-radius: 0 0 50px 0;
    background-color: #d37e5abe;
    overflow-y: auto;
    font-size: 1.2rem;
}

.header-menu a {
    display: block;
    padding: 15px;
    color: #fffaf9;
    text-decoration: none;
}

.header-menu a:hover {
    background-color: #d37f5a;
}

.header-image-logo {
    display: block;
    max-width: 90%;
    max-height: 630px;
    height: auto;
    object-fit: contain;
}

.header-scroller {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.header-scroller-images {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transition: opacity 2s ease-in-out;
}

.header-scroller-images.header-scroller-image-active {
    opacity: 1;
}

.header-scroller-image-1 {
    background-image: url('../assets/images/header-auto-scroller/microneedling-image-1-resized.png');
}

.header-scroller-image-2 {
    background-image: url('../assets/images/header-auto-scroller/microneedling-image-2-resized.png');
}

.header-scroller-image-3 {
    background-image: url('../assets/images/header-auto-scroller/microneedling-image-3.png');
}

.header-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.6rem, 1.3vw, 4rem);
}

.header-content-row {
  display: flex;
  gap: clamp(0.8rem, 3vw, 6rem);
}

.header-content-row-social {
  justify-content: center;
  flex-wrap: nowrap;
}

.header-content-row-image {
    width: 4.2vw;
    height: auto;
    max-width: 80px;
    min-width: 42px;
}

.header-content-row-contact a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.5rem;
}

.header-content-row-contact p {
    margin: 0;
    font-size: clamp(1.75rem, 2.7vw, 3.5rem);
}

.header-sticky-content {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 20%;
    min-width: min-content;
    padding: 10px;
    white-space: nowrap;
    border-radius: 0px 0px 0px 25px;
    background-color: #d37e5abe;
    display: none;
}

.header-sticky-content .header-content-row-image {
    width: 3.2vw;
    height: auto;
    max-width: 75px;
    min-width: 40px;
}

.header-sticky-content .header-content-row-contact p {
    color: #fffaf9;
    font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.header-sticky-content-show {
    display: block;
}



/* - Footer CSS Properties - */

.footer-top-button {
    z-index: 101;
    position: fixed;
    bottom: 100px;
    right: 0;
    display: none;
    width: 55px;
    height: 55px;
    font-size: 30px;
    background-color: #d37e5abe;
    color: #fffaf9;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    border-top-left-radius: 20px;
}

.footer-top-button:hover {
    background-color: #d37f5a;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    background-color: #d37e5abe;
    color: #fffaf9;
    font-size: 0.8rem;
    line-height: 1.1;
    display: flex;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.footer p {
    padding: 0;
    margin: 0;
}

.footer a {
    color: #fffaf9;
    text-decoration: underline;
}

.footer-space-top {
    padding-top: 140px;
}



/* - General CSS Properties - */

.image-banner {
    width: 100%;
    height: auto;
}

.image {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.emoji-size-image {
    width: 22px;
    height: auto;
}

.rounded-box {
    border-radius: 25px;
    border: 2px solid #d37f5a;
    padding: 12px;
    width: fit-content;
    word-break: break-word;
}

.section-wave {
    --bg: #fffaf9;
    --wave: #d37f5a;
    --wave-h: 190px;
    position: relative;
    background: var(--bg);
    overflow: hidden;
    padding-bottom: calc(var(--wave-h) * 0.45);
}

.section-wave::before {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: var(--wave-h);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 220' preserveAspectRatio='none'><defs><filter id='b' x='-20%' y='-50%' width='140%' height='200%'><feGaussianBlur stdDeviation='7'/></filter></defs><path d='M0,40 C200,110 400,0 600,80 C800,150 1000,60 1200,100' fill='none' stroke='%23fffaf9' stroke-width='28' filter='url(%23b)' stroke-linecap='round'/></svg>");
}

.section-wave::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: var(--wave-h);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 220' preserveAspectRatio='none'><path d='M0,40 C200,110 400,0 600,80 C800,150 1000,60 1200,100 L1200,220 L0,220 Z' fill='%23d37f5a'/></svg>");
}






/* ---- Smaller Screen CSS Properties ---- */

@media (max-width: 849px) {



    /* - DOM CSS Properties - */

    .container {
        flex-direction: column;
    }

    .width-62-small-screen-100 {
        width: 100%;
    }

    .small-screen-hide {
        display: none;
    }

    .big-screen-hide {
        display: block;
    }



    /* - Header CSS Properties - */

    .header-image-logo {
        margin: auto;
        width: auto;
        height: auto;
        max-width: auto;
        max-height: 850px;
    }

    .header-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: clamp(1.5rem, 4vw, 2rem);
    }

    .header-content-row {
        display: flex;
        gap: clamp(0.5rem, 13vw, 8rem);
    }

    .header-content-row-image {
        width: 9vw;
        max-width: 100px;
        min-width: 55px;
    }

    .header-content-row-contact a {
        align-items: center;
        text-align: center;
    }

    .header-content-row-contact p {
        font-size: clamp(2rem, 6vw, 3rem);
    }
}
