/* google font link */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Rufina:wght@400;700&display=swap');

/* presets */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    /* border: 1px solid #614545; */
}


/* header section */
.header {
    padding: 20px 100px;
    position: fixed;
    width: 100%;
    background: transparent;
    transition: all .3s ease;
    box-shadow: none;
    z-index: 999;
}
.header.sticky {
    padding-top: 16px;
    padding-bottom: 16px;
    background: white;
    box-shadow: 0 0 10px 4px #00000013;
}
/* logo */
.header .logo {
    font-size: 26px;
    font-weight: 600;
    color: var(--color-white);
    font-family: 'Rufina', sans-serif;
    letter-spacing: 2px;
}
.header.sticky .logo {
    color: var(--color-primary);
}
/* nav */
.header .nav {
    gap: 40px;
}
.header .nav a {
    color: var(--color-white);
    transition: all .1s ease;
}
.header.sticky .nav a {
    color: var(--color-black);
}
.header .nav a:hover,
.header.sticky .nav a:hover {
    color: var(--color-primary);
}
.header .menu-icon {
    display: none;
    font-size: 24px;
    color: var(--color-white);
}
.header .menu-dropdown {
    display: none;
}

/* hero section */
.hero {
    width: 100%;
    background: url();
}
.hero .text {
    text-align: center;
}
.hero .text h1 {
    font-size: 70px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-white);
    font-family: 'Playfair', sans-serif;
}
.hero .text p:nth-of-type(1) {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--color-white);
    font-family: 'Lato', sans-serif;
    letter-spacing: 4px;
}
.hero .text p:nth-of-type(2) {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--color-white);
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
}
.hero .text button  {
    width: 200px;
    border: none;
    color: var(--color-white);
    background: linear-gradient(135deg, #8c47d1, #b069d3);
    padding: 18px;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    transition: all .3s ease;
}
.hero .text button:hover {
    cursor: pointer;
    opacity: 0.9;
}

/* about section */
.about {
    width: 100%;
    background: var(--color-white);
}
.about .content {
    gap: 50px;
    margin-top: 30px;
    margin-bottom: 100px;
}
.about .content .image {
    width: 38%;
    border-radius: 50px;
    overflow: hidden;
    height: 500px;
}
.about .content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about .content .text {
    width: 60%;
    font-size: 18px;
    font-weight: 300;
    color: var(--color-black);
    font-family: 'Rufina', sans-serif;
    line-height: 26px;
}
.swipe-display {
    text-align: center;
    padding: 50px 0;
    font-size: 44px;
    font-family: 'Playfair', sans-serif;
    font-weight: 400;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: #80008021;
    color: var(--color-black);
    letter-spacing: 20px;
}
/* The moving text */
.swiper-text {
    display: inline-block;
    padding-left: 0%; /* start off screen */
    animation: slide 30s linear infinite;
}

/* Animation */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* services section */
.services {
    width: 100%;
    background: var(--color-white);
}
.services .brief {
    gap: 7%;
    margin-top: 30px;
    margin-bottom: 50px;
}
.services .brief .text {
    width: 30%;
    font-size: 44px;
    text-align: right;
    font-weight: 400;
    font-family: 'Rufina', sans-serif;
    color: var(--color-black);
    line-height: 58px;
}
.services .brief .text::before {
    content: "“";
    position: absolute;
    top: 5px;
    left: 40px;
    font-size: 100px;
    color: var(--color-primary);
}
.services .brief .text::after {
    content: "”";
    position: absolute;
    bottom: -50px;
    right: -40px;
    font-size: 100px;
    color: var(--color-primary);
}
.services .brief .image {
    width: 60%;
    overflow: hidden;
    border-radius: 20px;
    height: 450px;
}
.services .brief .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services .explore {
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    font-family: 'Rufina', sans-serif;
    color: var(--color-black);
    line-height: 58px;
    margin-bottom: 30px;
}
.services .explore-hint {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Rufina', sans-serif;
    color: var(--color-black);
    line-height: 20px;
    margin-bottom: 30px;
}
.services .services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.services .services-grid .service-card {
    width: 100%;
    border-bottom: 1px solid #e7e1da;
    background: transparent;
    border-radius: 10px;
    padding: 30px 40px 20px;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: -2px 2px 2px 2px #80008016;
}
.services .services-grid .service-card:hover {
    transform: scale(1.01);
}
.services .services-grid .service-card .service-name {
    gap: 0px;
    margin-bottom: 20px;
}
.services .services-grid .service-card .service-name img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}
.services .services-grid .service-card .service-name p {
    font-size: 20px;
    color: var(--color-black);
    font-family: 'Playfair', sans-serif;
    font-weight: 500;
    transition: all .3s ease;
}
.services .services-grid .service-card .service-brief {
    font-size: 14px;
    color: var(--color-gray);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    min-height: 50px;
    max-height: fit-content;
}
.services .services-grid .service-card .detail {
    border-top: 1px solid #e7e1da;
    padding-top: 20px;
    padding-bottom: 20px;
}
.services .services-grid .service-card .detail .price {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-black);
}


