@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*, *::before, *::after {
  box-sizing: border-box; /* Includes padding/border in element width */
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "MetaPro", sans-serif;
  background-color: #000;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

header, nav, main, footer {
  display: block;
}
.small, small {
    font-size: .85em;
}
body.lock-scroll {
    overflow: hidden;
    font-family: "MetaPro";
    font-variant-numeric: lining-nums;
}
.num {
    font-family: 'Roboto', sans-serif;
    font-size: inherit;
    font-weight: 300;
}
h1 .num, h2 .num, h3 .num, h4 .num {
    font-weight: bold;
}
h2 {
	font-family: "MetaPro-CondBold";
	font-size: 1.8rem;
    line-height: 34px;
	color: #fff;
	font-weight: normal;
	text-transform: uppercase;
    padding-bottom: 20px;
}

h2 span {
	display: block;
	font-family: "MetaPro-CondXbold";
	font-size: 1rem;
	color: #fff;
	font-weight: normal;
}
h3 {
    font-family: "MetaPro-CondBold";
    font-size: 1.5rem;
    color: #fff;
    font-weight: normal;
    text-transform: uppercase;
    padding-bottom: 20px;
}

h3 span {
    display: block;
    font-family: "MetaPro-Light";
    font-size: 1rem;
    color: #fff;
    font-weight: normal;
}
p{
    font-family: "MetaPro-Light";
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    padding-bottom: 20px;
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}


.nav-scrolled {
    background-color: #000;
    transition: all 1.5s ease-in-out;
}
.project-logo {
    max-width: 90px    ;
    width: 100%;
    transition: all 1.5s ease-in-out;
}
.nav-scrolled .project-logo {
    width: 4%;
}

.nav-link, .navbar-nav .nav-link.show {
  color: #fff;
}
.navbar .container-fluid {
    /*align-items: flex-start;*/
}
.navbar.nav-scrolled .container-fluid {
    align-items: center;
    transition: all 1.5s ease-in-out;
}
.nav-link {
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    border-bottom: 4px solid transparent;
    margin: 0 10px;
    padding-top: 5px;
    padding-bottom: 0;
}

.nav-link:hover, .nav-link.active {
    color: #bb9c59 !important;
    border-bottom: 4px solid #bb9c59;
}

.nav-link.last_link {
    background-color: #bb9c59;
}
.nav-link.last_link:hover, .nav-link.last_link.active{
    color: #bb9c59;
    background-color: #fff;
}
/* Styling the dropdown container */
.dropdown-menu {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0; /* Keeps the architectural sharp edges */
    padding-top: 10px;
}

/* Individual dropdown links */
.dropdown-item {
    font-size: 0.9rem;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* Hover effect - changing to the brand gold color */
.dropdown-item:hover {
    background-color: #c19b67; /* The brand gold/bronze color */
    color: #000 !important;
}

/* Add this to your style.css */
.btn-cta {
    background-color: #c19b67;
    color: white;
    border: none;
    border-radius: 0; /* Bootstrap buttons are rounded by default; real estate sites usually use square edges */
    padding: 10px 25px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s;
}

.btn-cta:hover {
    background-color: #a88555; /* A slightly darker shade for the hover effect */
    color: white;
}

.scroll-btn-bottom {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    width: 45px;
    height: 45px;
    background-color: #fff; /* White background as seen in image */
    border-radius: 8px; /* Slightly rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.scroll-btn-bottom img {
    width: 54px;
    transition: transform 0.4s ease;
}

/* Class to rotate arrow when it becomes "Back to Top" */
.rotate-180 {
    transform: rotate(180deg);
}

.scroll-btn-bottom:hover {
    transform: translateY(-5px);
    background-color: #f8f8f8;
}

/* Container positioning */
.banner-social-wrapper {
    z-index: 1000;
    position: fixed;
    bottom: 20%;
    right: 2%;
    transform: translateY(-50%);
}
/*.banner-social-wrapper:after {
    content: "";
    position: absolute;
    right: 18%;
    top: -50%;
    width: 2px;
    height: 200%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
}*/   
/* Base circle style */
.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.banner-social-wrapper .icon-circle {
    border: none;
}
.icon-circle:hover {
    transform: scale(1.1);
    color: white;
}

/* Specific Brand Colors from Image */
.bg-gold   { background-color: #bb9c59; } /* Matches Harlequin theme */
.bg-purple { background-color: #6f42c1; }
.bg-blue   { background-color: #0d6efd; }
.bg-green  { background-color: #25d366; }

/* Enquire Now Label */
.action-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 20px auto;
    position: relative;
}

.action-label {
    display: none;
    font-family: "MetaPro-Light";
    background: transparent;
    color: white;
    font-size: 0.6rem;
    margin-right: 10px;
    letter-spacing: 1px;
    white-space: nowrap;
    text-transform: uppercase;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.action-item:hover .action-label {
    display: block;
}

/* Optional: Show dropdown on hover (Desktop only) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

.form-icon {
    margin-left: 30px;
}




/*Footer style*/
.main-footer {
    background-color: #000;
}

/* Contact Item Styling */
.icon-circle {
    width: 40px;
    height: 40px;
    border: 2px solid #c19b67; /* Bronze/Gold color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.icon-circle i {
    color: #c19b67;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
}

.footer-contact-item:hover .icon-circle {
    background-color: #c19b67;
}

.footer-contact-item:hover .icon-circle i {
    color: #000;
}

/* Link and Nav Styling */
.footer-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover, 
.footer-nav .nav-link:hover {
    color: #c19b67 !important;
}

.footer-nav .nav-link {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-links a i {
    font-size: 1.2rem;
}

/* Utilities */
.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 150px;
}

@media (max-width: 991px) {
    .footer-nav .nav-link {
        padding: 5px 10px;
    }
    .navbar-toggler {
        filter: invert(1);
        opacity: 1;
        order: 3;
        outline: none;
    }
    .navbar-toggler-icon {
        width: 30px;
        height: 22px;
    }
    .form-icon {
        margin-right: 10px;
        margin-left: auto;
    }
}

@media (max-width:  767px){
    h2 {
        font-size: 1.3rem;
    }
    h3 {
        font-size: 1.1rem;
    }
    h3 span {
        font-size: 0.8rem;
    }
    p {
        font-size: 14px;
        line-height: 18px;
        padding-bottom: 10px;
    }
    
    .navbar-collapse {
        background-color: #000;
        position: absolute;
        top: 100%;
        left: 0;
        width: 95%;
    }

    .project-logo, .nav-scrolled .project-logo {
        width: 15%;
    }
    .footer-contact-item {
        height: auto;
    }
    .scroll-btn-bottom {
        display: none;
    }
    .banner-social-wrapper {
        bottom: 0;
        left: 0;
        right: auto;
        width: 100%;
        transform: none;
        background-color: #000;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .action-item {
        margin: 5px auto;
    }
    
    .action-label {
        display: none; /* Hide labels on small screens to save space */
    }
    .icon-circle {
        width: 30px;
        height: 30px;
    }

}