html,
body {
    font-family: Arial, sans-serif;
    background-color: #fffaf0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}


.navbar {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    height: 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: "DM Sans", sans-serif;
}

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.nav-right img {
    width: 100%;
    max-width: 40px;
    height: 30px;
    object-fit: contain;
    display: block;
    cursor: pointer;
}

.hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    margin-top: 10px;
    color: #F5F5F5;
    text-align: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: black;
    font-family: "DM Sans", sans-serif;
    font-size: 1.1rem;
}

.phone-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: black;
    font-family: "DM Sans", sans-serif;
    font-size: 1.1rem;
    margin-right: 20px;
}

.phone-logo-link img {
    width: 20px;
}

.logo-link:hover {
    color: #B46C53;
}

.logo-text {
    font-weight: 500;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 100%;
    max-width: 60px;
    object-fit: cover;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    flex: 1;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.nav-links li a:hover {
    color: #B46C53;
}

.book-now-navbar a {
    display: inline-block;
    justify-content: left;
    padding: 8px 16px;
    border: 1px solid #B46C53;
    border-radius: 999px;
    background: #B46C53;
    color: #fff !important;
    text-decoration: none;
}

.nav-links li:last-child {
    margin-left: auto;
    margin-right: 10px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    background-color: white;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: black;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
}

.dropdown-menu li a:hover {
    background-color: #B46C53;
    color: black;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.hero {
    position: relative;
    background-image: url('images/esthetician.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    max-width: 100vw;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 200px;
    font-size: 3rem;
    overflow: hidden;

}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));

}

.hero-content {
    margin-top: 40px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: lighter;
}

.hero-content h1 {
    margin-bottom: 5px;
}

.hero-content p {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-weight: bolder;
}

.hero button {
    padding: 15px 40px;
    font-size: 1rem;
    font-family: "DM Sans", sans-serif;
    background-color: black;
    color: #F5F5F5;
    border-radius: 40px;
}

.hero button:hover {
    background-color: #333;
}

header {
    background-color: #fffaf0;
    color: black;
    text-align: center;
}

.about-section {
    text-align: left;
    margin-left: 80px;
}


.about-me-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: left;
    font-family: "DM Sans", sans-serif;
    margin-left: 80px;
}

.about-me-content {
    display: flex;
    text-align: left;
    font-family: "DM Sans", sans-serif;
    margin-left: 80px;

}

.julie-content {
    display: flex;
    margin-left: 80px;
}

.seth-content {
    display: flex;
}

.seth-text {
    text-align: left;
    margin-left: 80px;
    line-height: 1.5;
    font-size: 1.3rem;
    margin-right: 50px;
    font-family: "DM Sans", sans-serif;

}

.seth-text a {
    text-decoration: none;
}


.seth-text h1 {
    font-family: 'Playfair Display', serif;

}

.seth-img-container {
    margin-right: 300px;
    margin-top: 40px;
}

.seth-img-container img {
    width: 350px;
}

.about-me {
    background-color: #F5F5F5;
    padding-top: 30px;
    padding-bottom: 40px;
}

.about-me-img {
    max-width: 300px;
}

.meet-the-team {
    background-color: #fffaf0;
    padding-top: 30px;
    padding-bottom: 60px;
}

.meet-the-team-img {
    max-width: 300px;
}

.meet-the-team-video {
    width: 300px;
    max-width: 100%;
}

.meet-the-team-text {
    text-align: left;
    margin-left: 60px;
    margin-right: 300px;
    line-height: 1.5;
    font-size: 1.3rem;
    padding-right: 60px;
    font-family: "DM Sans", sans-serif;

}

.meet-the-team-text h1 {
    font-family: 'Playfair Display', serif;
}

.payment-plans h1 {
    margin-top: 120px;
    font-size: 3rem;
    margin-bottom: 5px;
    margin-left: 60px;
    padding-bottom: 10px;
}

.payment-plans {
    background-color: #F5F5F5;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-left: 40px;
    padding-right: 40px;
    min-height: 400px;

}


.payment-plans p {
    margin-left: 60px;
    text-align: left;
    max-width: 600px;
    line-height: 1.5;
    font-family: "DM Sans", sans-serif;
}

