:root {
  --primary-color:  #bd9400;
  --primary-color-light: #fcf6e3;
  --gold-color: #bd9400;
  --gold-color-light: #0099ff;
  --background-light: #fffff0;
  --bg-dark-blue: #34435d;
  --footer-bg: #333333;
}

/*----------------------------------------
  Hero background
-----------------------------------------*/
#slider-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,#0000006b, rgba(255, 255, 255, 0));
  z-index: 1;
}
/*----------------------------------------
  Utility Classes
-----------------------------------------*/

.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.transition-opacity {
  transition: opacity 1s ease-in-out;
}
.absolute {
  position: absolute;
}
.hidden {
  display: none;
}
.pd-10 {
  padding: 15px;
}
.text-gold {
  color: var(--gold-color) !important;
  font-family: "Playfair Display", serif;
}
.text-white {
  color: white !important;
  font-family: "Playfair Display", serif;
}
.bg-dark {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.164), rgba(255, 255, 255, 0));
}
.bg-blue {
  background-color: #374562 !important;
}

/*----------------------------------------
  Typography
-----------------------------------------*/


.btn-primary {
  padding: 8px 15px;
  border-radius: 5px;
  color: white;
  background-color: var(--primary-color) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  border: 1px solid white;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-primary:hover {
  scale: 0.95;
}

/*----------------------------------------
  Layout & Spacing
-----------------------------------------*/
.about, .floorplans, .gallery {
  padding: 10px;
  margin: 10px;
}
.floorplans, .virtualTour {
  background-color: var(--primary-color-light);
}
.location {
  background-color: var(--bg-dark-blue);
}
section {
  padding: 40px 0 !important;
}
.section-content{
max-width: 1200px;
margin: auto;
padding: 30px;
}
.hero-section-content{
  margin: auto;
  margin-left: auto;
  max-width: 1250px;
  

}

/* Target laptops and desktops (usually 1024px and up) */
@media (min-width: 1024px) {
  /* Your styles for laptops and large devices here */

}

/*----------------------------------------
  Borders & Highlights
-----------------------------------------*/
.border-gold {
  border-left: 1px solid var(--gold-color);
}
.rounded-border-gold {
  color: var(--gold-color-light) !important;
  border: 1px solid var(--gold-color);
  background-color: #a7955775;
  border-radius: 5px;
}
.rounded-border-primary {
  border: 1px solid var(--primary-color) !important;
}
.primary-hr {
  margin: -10px auto 0;
  width: 30%;
  height: 3px;
  background-color: var(--primary-color);
}

/*----------------------------------------
  Cards & Containers
-----------------------------------------*/
.luxury-card {
  background-color: white;
  border-radius: 10px;
}
/* Headings use Montserrat font */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif !important;
}

/* Paragraphs, divs, spans, list items, etc. use Playfair Display font */
p, div, span, li {
  font-family: 'Montserrat', sans-serif !important;
}
h2{
  font-weight: 500 !important;
}
/*----------------------------------------
  Dialog & Toast
-----------------------------------------*/
.dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 40;
  display: none;
  justify-content: center;
  align-items: center;
}
.dialog-content {
  background: white;
  max-width: 400px !important;
  width: 100%;
  padding-top: 40px;
  border-radius: 0.5rem;
}
.toast {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: #2d3748;
  color: white;
  padding: 1rem;
  border-radius: 4px;
  z-index: 50;
  display: none;
}

/*----------------------------------------
  Forms & Inputs
-----------------------------------------*/
#contactForm {
  max-width: 380px !important;
  border-radius: 5px;
}
form{
  border-radius: 5px;
}
input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px hwb(199 65% 9%) !important; /* blue ring */
  outline: none;
  border: 1px solid var(--gold-color-light) !important;
}
.footer-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: var(--background-light) !important;
}
#contact {
  min-width: 250px !important;
}

/*----------------------------------------
  Footer
-----------------------------------------*/
.footer {
  background-color: var(--footer-bg);
}
.footer-icon {
  font-size: 20px;
  min-width: 25px;
  margin-top: 5px;
}

/*----------------------------------------
  Sticky Button Bar
-----------------------------------------*/
.stickybtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 3px;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: white;
  padding: 2px 0 1px;
  z-index: 10;
}
.call, .whatsapp, .enquiry {
  width: 33%;
  margin: auto;
  padding: 5px 0 5px !important;
  color: white;
  background-color: var(--primary-color);
  border-radius: 2px;
  font-weight: 600;
  box-shadow: -2px -2px 8px rgba(175, 175, 175, 0.7);
  cursor: pointer;
  min-height: 33px;
}
.call a,
.whatsapp a {
  color: white !important;
  text-decoration: none;
  font-size: 16px;
}
.fa-whatsapp{
  padding-top: 4px;
  font-size: 20px !important;
}
/*----------------------------------------
  Hover & State Effects
-----------------------------------------*/
.primary-color {
  color: var(--primary-color) !important;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.primary-color-off {
  background-color: var(--primary-color-light) !important;
}
.hover-off-primary:hover {
  background-color: var(--primary-color-light) !important;
}
#floorplans .center-card{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.left-border-primary-dark{
 border-left: 2px solid var(--primary-color-light) !important; 
 padding-left: 10px;
}

.location-flex-center{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.location-icon{
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  padding: 10px;
  border-radius: 50%;
  background-color: var(--primary-color-light);
  margin-bottom: 5px;
 
}
@media (max-width: 768px) {
  .location-flex-center{
 flex-direction: column;
}
}
.disclaimer{
  background-color: var(--footer-bg) !important;

}
.closebtn{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
#closebtn{
 font-size: 20px;
} 
.bold{
  font-weight: 500 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.1rem !important;
}
.floor-container-btn{
  display: flex;
  align-items: center;
  justify-content: center;
flex-wrap: wrap;
width:100%;
}