/* CUSTOM COLORS AND BUTTONS */
/* ========================= */
:root {
    --primary: #FF5D22;
    --primary-dark: #e94d14;
    --secondary: #163f68;
    --secondary-dark: #002346;
}

body, html {
    /* height: 100%; */
    /* margin: 0; */
    background-color: #f8f9fa;
}

.text-custom-primary{
    color: var(--primary);
}

.text-custom-secondary{
    color: var(--secondary);
}

.bg-color-secondary-dark{
    background-color: var(--secondary-dark);
}

.button {
    background-color: transparent;
    border: 1px solid transparent;
    padding: 6px 12px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    transition-duration: 0.4s;
}

.button-sm{
    padding: 0.25rem .5rem;
    font-size: 0.875rem;
}

.button-primary {
    background-color: var(--primary);
    color: #fff;
}

.button-primary:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

.button-secondary {
    background-color: var(--secondary);
    color: #fff;
}

.button-secondary:hover {
    background-color: var(--secondary-dark);
    color: #fff;
}

.button-outline-primary {
    background-color: #fff;
    color: var(--primary);
    border-color: var(--primary);
}

.button-outline-primary:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.button-outline-secondary {
    background-color: #fff;
    color: var(--secondary);
    border-color: var(--secondary);
}

.button-outline-secondary:hover {
    background-color: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

.mt-70 {
    margin-top: 70px;
}

.mb-70 {
    margin-bottom: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

.mt-90 {
    margin-top: 90px;
}

.mb-90 {
    margin-bottom: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.pt-110 {
    padding-top: 110px;
}

.pb-110 {
    padding-bottom: 110px;
}

.mt-110 {
    margin-top: 110px;
}

.mb-110 {
    margin-bottom: 110px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.mt-120 {
  
    margin-top: 120px;
}
.mb-120 {
    margin-bottom: 120px;
}

.pt-130 {
    padding-top: 130px;
}

.pb-130 {
    padding-bottom: 130px;
}

.mt-130 {
    margin-top: 130px;
    margin-bottom: 130px;
}

.pt-140 {
    padding-top: 140px;
}


.pb-140 {
    padding-bottom: 140px;
}

.mt-140 {
    margin-top: 140px;
}

.mb-140 {
    margin-bottom: 140px;
}

.pt-150 {
    padding-top: 150px;
}

.pb-150 {
    padding-bottom: 150px;
}

.mt-150 {
    margin-top: 150px;
}

.mb-150 {
    margin-bottom: 150px;
}

/* NAVBAR */
/* ====== */
.custom-navbar {
    background-color: var(--secondary-dark); /* Custom background */
}

.custom-navbar .nav-link {
    color: #f8f9fa; /* Light text color */
}

.custom-navbar .nav-link:hover {
    color: var(--primary) !important; /* Optional: Add hover effect */
}

.custom-navbar .nav-link.active {
    color: var(--primary) !important; /* Highlight with primary color */
    font-weight: bold; /* Optional: Make it bold for emphasis */
}



/* PAGE WRAPPER */
.wrapper {
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
}

/* SIDEBAR AND NAVBAR */
.sidebar {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    /* background-color: #343a40; */
    /* background-color: var(--secondary-dark); */
    background-color: var(--secondary);
    color: white;
    transition: all 0.3s ease;
    overflow-x: hidden;
}

.sidebar.hidden {
    margin-left: -250px;
}

.sidebar .nav-link {
    color: white;
}

.sidebar .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Active link styling */
.sidebar .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 3px solid #ffffff;
    padding-left: calc(1rem - 3px); /* compensate for the border */
}

.content {
    flex-grow: 1;
    transition: all 0.3s ease;
}

.sidebar-toggler {
    margin-right: 1rem;
}

.sidebar-toggler:hover {
    margin-right: 1rem;
    background-color: #f8f9fa;
}

.rotate-icon {
    transition: transform 0.3s ease;
}

.rotate-icon.rotated {
    transform: rotate(90deg);
}


/* property-list.html */
.image-overlay {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    font-size: 0.8rem;
}

/* property-details.html */
.section-title {
    position: relative;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--secondary);
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    margin-top: 5px;
}


/* HERO SECTION */
/* ============ */
.hero-section {
    background: url('/static/images/landing-page.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    position: relative;
    color: #fff;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.search-box {
    padding: 30px 20px; 
    background-color: #F2F6F7;
}



/* PAGINATION - overwrite Bootstrap classes */
/* ========================================= */

/* .pagination .page-link {
    color: #007bff;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
} */
.pagination .page-item:not(.disabled) .page-link {
    color: var(--primary); /* Color only for clickable links */
}

.pagination .page-link:hover {
    color: white !important;
    background-color: var(--primary);
    border-color: var(--primary);
}

.pagination .active .page-link {
    color: white !important;
    background-color: var(--primary);
    border-color: var(--primary);
}


/* FOOTER */
/* ====== */
.footer {
    background-color: var(--secondary-dark)
}

footer a:hover{
    color: var(--primary) !important;
}

.footer .section-title{
    color: #fff;
}

.footer-bottom {
    background-color: var(--secondary)
}

.footer-bottom a:hover{
    text-decoration: underline !important;
    text-decoration-line: var(--primary);
}