/* gallery */
.gallery {
    width: 100%;
}
.gallery .gallery-grid {
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.gallery .gallery-grid .gallery-card {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    height: 450px;
    cursor: pointer;
}
.gallery .gallery-grid .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s ease;
}
.gallery .gallery-grid .gallery-card:hover img {
    transform: scale(1.2);
}

/* reviews */
.reviews {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 50px;
    border-bottom: 1px solid #00000013;
}
.reviews .swiper {
    width: calc(60vw - 200px);
    margin-top: 50px;
}
.reviews .review-slider {
    padding-top: 50px;
    display: flex;
    margin-left: -5px;
}
.reviews .review-slider .customer-reviews {
    min-width: calc(60vw - 200px);
    max-width: calc(60vw - 200px);
}
.reviews .review-slider .customer-reviews .message {
    font-size: 20px;
    color: var(--color-black);
    font-family: 'Playfair', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
}
.reviews .review-slider .customer-reviews .message::before {
    content: "“";
    position: absolute;
    top: -40px;
    left: -30px;
    font-size: 70px;
    color: var(--color-primary);
}
.reviews .review-slider .customer-reviews .message::after {
    content: "”";
    position: absolute;
    bottom: -60px;
    right: -20px;
    font-size: 70px;
    color: var(--color-primary);
}
.reviews .review-slider .customer-reviews .profile {
    gap: 10px;
    margin-left: 30px;
}
.reviews .review-slider .customer-reviews .profile .image {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 100%;
}
.reviews .review-slider .customer-reviews .profile .image img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.reviews .review-slider .customer-reviews .profile p {
    font-size: 18px;
    color: var(--color-dark);
    font-family: 'Lato', sans-serif;
    font-weight: 600;
}

