/********** Template CSS **********/

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
.why-icon {
    width: 100px;
    height: 100px;
    margin: 35px auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(163, 124, 69, 0.08);
    border: 1px solid rgba(163, 124, 69, 0.22);

    transition: all 0.4s ease;
}

.why-icon i {
    font-size: 42px;
    color: #A37C45;

    transition: all 0.4s ease;
}

.why-content {
    padding: 0 25px 35px;
}

.why-content h4 {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.why-content p:last-child {
    color: #777;
    line-height: 1.7;
}

.team-item:hover .why-icon {
    transform: translateY(-8px) scale(1.05);

    background: #A37C45;

    border-color: #A37C45;

    box-shadow:
        0 15px 35px rgba(163, 124, 69, 0.25);
}

.team-item:hover .why-icon i {
    color: #fff;
    transform: scale(1.1);
}

.team-item:hover .why-content h4 {
    color: #A37C45;
}

.text-primary {
    color: #A37C45 !important;
}

.team-item {
    background: #fff;
    border: 1px solid rgba(163, 124, 69, 0.10);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.team-item:hover {
    transform: translateY(-8px);

    border-color: rgba(163, 124, 69, 0.25);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.08);
}
/*** Fonts ***/
.font-work-sans {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/*** Button ***/
.btn {
    position: relative;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-dark,
.btn-primary {
    margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-primary::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-primary);
    border-right: 2px solid var(--bs-primary);
}

.btn-primary::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-primary);
    border-bottom: 2px solid var(--bs-primary);
}

.btn-dark::before,
.btn-dark::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-dark::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-dark);
    border-right: 2px solid var(--bs-dark);
}

.btn-dark::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-dark);
    border-bottom: 2px solid var(--bs-dark);
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 0;
    outline: none;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary)
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-primary {
    border-width: 2px;
    background: var(--bs-light);
}

.navbar .btn-primary:hover {
    background: var(--bs-primary);
}


/*** Hero Header ***/
.hero-header {
    background: url(../img/hero-bg.jpg) top left no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .hero-header .container {
        max-width: 100% !important;
    }

    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.header-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next{
    position: relative;
    margin-left: 2px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-dark);
    background: var(--bs-primary);
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
}

.page-header {
    background: url(../img/page-header.jpg) center center no-repeat;
    background-size: contain;
}


/*** Service ***/
@media (max-width: 768px) {
    .service .service-item {
        border: none !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    }
}

@media (min-width: 992px) {
    .service .service-item.border-lg-end {
        border-right: 1px solid #dee2e6;
    }

    .service .service-item.border-lg-end-0 {
        border-right: none !important;
    }

    .service .service-item.border-lg-bottom-0 {
        border-bottom: none !important;
    }
}

.service .service-item .btn-primary {
    border-width: 2px;
    background: var(--bs-white);
}

.service .service-item .btn-primary:hover {
    background: var(--bs-primary);
}

.service .service-item img {
    width: 70px;
    margin-bottom: 20px;
}


/*** Pricing ***/
.price .price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .05);
}


/*** Blog ***/
.blog .btn-dark {
    border-width: 2px;
    background: var(--bs-primary);
    color: var(--bs-dark);
}

.blog .btn-dark:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}


/*** Gallery ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery .gallery-item img {
    transition: .5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .7);
    transition: .5s;
    z-index: 1;
}

.gallery .gallery-item:hover .gallery-icon {
    width: 100%;
    height: 100%;
}

.gallery .gallery-icon .btn {
    opacity: 0;
    transition: .5s;
}

.gallery .gallery-item:hover .gallery-icon .btn {
    opacity: 1;
    transition-delay: .5s;
}


/*** Team ***/
.team {
    position: relative;
}

.team::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 200px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    margin-top: 1rem;
    background: var(--bs-primary);
}

.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    text-align: center;
    background: rgba(255, 255, 255, .5);
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-overlay {
    background: rgba(255, 255, 255, .9);
}

.team-overlay p {
    letter-spacing: 1px;
}

.team-overlay .btn-dark {
    border-width: 2px;
    color: var(--bs-dark);
    background: transparent;
}

