@font-face {
    font-family: 'MyCustomFont';
    src: url('../fonts/CHUTEROLK.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'MyCustomFont', sans-serif;
}

.container-box {
    max-width: 1200px;
}

.intro-text,
.sub-text {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-text {
    /* optional: ensures text is visible initially if JS not loaded */
    opacity: 1;
    transform: translateX(0);
}

.primary,
.bg-primary {
    background-color: rgb(139, 96, 65) !important;
}

.bg-secondary {
    background-color: #fff7e0 !important;
}

.border-primary {
    border-color: rgb(139, 96, 65);
}

.text-primary {
    color: rgb(139, 96, 65);
}

.text-secondary {
    color: #5c5c5c;
}

/* .font-primary {
    font-family: "Berkshire Swash", serif;
}

.font-secondary {
    font-family: "Archivo", sans-serif;
} */

.hero-swiper {
    position: relative;
}

.hero-swiper::before {
    content: "";
    position: absolute;
    top: -70px;
    left: -10%;
    width: 120%;
    height: 100px;
    background: #fff;
    border-radius: 100%;
    z-index: 100;
}

.hero-swiper::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -10%;
    width: 120%;
    height: 100px;
    background: #fff;
    border-radius: 100%;
    z-index: 1000;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: #fff7e0;
    border: 1px solid #fff7e0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {

    .swiper-button-prev,
    .swiper-button-next {
        height: 30px;
        width: 30px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 16px !important;
    }
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #84754d5f;
    border-color: #fff;
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
    color: #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    color: #84754d;
    font-size: 20px;
    font-weight: 600;
}

.btn {
    background-color: #84754d;
    color: #fff;
    border: 1.5px solid #84754d;
    padding: 10px 50px 10px 25px;
    border-radius: 35px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 10;
}

.btn svg {
    position: absolute;
    right: 21px;
    top: 52%;
    transform: translateY(-50%);
    fill: #fff;
    z-index: 99;
}

.btn:hover {
    color: #84754d;
}

.btn:hover svg {
    fill: #84754d;
}

.btn:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.3s ease;
    opacity: 0;
}

.btn:hover:after {
    opacity: 1;
    width: 250px;
    height: 250px;
    transition: all 0.3s ease;
}

.imageoverlay {
    filter: brightness(0) saturate(100%) invert(93%) sepia(18%) saturate(442%) hue-rotate(331deg) brightness(101%) saturate(0.8);
    transition: filter 0.3s ease;
}

a:hover .imageoverlay {
    filter: brightness(0) saturate(100%) invert(37%) sepia(18%) saturate(1234%) hue-rotate(357deg) brightness(92%) contrast(89%);
}