/* booking */
.booking-form {
    max-width: 700px;
    margin: 20px auto 10px;
    padding: 40px 20px;
    text-align: center;
}
.booking .steps {
    max-width: 500px;
    margin: 0 auto 50px;
    font-size: 14px;
}
.booking .steps .step-item {
    width: 70px;
    height: 70px;
    border-radius: 100%;
}
.booking .steps .step-item .icon {
    width: 40px;
    height: 40px;
    background: #00000013;
    border-radius: 100%;
    margin: 0 auto;
    color: var(--color-black);
    line-height: 40px;
    margin-bottom: 10px;
    transition: all .3s ease;
}
.booking .steps .step-item.active .icon {
    background: var(--color-primary);
    color: var(--color-white);
}
/* .booking .steps .step-item.done .icon {
    color: var(--color-white);
    background: var(--color-primary);
    opacity: 0.5;
} */
.booking .steps .step-item span {
    opacity: 0.4;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    transition: all .3s ease;
}
.booking .steps .step-item.active span {
    color: var(--color-primary);
    opacity: 1;
}
/* .booking .steps .step-item.done span {
    color: var(--color-primary);
    opacity: 0.6;
} */
.booking .booking-form .step {
    display: none;
    border: 1px solid #80008030;
    border-radius: 20px;
    padding: 30px 30px 40px;
}
.booking .booking-form .step.active {
    display: block;
}
.booking .booking-form .step h2 {
    font-family: 'Playfair', sans-serif;
    font-size: 34px;
    margin-bottom: 20px;
}
.booking .booking-services {
    display: grid;
    gap: 10px;
}
.booking .booking-services .booking-service-card {
    padding: 15px;
    border: 2px solid #00000013;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s ease;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}
.booking .booking-services .booking-service-card.active {
    border-color: #800080;
    background: #800080c1;
    color: var(--color-white);
}
.booking .booking-form .step button {
    padding: 12px 20px;
    border: none;
    background: #800080;
    opacity: 1;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
}
/* .booking .booking-form .step button.active {
    cursor: pointer;
    opacity: 1;
} */
.booking .booking-form .step input,
.booking .booking-form .step select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: 'Playfair', sans-serif;
    font-size: 20px;

}
.booking .booking-form .step .nav {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.booking .booking-form .step .summary {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    border: 1px solid #00000013;
    border-radius: 10px;
}
.booking .booking-form .step .summary p {
    font-family: 'Playfair', sans-serif;
    margin-bottom: 10px;
    font-size: 20px;
}



/* location */
.location {
    width: 100%;
}
.location .wrap {
    gap: 50px;
    margin-top: 50px;
}
.location .wrap .text {
    width: 40%;
}
.location .wrap .text .state {
    font-size: 44px;
    font-weight: 400;
    font-family: 'Rufina', sans-serif;
    color: var(--color-black);
    line-height: 58px;
}
.location .wrap .text .studio-brief {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    color: var(--color-gray);
    margin-bottom: 20px;
}
.location .wrap .text .address {
    width: fit-content;
    border-bottom: 1px solid #00000013;
    padding: 10px 0;
    margin-bottom: 10px;
}
.location .wrap .text .address .icon {
    width: fit-content;
    font-size: 40px;
    color: var(--color-primary);
    margin-right: 10px;
}
.location .wrap .text .address .info p {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    color: var(--color-black);
}
.location .wrap .text .address .info a {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    color: var(--color-black);
}

.location .wrap .text .phone .icon {
    width: fit-content;
    font-size: 50px;
    color: var(--color-primary);
    margin-right: 10px;
}
.location .wrap .text .phone .info p {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    color: var(--color-black);
}
.location .wrap .text .phone .info a {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    color: var(--color-black);
}
.location .wrap .map {
    width: 60%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.location .wrap .map iframe {
  width: 100%;
  height: 500px;
  border: 0;
}


/* footer */
.footer {
    width: 100%;
    background: #202020;
    padding: 50px 100px;
    display: flex;
    justify-content: left;
    align-items: flex-start;
}
.footer .company-info {
    width: 40%;
    margin-bottom: 20px;
}
.footer .company-info .logo {
    font-size: 26px;
    font-weight: 500;
    color: var(--color-white);
    font-family: 'Rufina', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.footer .company-info .brief {
    width: 90%;
    font-size: 13px;
    font-weight: 300;
    color: var(--color-white);
    font-family: 'Lato', sans-serif;
    line-height: 24px;
}
.footer .quick-links,
.footer .services-links,
.footer .contact-links {
    width: 20%;
}
.footer .quick-links .heading,
.footer .services-links .heading,
.footer .contact-links .heading {
    font-size: 20px;
    font-family: 'Rufina', sans-serif;
    color: var(--color-white);
    margin-bottom: 10px;
}
.footer .quick-links a,
.footer .services-links a,
.footer .contact-links a{
    display: block;
    width: fit-content;
    font-size: 12px;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
    color: var(--color-white);
    margin-bottom: 10px;
    transition: all .3s ease;
    line-height: 20px;
}
.footer .quick-links a:hover,
.footer .services-links a:hover,
.footer .contact-links a:hover {
    color: #b069d3;
}
.footer .contact-links a i {
    font-size: 16px;
    line-height: 20px;
}

/* copyright */
.copyright {
    width: 100%;
    padding: 20px 100px;
    background: #191919;
    color: var(--color-white);
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    text-align: center;
}

/* Modal background */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

/* Full image */
.modal .modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

/* Close button */
.modal .close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* Hidden state */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

/* Visible state */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.overlay {
    display: none;
}