.team-overlay .btn-dark:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item {
    position: relative;
}

.testimonial-carousel .owl-item::before {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .1;
}

.testimonial-carousel .owl-item img {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.testimonial-carousel .owl-item,
.testimonial-carousel .owl-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item span {
    letter-spacing: 2px;
}

.testimonial-carousel .owl-item.center .bg-light {
    background: var(--bs-primary) !important;
}

.testimonial-carousel .owl-item.center .bg-light * {
    color: var(--bs-dark) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}


/*** Footer ***/
@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--bs-secondary);
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

/* ===============================
   LAAVISH SPECIAL SECTION
================================ */

.laavish-special-section {
    position: relative;
    overflow: hidden;
    background: #fffaf7;
}

/* Cards */

.laavish-card {
    position: relative;
    min-height: 520px;
    padding: 55px;
    overflow: hidden;
    transition: all 0.5s ease;
}

/* Bridal */

.bridal-card {
    background:
        linear-gradient(
            135deg,
            rgba(167,124,69,0.96),
            rgba(93,62,35,0.98)
        );
    color: #fff;
}

.bridal-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    right: -100px;
    top: -100px;
}

.bridal-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    right: 30px;
    top: 30px;
}

.bridal-card h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 500;
}

.bridal-card p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}


/* Academy */

.academy-card {
    background: #1b1816;
    color: #fff;
}

.academy-card::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(167,124,69,0.12);
    border-radius: 50%;
    right: -120px;
    bottom: -120px;
}

.academy-card h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 500;
}

.academy-card p {
    color: #aaa;
    line-height: 1.8;
}


/* Content */

.laavish-card-content {
    position: relative;
    z-index: 3;
}

.laavish-tag {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(167,124,69,0.7);
    color: #A37C45;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}

.bridal-card .laavish-tag {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}


/* Bridal Features */

.bridal-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.bridal-features div {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.bridal-features i {
    color: #fff;
    margin-right: 8px;
}


/* Academy Courses */

.academy-courses {
    margin-top: 25px;
}

.course-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.course-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(167,124,69,0.5);
    color: #A37C45;
    flex-shrink: 0;
}

.course-item h5 {
    margin: 0;
    font-size: 15px;
    color: #fff;
}

.course-item span {
    font-size: 12px;
    color: #888;
}


/* Button */

.laavish-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 25px;
    background: #A37C45;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.laavish-btn:hover {
    background: #fff;
    color: #A37C45;
    transform: translateY(-3px);
}


/* Numbers */

.bridal-number,
.academy-number {
    position: absolute;
    right: 30px;
    bottom: 20px;
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
    z-index: 1;
}

.bridal-number {
    color: rgba(255,255,255,0.08);
}

.academy-number {
    color: rgba(167,124,69,0.08);
}


/* Hover */

.laavish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}


/* Responsive */

@media (max-width: 991px) {

    .laavish-card {
        min-height: auto;
        padding: 40px 30px;
    }

    .bridal-card h2,
    .academy-card h2 {
        font-size: 34px;
    }

}

@media (max-width: 575px) {

    .laavish-card {
        padding: 35px 25px;
    }

    .bridal-features {
        grid-template-columns: 1fr;
    }

    .bridal-card h2,
    .academy-card h2 {
        font-size: 30px;
    }

    .bridal-number,
    .academy-number {
        font-size: 65px;
    }

}

.laavish-contact {
    position: relative;
    overflow: hidden;
    background: #fffaf7;
}

/* Background decoration */

.laavish-contact::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(163, 124, 69, 0.06);
    left: -220px;
    bottom: -220px;
}

.laavish-contact::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(163, 124, 69, 0.12);
    right: -100px;
    top: 80px;
}

/* Wrapper */

.contact-wrapper {
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 70px rgba(40, 30, 20, 0.12);
}

/* =====================================
   CONTACT INFO
===================================== */

.contact-info {
    height: 100%;
    padding: 60px 50px;
    background: #1b1816;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-info::after {
    content: "L";
    position: absolute;
    right: -30px;
    bottom: -80px;
    font-size: 300px;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(163, 124, 69, 0.06);
}

