:root {
    --wine: #821618;
    --brown: #6f1313;
    --gold: #b88a30;
    --ink: #303540;
    --soft: #f7f3ed;
    --white: #fff;
    --footer: #2c303a;
    --light-grey: rgb(244, 244, 247);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, sans-serif;
    color: var(--ink);
}

.py-lg-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.text-gold {
    color: var(--gold);
}

.cursor-pointer {
    cursor: pointer;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    background: transparent;
}

.navbar-logo {
    width: 70px;
    height: 70px;
}

.brand-mark {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wine) !important;
}


.nav-link {
  position: relative;
}


.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;
  background: #fff;

  transition: width 0.3s ease;
}
/* 
.nav-link:hover::after {
  width: 100%;
} */

.nav-link:hover::before,
.nav-item.active > .nav-link::before {
  width: 100%;
}

/* =========================
   HERO IMAGE
========================= */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(25px);
    transform: scale(1.1);
}

.hero-image-wrap {
    position: relative;
    z-index: 1;

    height: 100%;
    width: fit-content;
    margin: auto;

    /* -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 1%,
        black 99%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 1%,
        black 99%,
        transparent 100%
    ); */
}

.hero-image {
    height: 100%;
    width: auto;
    display: block;
}

.image {
    width: 100%;
    height: 100%;
    object-fit:cover;
    object-position: center;

}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    z-index: 2;
     animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(12px);
    }

    60% {
        transform: translateX(-50%) translateY(6px);
    }
}


/* =========================
   Items & overlay
========================= */
.item {
    height: 300px;
}

.item .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.item-overlay {
    position: absolute;
    inset: 0;

    padding: 30px;

    background: rgba(0, 0, 0, .65);
    color: #fff;

    opacity: 0;
    transition: opacity .3s ease;
}

.item:hover .item-overlay {
    opacity: 1;
}

.item:hover .image {
    transform: scale(1.05);
}

.item-overlay h5 {
    font-weight: 600;
    margin-bottom: 25px;
}

.item-overlay p {
    font-weight: 600;
    line-height: 1.5;
}


/* =========================
   INTRO
========================= */

/* .section-heading {
  max-width: 760px;
} */

.video-box {
    max-width: 680px;
}

.play-btn {
    display: inline-grid;
    place-items: center;

    width: 44px;
    height: 32px;

    border-radius: 8px;

    background: #ff0033;
    color: white;
}


/* =========================
   COMMON
========================= */

.bg-soft {
    background: var(--soft);
}

.bg-wine {
    background: var(--wine);
}
.bg-dark-red {
    background: var(--brown);
}

.bg-light-grey {
    background: var(--light-grey);
}

.portrait-block {
    min-height: 630px;
}

.p-6 {padding: 6rem !important;}
.py-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}
.px-6 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
}
.pt-6 {padding-top: 6rem !important;}
.pb-6 {padding-bottom: 6rem !important;}
.pl-6 {padding-left: 6rem !important;}
.pr-6 {padding-right: 6rem !important;}


/* =========================
   SERVICES
========================= */

.services-overview {
    background: #fbfaf7;
}

/* Each service */
.service-block {
    border-bottom: 1px solid #ded6c8;
}
.service-line {
    border-bottom: 1px solid #d9cbb8;
}

/* Icon */
.service-icon {
    width: 44px;
    height: 44px;
    border: 1px solid #c89a45;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c89a45;
    font-size: 20px;
}

/* Image */
.service-image {
    min-height: 420px;
}

/* List */
.service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 16px;
    color: #5f5f5f;
    font-size: 0.875rem;
    line-height: 1.5;
}

.service-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 1px;

    width: 14px;
    height: 14px;

    border: 1px solid #d66a83;
    border-radius: 50%;

    color: #d66a83;
    font-size: 13px;
    line-height: 11px;
    text-align: center;
    font-weight: 600;
}



.service-card {
    background: var(--soft);
}

.icon-circle {
    background: var(--white);
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
}

.btn-gold {
    background: var(--gold);
    color: #fff;

    border-color: var(--gold);

    font-size: 0.7rem;
}

.btn-gold:hover {
    background: #9d7426;
    color: #fff;
    border-color: #9d7426;
}


/* =========================
   BENEFITS
========================= */

.gold-divider {
    width: 200px;
    height: 3px;

    background: var(--gold);
}

.benefit-card {
    border-radius: 6px;
    background: var(--soft);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--gold);
}


/* =========================
   TESTIMONIALS
========================= */

.testimonial-red {
    background: var(--wine);
    color: white;
}

.testimonial-white {
    /* background: #fff8ef; */
        background: var(--white);

    color: var(--ink);
}