.patientfi-info {
    margin-top: 60px;
}

.patientfi-info a {
    text-decoration: none;
}

.patientfi-info img {
    width: 300px;
    max-width: 100%;
    margin-left: 40px;
}

.patientfi-info button {
    margin-left: 60px;
}

.cherry-info {
    margin-top: 100px;
    margin-left: auto;

}

.cherry-info p {
    margin-top: 60px;
    text-align: left;
}

.cherry-info img {
    width: 300px;
    max-width: 100%;
    margin-right: 300px;
}

.about-me-subtitle {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: lighter;
    text-align: center;
}

.about-me-img-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-me-text {
    text-align: left;
    margin-left: 60px;
    margin-right: 300px;
}

.about-me-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.about-me-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
}

.about-me-subtitle {
    font-family: 'Playfair Display', serif;
}

.how-it-works {
    font-family: "DM Sans", sans-serif;
    margin-left: 80px;
    padding-bottom: 60px;
}

.how-it-works-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: left;
    margin-top: 120px;
    margin-left: 80px;
}

.step {
    margin-right: 60px;
    line-height: 1.8;
}

.step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5px;
}

.step img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.steps-container {
    display: flex;
}

.services {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    padding: 10px 20px;
    background-color: #fffaf0;
}

.services-section {
    padding-top: 30px;
    padding-bottom: 80px;
    background-color: #fffaf0;
}

.services-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: left;
    font-family: "DM Sans", sans-serif;
    margin-left: 80px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-img {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    /* always square */
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-text {
    margin-top: 15px;
    margin-right: auto;
    margin-left: 20px;
}

.service-text h3 {
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: bolder;
    font-size: 1.5rem;
    text-align: left;
}

.service-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: "DM Sans", sans-serif;
    text-align: left;
}

.service-header {
    display: flex;
    text-align: left;
    gap: 20px;
    font-family: 'Playfair Display', serif;
}

.service-header p {
    margin-top: auto;
}

.learn-more-button {
    background-color: transparent;
    border: solid black;
    border-width: 1px;
    border-radius: 40px;
    font-size: 1rem;
    padding: 5px 10px;
    display: flex;
}

.learn-more-button:hover {
    background-color: black;
    color: #F5F5F5;
}

.service-video {
    position: relative;
    overflow: hidden;
    width: 400px;
    height: 40vw;
    margin-top: 60px;
    margin-right: 30px;
    margin-left: 30px;
}

.service-video iframe {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.info {
    background-color: #D9A384;
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    padding-top: 20px;
    font-family: "DM Sans", sans-serif;
    padding-bottom: 40px;
}

.info-left {
    padding-left: 80px;
}

.info-right {
    margin-left: auto;
    margin-right: auto;
}

.hours {
    margin-left: auto;
    margin-right: auto;
}

a {
    color: black;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    margin-bottom: 16px;
}

.hours-row span:first-child {
    text-align: left;
}

.hours-row span:last-child {
    text-align: right;
}

@keyframes fadeSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-slide {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.5s, transform 0.5s;
}

.animate-fade-slide.visible {
    animation: fadeSlideDown 1s ease-out forwards;
}

.service-information {
    display: flex;
    text-align: left;
    margin-left: 80px;
    padding-top: 60px;
}

.service-info-text {
    text-align: left;
    font-family: "DM Sans", sans-serif;
    line-height: 1.7;
    padding-bottom: 80px;
}

.service-info-text h1 {
    font-size: 3rem;
    margin-bottom: 5px;
    line-height: 1.2;
}

.right-info {
    background-color: #F5F5F5;
    margin-left: 40px;
    padding-bottom: 40px;
}

.dysport-img {
    width: auto;
    height: 25vw;
    margin-top: 60px;
    margin-right: 80px;
    margin-left: 60px;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #B46C53;
}

.before-and-after-text {
    font-family: "DM Sans", sans-serif;
    padding-top: 60px;
    margin-left: 80px;
}

.before-and-after-text h1 {
    font-size: 3rem;
}

.before-and-after-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.faq {
    padding-bottom: 40px;
}

.faq-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
}