.contact-label {
    position: relative;
    z-index: 2;
    color: #A37C45;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
}

.contact-info h2 {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 43px;
    line-height: 1.15;
    font-weight: 400;
}

.contact-info h2 span {
    color: #A37C45;
}

.contact-intro {
    position: relative;
    z-index: 2;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Contact Details */

.contact-detail {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 23px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(163,124,69,0.5);
    color: #A37C45;
    transition: all 0.3s ease;
}

.contact-detail:hover .contact-icon {
    background: #A37C45;
    color: #fff;
}

.contact-detail small {
    display: block;
    color: #777;
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.contact-detail a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.contact-detail a:hover {
    color: #A37C45;
}

.contact-detail p {
    margin: 0;
    color: #ddd;
    line-height: 1.5;
    font-size: 14px;
}

/* Social */

.contact-socials {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 10px;
    margin-top: 35px;
}

.contact-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #3b3734;
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-socials a:hover {
    background: #A37C45;
    border-color: #A37C45;
    color: #fff;
    transform: translateY(-4px);
}


/* =====================================
   CONTACT FORM
===================================== */

.contact-form {
    height: 100%;
    padding: 60px 50px;
    background: #fff;
}

.form-heading span {
    color: #A37C45;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
}

.form-heading h3 {
    margin-top: 10px;
    margin-bottom: 35px;
    font-size: 32px;
    font-weight: 500;
    color: #1b1816;
}

/* Form */

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #555;
    font-size: 13px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    height: 52px;
    border: 1px solid #e6e1dc;
    border-radius: 0;
    background: #fffaf7;
    padding: 12px 15px;
    color: #333;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

textarea.form-control {
    height: auto;
    resize: vertical;
}

.form-control:focus {
    border-color: #A37C45;
    background: #fff;
}

/* Button */

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 0;
    padding: 16px 30px;
    background: #A37C45;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #1b1816;
    transform: translateY(-3px);
}

.contact-btn i {
    transition: transform 0.3s ease;
}

.contact-btn:hover i {
    transform: translateX(5px);
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991px) {

    .contact-info,
    .contact-form {
        padding: 45px 30px;
    }

    .contact-info h2 {
        font-size: 36px;
    }

}

@media (max-width: 575px) {

    .contact-info,
    .contact-form {
        padding: 35px 22px;
    }

    .contact-info h2 {
        font-size: 31px;
    }

    .form-heading h3 {
        font-size: 27px;
    }

}
.salon-services-carousel {
  position: relative;
  padding: 10px 45px 50px;
}

.salon-services-carousel .service-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 35px 25px !important;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease;
}

.salon-services-carousel .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.salon-services-carousel .service-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
}

.salon-services-carousel .service-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.salon-services-carousel .service-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  flex-grow: 1;
}

.salon-services-carousel .owl-nav {
  margin: 0;
}

.salon-services-carousel .owl-nav button.owl-prev,
.salon-services-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #A37C45 !important;
  color: #fff !important;
  font-size: 28px !important;
  line-height: 1 !important;
  margin: 0;
  transition: all 0.3s ease;
}

.salon-services-carousel .owl-nav button.owl-prev {
  left: 0;
}

.salon-services-carousel .owl-nav button.owl-next {
  right: 0;
}

.salon-services-carousel .owl-nav button:hover {
  background: #222 !important;
}

.salon-services-carousel .owl-dots {
  margin-top: 25px;
  text-align: center;
}

.salon-services-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #ddd !important;
  display: block;
  border-radius: 50%;
}

.salon-services-carousel .owl-dot.active span {
  background: #A37C45 !important;
}

@media (max-width: 767px) {

  .salon-services-carousel {
    padding-left: 35px;
    padding-right: 35px;
  }

  .salon-services-carousel .service-item {
    min-height: 450px;
  }

  .salon-services-carousel .owl-nav button.owl-prev {
    left: -5px;
  }

  .salon-services-carousel .owl-nav button.owl-next {
    right: -5px;
  }

}