:root {
    --main-red: #DD2422;
    --main-red-secondary: #DD242265;
    --main-border-radius: .375rem;
    --marker-hover: #4F4FE3;
    --motif-gold: #c8a15a;
}

body {
    font-family: Questrial, sans-serif;
}


.form-control {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
    height: auto;
}

.input-group-append {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-left: -1px;
    background-color: white;
}

.form-control.rounded-left {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.input-group-append.bg-white.rounded-right {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.rounded {
    border-radius: 5px;
}

.btn.btn-white {
    background-color: white;
    border: none;
    height: 100%;
}

.hero-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding-top: 0;
}

.hero-section .slideshow-container img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-section .slideshow-container img.active {
    opacity: 1;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.54);
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 3;
    left: 60px;
    top: 24%;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

.hero-kicker {
    color: var(--motif-gold);
    text-transform: uppercase;
    letter-spacing: .35em;
    font-size: 1rem;
    margin-bottom: 20px;
}

.link-rule {
    width: 125px;
    height: 2px;
    background: var(--motif-gold);
    margin-bottom: 30px;
}

.hero-rule {
    width: 60px;
    height: 2px;
    background: var(--motif-gold);
    margin-bottom: 30px;
}

.hero-city {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 4vw, 8rem);
    line-height: .95;
    margin: 0 0 20px 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .08em;
}

.hero-state {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: 1rem;
    margin: 0 0 20px 0;

}

.scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
    animation: fadeIn 1s ease forwards, bounce 2.5s ease-in-out infinite;
    text-shadow: 0 2px 6px rgba(0,0,0,.6);
}

.scroll-hint .scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.scroll-hint i {
    font-size: 1.6rem;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 6px); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-search-section {
    background: #f7f4ee;
    padding: 72px 0 64px;
    text-align: center;
	border-top: 1px solid rgba(200,161,90,.28);
    border-bottom: 1px solid rgba(200,161,90,.22);

}

.hero-search-label {
    color: var(--motif-gold);
    letter-spacing: .28em;
    text-transform: uppercase;
    font-size: .78rem;
    margin-bottom: 14px;
}

.hero-search-title {
    font-family: Georgia, "Times New Roman", serif;
	color: #211b18;
    font-size: 2.6rem;
    margin-bottom: 34px;
    font-weight: 400;
}

.main-search-form {
    font-family: "Lato", sans-serif;
    width: 50%;
    margin: 0 auto;
}

.hero-search-section .main-search-form {
    width: 70%;
}

.search-type {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    margin-bottom: 14px;
}

.search-type input[type="radio"] {
    display: none;
}

.search-type label {
    cursor: pointer;
    margin-bottom: 0;
    color: #222;
}

.search-type input[type="radio"]:checked + label {
    color: var(--main-red);
    font-weight: 600;
}

.search-input {
    box-shadow: 0 8px 22px rgba(0,0,0,.12);
	border: 1px solid rgba(200,161,90,.22);
}

.search-input .form-control {
    min-height: 64px;
    border: 0;
    padding-left: 30px;
	font-size: 1.05rem;
}

.search-input .btn-red {
    background: #111;
    border: 0;
    padding: 0 28px;
}

.search-input .btn-red i {
    color: #fff !important;
}
	
.motif-para {
    max-width: 600px;
}

.h3, h3 {
    font-size: 1.5rem;
}

.icon-background {
    width: 50px;
    height: 50px;
    border-radius: .375rem;
    background-color: var(--main-red-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-link {
    text-decoration: none;
    color: #846B6B;
    font-weight: 500;
    cursor: pointer;
    font-size: 1.05rem;
}

.custom-link:hover {
    color: var(--main-red-secondary);
    text-decoration: none;
}

.middle-content {
    margin-right: 25px;
    margin-left: 25px;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 100%;
    }
}

.section-title h2 {
    display: flex;
    align-items: center;
    font-size: 1.5em;
}

.section-title h2 svg {
    margin-right: 10px;
}

.coming-soon {
    font-size: 16px;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
}

.coming-soon-label {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    z-index: 1;
}

.accordion .btn-link {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    padding: 0;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.accordion .btn-link:hover,
.accordion .btn-link:focus {
    text-decoration: none;
    color: inherit;
    box-shadow: none;
}

.accordion .bi-chevron-double-down {
    transition: transform 0.3s ease;
    color: var(--main-red);
}

.accordion .btn-link[aria-expanded="true"] .bi-chevron-double-down {
    transform: rotate(180deg);
    color: var(--main-red);
}

.card-img-top {
    border-bottom: 3px solid #dd1f1d;
}

.search-results-img {
    border: 1px solid #000000;
    border-radius: 5px;
    transition: box-shadow 0.3s ease;
}

.search-results-img:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.image-container {
    width: 100%;
    height: 225px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 225px;
    object-fit: cover;
}

.swiper-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.card {
    width: 100%;
    height: 100%;
}

.swiper-button-next, .swiper-button-prev {
    color: #dc3545;
}

.swiper-pagination-bullet-active {
    background-color: #dc3545;
}

.card-body {
    padding: 10px;
}

.card-title {
    font-size: 16px;
    font-weight: bold;
}

.card-text {
    margin: 0;
    font-size: 14px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.container-fluid {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
}

.property-link {
    font-size: 1.5rem;
}

.accordion .btn-danger {
    background-color: #de201e;
    border-color: #403839;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.22) !important;
    transition: all 0.3s ease;
}

.accordion .btn-danger:hover,
.accordion .btn-danger:not(.collapsed) {
    background-color: #c41c1a;
    border-color: #403839;
}

.accordion .btn-danger:focus,
.accordion .btn:focus {
    outline: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.22) !important;
}

.accordion .btn-danger:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
}

.accordion .transition-transform {
    transition: transform 0.3s ease;
}

.up-button {
    border-radius: 100%;
    z-index: 30;
    position: fixed;
    bottom: 16px;
    right: 16px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    display: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
    .hero-style {
        text-transform: uppercase;
	}


@media (max-width: 768px) {
    .main-search-form {
        width: 80%;
    }

    .hero-search-section .main-search-form {
        width: 90%;
    }

    .hero-content {
        left: 30px;
        right: 30px;
        top: 30%;
    }

    .hero-kicker {
        font-size: .8rem;
        letter-spacing: .24em;
    }

    .hero-city {
        font-size: 3.5rem;
    }

    .hero-details {
        text-transform: uppercase;
	}

    .hero-details span {
        margin: 0 7px;
    }
}

.hero-price {
	font-size: 1.6rem;
}

.hero-link {
    display: inline-block;
    font-size: 1rem;
    margin-top: 30px !important;
    color: var(--motif-gold) !important;
    text-transform: uppercase;
    text-decoration: none !important;
    letter-spacing: .12em;
}

.hero-link:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

.coming-soon-editorial {
    border-top: 0 !important;
    background: #fff;
    padding-top: 54px;
}

.coming-soon-editorial .section-title {
    text-align: left;
    margin-bottom: 14px;
}

.coming-soon-editorial .section-title h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
    color: #211b18;
    display: flex;
    align-items: center;
}

.coming-soon-editorial .section-title svg {
    display: none;
}

.coming-soon {
    max-width: 980px;
    font-size: 1rem;
    line-height: 1.7;
    color: #4b4540;
    margin-bottom: 34px !important;
}
