/* 
 * Custom styles for The Sapphire Luxury Spa
 */

 :root {
    --primary: #263a99; /* Blue Sapphire */
    --primary-light: #97b4de; /* Dark Sky Blue */
    --primary-dark: #1e3299; /* Dark Blue Sapphire*/
    --secondary: #dcd0be; /* Pastel Gray */
    --light: #f0ebe5; /* Alabaster*/
    --dark: #2a2829; /* Charleston Green */
}
.bg-light{
    background-color: var(--light)!important;
}
.bg-dark{
    background-color: var(--dark)!important;
}
.bg-primary{
    background-color: var(--primary)!important;
}
.bg-secondary{
    background-color: var(--secondary)!important;
}  
.bg-primary-light{
    background-color: var(--primary-light)!important;
}
.bg-primary-dark{
    background-color: var(--primary-dark)!important;
}
.text-primary-light{
    color: var(--primary-light)!important;
}   
.bg-light-opacity{
    background-color: rgba(250, 250, 250, 0.5)!important;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
/* General Styles */
body {
    font-family: "Playfair Display",
        serif;
    color: var(--dark);
    overflow-x: hidden;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "the-seasons", sans-serif;
    font-weight: 500;
    color: var(--dark);
}
a{
    color: var(--primary);
}
.bg-primary {
    background-color: var(--primary) !important;
}

.bg-primary-light {
    background-color: rgba(151, 180, 222, 0.2) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.border-primary-light {
    border-color: var(--primary-light) !important;
}
.forminator-ui#forminator-module-296.forminator-design--default .forminator-button-submit{
    background-color: var(--primary)!important;
    border-color: var(--primary)!important;
    padding-top: 0.5rem!important;
    padding-bottom: 0.5rem!important;
    padding-left: 1rem!important;
    padding-right: 1rem!important;
    font-size: 1.25rem!important;
    border-radius: 0.5rem!important;
}
.btn-primary {
    background-color: var(--primary)!important;
    border-color: var(--primary)!important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark)!important;;
    border-color: var(--primary-dark)!important;;
}

.hover-primary:hover {
    color: var(--primary) !important;
}
.btn-outline-primary{
    border-color: var(--primary)!important;
    color: var(--primary)!important;
}
.btn-outline-primary:hover{
    background-color: var(--primary)!important;
    color: #fff!important;  
}

.btn-outline-light:hover{
    background-color: var(--primary-light)!important;
    color:#fff!important;
    border: 1px solid var(--primary-light)!important;
}
/* Enhanced card shadows */
.hover-shadow {
    box-shadow: 0 0.25rem 0.75rem rgba(38, 58, 153, 0.08);
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(38, 58, 153, 0.15) !important;
    transform: translateY(-3px);
}
.navbar-brand img{
    max-width: 175px;
    height: auto;
    width: 100%;
}
/* Card styles */
.card {
    border-radius: 0.5rem;
    overflow: hidden;
    border-width: 1px;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

.max-width-xl {
    max-width: 48rem;
}

.max-width-lg {
    max-width: 32rem;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.object-fit-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.py-md-7 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.z-index-1 {
    z-index: 1;
}

/* Header Styles */
#masthead {
    transition: all 0.3s ease;
}

.header-gradient {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
    height: 8rem;
    pointer-events: none;
}

#masthead.scrolled {
    background-color: rgba(38, 58, 153, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding-bottom: 0.75rem !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Main Navigation */
.main-navigation .menu {
    display: flex;
    gap: 2rem;
    margin-bottom: 0;
    list-style: none;
}

.main-navigation .menu-item {
    position: relative;
}

.main-navigation .menu-item a {
    color: white;
    text-decoration: none;
    font-size: 1.175rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    display: inline-block;
    transition: color 0.3s ease;
    font-family: "the-seasons", sans-serif;
        letter-spacing: 0.05em;
        text-transform: uppercase;
}

.main-navigation .menu-item a:hover {
    color: var(--primary-light);
}

.main-navigation .menu-item a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-light);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-navigation .menu-item a:hover::after {
    transform: scaleX(1);
}
.entry-content h1{
    color: var(--primary)!important;
}
.entry-content h2{
    color: var(--primary)!important;
}
.entry-content h3{
    color: var(--primary)!important;
}
.entry-content h4{
    color: var(--primary)!important;
}
.entry-content strong{
    color: var(--primary-light)!important;
}
.book-now-btn {
    position: relative;
}

.book-now-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-light);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.book-now-btn:hover::after {
    transform: scaleX(1);
}

/* Mobile Menu */
.offcanvas {
    background-color: var(--light);
}
.nav-pills .nav-link.active{
    background-color: var(--primary)!important;
    color: #fff!important;
}
.nav-pills .nav-link{
    color: var(--primary)!important;
    font-weight: 500!important;
}
#mobile-menu {
    list-style: none;
    padding-left: 0;
}

#mobile-menu .menu-item {
    margin-bottom: 0.5rem;
}

#mobile-menu .menu-item a {
    color: var(--dark);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

#mobile-menu .menu-item a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero-overlay {
    background: linear-gradient(to right, rgba(38, 58, 153, 0.6), rgba(151, 180, 222, 0.3));
}

/* Background Gradients */
.bg-gradient-light {
    background: linear-gradient(to bottom, var(--light), rgba(151, 180, 222, 0.5));
}

.bg-gradient-light-reverse {
    background: linear-gradient(to bottom, rgba(151, 180, 222, 0.5), var(--light));
}

/* Hours & Contact Section */
.hours-contact {
    background-color: var(--light);
    position: relative;
}

.hours-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(151, 180, 222, 0.15) 0%, rgba(240, 235, 229, 0) 50%);
    pointer-events: none;
}