.testimonial-brown {
    background: var(--brown);
    color: white;
}

.testimonialSwiper .swiper-wrapper {
    align-items: stretch;
}

.testimonialSwiper .swiper-slide {
    height: auto !important;
    display: flex;
}

.testimonialSwiper .testimonial {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 145px;
}

.testimonialSwiper .testimonial small {
    margin-top: auto;
}


/* =========================
   Swiper
========================= */

.testimonial-slider-wrap {
  padding: 0 50px;
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

.testimonial-prev,
.testimonial-next {
  color: #000 !important;
  --swiper-navigation-size: 24px;
}

.testimonial-prev {
  left: -10px;
}

.testimonial-next {
  right: -10px;
}

.testimonial small {
    margin-top: auto;
}


/* =========================
   CTA
========================= */

.btn-wine {
    background: var(--wine);
    border: 3px solid var(--wine);
    color: white;
    transition:
    background-color 0.6s ease,
    color 0.6s ease,
    border-color 0.6s ease;
}

.btn-wine:hover {
    background: transparent;
    border: 3px solid var(--wine);

    color: var(--wine);
}


/* =========================
   FOOTER
========================= */

.footer-section {
    background: var(--footer);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);

    text-decoration: none;

    display: inline-block;

    margin-bottom: 0.35rem;
}

.footer-social a {
    color: #fff;
    font-size: 1.35rem;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    opacity: 1;
    transform: translateY(-2px);
}


@media (min-width: 992px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
    }

    .multi-item-carousel .carousel-inner {
    display: flex;
    }
    .multi-item-carousel .carousel-item {
        margin-right: 0;
        flex: 0 0 33.333333%;
        display: block;
    }
}


/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {

   .navbar {
        position: fixed !important;
        background: transparent;
        transition: background-color 0.3s ease;
    }

    .navbar.navbar-scrolled {
        background: rgba(44, 48, 58, 0.95);
    }

    

    .brand-mark {
        color: white !important;
    }

    .navbar-collapse {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .portrait-block {
        min-height: 500px;
    }

    .hero {
        height: 320px;
    }

     section#services>.row>div {
        padding-top:3rem;
        padding-bottom: 3rem;
    }

    #mainNav {
        width: 70%;
        max-width: 320px;

        background-color: #252c38;
        color: white;
    }

    #mainNav .offcanvas-header {
        padding: 30px 28px 20px;
    }

    #mainNav .offcanvas-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.4;
    }

    #mainNav .navbar-nav {
        width: 100%;
        gap: 0 !important;
    }

    #mainNav .nav-item {
        width: 100%;
    }

    #mainNav .nav-link {
        color: white;
        text-align: left;

        padding: 18px 40px;
    }

    #mainNav .nav-link:hover,
    #mainNav .nav-link:focus {
        color: white;
        background-color: rgba(255, 255, 255, 0.05);
    }

    /* Dropdown items */
    #mainNav .dropdown-menu {
        position: static !important;
        width: 100%;
        margin: 0;
        background-color: #1f2530;
        border: 0;
        border-radius: 0;
        transform: none !important;
    }

    #mainNav .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
        padding: 12px 50px;
    }

    #mainNav .dropdown-item:hover,
    #mainNav .dropdown-item:focus {
        color: white;
        background-color: rgba(255, 255, 255, 0.08);
    }

    /* Dropdown arrow to right */
    #mainNav .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #mainNav .dropdown-toggle::after {
        margin-left: auto;
    }

}


/* match the right padding of your image wrapper */
@media (min-width: 768px) {
    .service-line {
        margin-right: 1.5rem;
    }
}



/* =========================
   MOBILE
========================= */

@media (max-width: 575.98px) {

    .portrait-block {
        min-height: 420px;
    }

    .hero {
        height: 240px;
    }

    footer .services{
        margin-top: 3rem;
    }


}

/* Service detail pages */

.service-detail-reverse .image-wrap { order: 2; }

.image-wrap {
    /* overflow: hidden; */
    box-shadow: 0 12px 24px rgba(48, 53, 64, .18);
}

.service-detail__content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--gold);
}

.service-detail__content p { max-width: 530px; }
.service-detail__content ul { padding-left: 1.2rem; margin-bottom: 0; }
.service-detail__content li + li { margin-top: .45rem; }

@media (max-width: 767.98px) {
    .service-details { gap: 2rem; }
    /* .service-detail { grid-template-columns: 1fr; gap: 1.75rem; } */
    .service-detail--reverse .image-wrap { order: 0; }
    .image-wrap { max-width: 340px; width: 100%; margin: auto; }
}