.faq-title {
    font-family: "DM Sans", sans-serif;
    padding-top: 60px;
    margin-left: 80px;
    font-size: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto;
    font-family: 'DM Sans', sans-serif;
}

.faq-item {
    border-bottom: 1px solid black;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 15px 0;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    font-weight: 500;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}

.faq-answer-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.faq-answer-container p {
    font-size: 1.2rem;
    line-height: 1.5;
}


.faq-answer-container>p,
.faq-answer-container>div:not(.faq-video) {
    flex: 1 1 auto;
}

.faq-video {
    flex: 0 0 250px;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
}

.vimeo-lite {
    background: #f3f3f3;
    position: relative;
}

.faq-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
    margin: 0;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto;
}

/* stack on mobile */
@media (max-width: 768px) {
    .faq-answer-container {
        flex-direction: column;
    }

    .faq-video {
        width: 100%;
        aspect-ratio: 9/16;
    }
}



/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .burger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        margin-left: 10px;
    }

    .burger .bar {
        width: 25px;
        height: 3px;
        background-color: black;
        transition: 0.3s;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 10px;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
        margin-left: auto;
        margin-right: 0;
    }

    .logo-link,
    .phone-logo-link {
        font-size: 1rem;
    }

    .hero {
        height: auto;
        padding: 100px 20px 60px;
        flex-direction: column;
        text-align: center;
        background-size: cover;
        background-position: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        font-weight: lighter;
    }

    .hero button {
        font-size: 1rem;
        padding: 10px 25px;
    }

    .services {
        grid-template-columns: 1fr;
        /* Stack services vertically */
    }

    .service-text {
        margin-left: 0;
        text-align: center;
    }

    .service-text p {
        text-align: center;
    }
}

@keyframes fadeSlideLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-slide-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1s ease, transform 1s ease;
}

.animate-fade-slide-left.visible {
    animation: fadeSlideLeft 1.5s ease-out forwards;
}

.animate-fade-slide-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1s ease, transform 1s ease;
}

.animate-fade-slide-right.visible {
    animation: fadeSlideRight 1.5s ease-out forwards;
}

.video-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.grid-video {
    width: 250px;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-color: black;
}

.grid-video-square {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-color: black;
}

.before-and-after {
    margin-left: 80px;

}

/* Carousel container */
.video-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    overflow: hidden;
    margin-top: -200px;
}

/* Carousel wrapper */
.video-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video slide styles */
.video-slide {
    position: absolute;
    width: 300px;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Active (center) video */
.video-slide.active {
    transform: translateX(0);
    opacity: 1;
    z-index: 3;
}

/* Left preview video */
.video-slide.prev {
    transform: translateX(-200px) scale(0.8);
    opacity: 0.4;
    z-index: 1;
}

/* Right preview video */
.video-slide.next {
    transform: translateX(200px) scale(0.8);
    opacity: 0.4;
    z-index: 1;
}

/* Navigation buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #B46C53;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 150px;
}

.next-btn {
    right: 150px;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive design */
@media (max-width: 768px) {
    .video-carousel-container {
        height: 400px;
        margin: 0 20px;
    }

    .video-slide {
        width: 200px;
        height: 350px;
    }

    .video-slide.active {
        width: 250px;
        height: 400px;
    }

    .video-slide.prev,
    .video-slide.next {
        transform: translateX(0) scale(0.7);
    }

    .video-slide.prev {
        left: -100px;
    }

    .video-slide.next {
        right: -100px;
    }
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.video-slide {
    flex: 0 0 300px;
    margin: 0 10px;
}

.video-slide video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

#promo-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative;
    background: black;
    border-radius: 12px;
    padding: 10px;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.popup-content video {
    width: auto;
    height: 80vh;
    border-radius: 10px;
}

.close-popup {
    position: absolute;
    top: -10px;
    right: -10px;
    background: white;
    border: none;
    font-size: 1.8rem;
    font-weight: bold;
    color: black;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    z-index: 10;
}


/*
        
.video {
    flex: 0 0 100%;
    max-width: 100%;
    opacity: 0.5;
    transform: scale(0.85);
    transition: all 0.4s ease;
    border-radius: 10px;
    object-fit: cover;
    height: 500px;
}

.video.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
*/