.hours-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(38, 58, 153, 0.1);
    overflow: hidden;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(220, 208, 190, 0.3);
}

.hours-day:last-child {
    border-bottom: none;
}

.hours-day.today {
    background-color: rgba(151, 180, 222, 0.1);
}

.contact-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(38, 58, 153, 0.1);
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(151, 180, 222, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary);
}

.map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(38, 58, 153, 0.1);
}

.cta {
    background-image:
        linear-gradient(to right, rgba(38, 58, 153, 0.5), rgba(151, 180, 222, 0.3)),
        url('https://sapphire.dietzendev.com/wp-content/uploads/2025/05/877ff278cbba303f5584b986b5037562.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 100px;
    padding-bottom: 100px;
}

.testimonials {
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://sapphire.dietzendev.com/wp-content/uploads/2025/05/pexels-eugene-golovesov-1810803-15191625.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Testimonials Splide Slider */
.splide-testimonials {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 2rem;
    padding-right: 2rem;
}

.splide-testimonials .splide__slide {
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 1.5rem;
    box-shadow: 0 2px 32px 0 rgba(38,58,153,0.08);
    padding: 2.5rem 2rem;
    min-height: 280px;
    transition: box-shadow 0.3s;
    width: 100%;
}

.splide__slide.is-active {
    opacity: 1;
}
.splide__slide--clone:is-active{
    opacity: 1 !important;
    scale: 1 !important;
}
.splide__slide.is-prev {
    opacity: 0.5 !important;
    scale: 0.92 !important;
}
.splide__slide.is-next {
    opacity: 0.5 !important;
    scale: 0.92 !important;
}
.splide__slide--clone{
    opacity: 0.5 !important;
    scale: 0.92 !important;
}
.splide-testimonials .splide__pagination {
    margin-top: 1.5rem;
}
.splide-testimonials .splide__pagination__page {
    background: var(--primary-light);
    opacity: 0.5;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    border-radius: 50%;
    transition: background 0.3s, opacity 0.3s;
}
.splide-testimonials .splide__pagination__page.is-active {
    background: var(--primary);
    opacity: 1;
}
.splide-testimonials .splide__arrows--custom {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}
.splide-testimonials .splide__arrow--custom {
    pointer-events: auto;
    font-size: 1.5rem;
    box-shadow: 0 1px 8px 0 rgba(38,58,153,0.07);
    background: #fff;
    border: 2px solid var(--primary-light);
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.splide-testimonials .splide__arrow--custom:hover {
    background: var(--primary-light);
    color: #fff;
    border: 2px solid var(--primary);
}

.testimonial-content {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    min-height: 60px;
}
.rating i{
    color: var(--primary);
}
.card-body i{
    color: var(--primary-dark);
}
.diamondVector{
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0.1;
    padding-top: 40px;
    padding-bottom: 40px;
}
.homePackages{
    position: relative;
}
.team-card img{
    height: 225px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.social-icons a{
    text-decoration: none;
}
.tribe-events .tribe-events-c-search__button, .tribe-events button.tribe-events-c-search__button {
    background-color: var(--primary)!important;
}
.tribe-common .tribe-common-c-btn-border, .tribe-common a.tribe-common-c-btn-border {
    background-color: var(--tec-color-background)!important;
    border: 1px solid var(--primary)!important;
    border-radius: var(--tec-border-radius-default)!important;
    text-align: center;
    transition: var(--tec-transition)!important;
    color: var(--primary)!important;
    padding: 11px 20px;
    width: 100%;
}
.tribe-common a:not(.tribe-common-anchor--unstyle), .tribe-common a:not(.tribe-common-anchor--unstyle):active, .tribe-common a:not(.tribe-common-anchor--unstyle):focus, .tribe-common a:not(.tribe-common-anchor--unstyle):hover, .tribe-common a:not(.tribe-common-anchor--unstyle):visited {
    color: var(--primary)!important;
}
.tribe-common .tribe-common-h7, .tribe-common .tribe-common-h8{
    color: var(--dark)!important;
}
.tribe-events-calendar-list__event-date-tag-daynum{
    color: var(--dark)!important;
}
.tribe-events .tribe-events-c-view-selector__list-item-text{
    color: var(--dark)!important;
}
.tribe-events button.tribe-events-c-top-bar__datepicker-button{
    color: var(--dark)!important;
}
.tribe-common .tribe-common-b2{
    color: var(--dark)!important;
}
.tribe-events .tribe-events-calendar-list__event-title{
    color: var(--primary)!important;
    font-family: "Playfair Display",
        serif;
}
.footer i{
    padding-right: 10px;
}
.py-10 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}
.pt-10{
    padding-top: 6rem !important;
}
.pb-10{
    padding-bottom: 6rem !important;
}
.footer a{
    text-decoration: none !important;
}
.footer a:hover{
    color: var(--primary-light) !important;
}
.footer i{
    color: var(--primary) !important;
}
@media (max-width: 575.98px) {
    .testimonial-card {
        padding: 1.25rem 0.75rem;
    }
    .splide-testimonials {
        max-width: 98vw;
    }
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .py-md-7 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 1200px) {
    .splide-testimonials {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .splide-testimonials .splide__slide {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
@media (max-width: 767.98px) {
    .splide__track,
    .splide__list {
        width: 98% !important;
        max-width: 100vw !important;
    }
    .splide-testimonials .splide__slide {
        padding-left: 0 !important;
        padding-right: 0 !important;
        justify-content: center;
        width: 98% !important;
    }
    .testimonial-card {
        max-width: 98vw;
        margin: 0 auto;
        width: 98%;
    }
    .diamondVector{
        display: none;
    }
}
/*# sourceMappingURL=custom.css.map */