/* Global Variables & Reset */

:root {

  /* Brand Colors - Luxury Real Estate Palette */

  --background: #FFFFFF;

  --foreground: #212121;

  --card: #FFFFFF;

  --card-foreground: #222222;

  --popover: #FFFFFF;

  --popover-foreground: #222222;

  

  /* Primary Brand Red - #C62828 (HSL 0 66% 47%) */

  --primary: #C62828;

  --primary-foreground: #FFFFFF;

  

  /* Secondary - Alternate Section Background #F6F6F6 (HSL 0 0% 96%) */

  --secondary: #F6F6F6;

  --secondary-foreground: #222222;

  

  /* Muted - Body Text #666666 (HSL 0 0% 40%) */

  --muted: #F6F6F6;

  --muted-foreground: #666666;

  

  /* Accent - Icons/Accents #9E9E9E (HSL 0 0% 62%) */

  /* --accent: #9E9E9E; */

  --accent: #C62828;

  --accent-foreground: #222222;

  

  --destructive: #C62828;

  --destructive-foreground: #FFFFFF;

  

  /* Border/Dividers #E2E2E2 (HSL 0 0% 89%) */

  --border: #E2E2E2;

  --input: #E2E2E2;

  --ring: #C62828;



  --radius: 0.5rem;

  

  /* Typography */

  --font-serif: 'Cinzel', Georgia, serif;

  --font-sans: 'Source Sans 3', system-ui, sans-serif;

  

  /* Spacing */

  --container-max: 1280px;

}



html {

  scroll-behavior: smooth;

}



body {

  background-color: var(--background);

  color: var(--muted-foreground);

  font-family: var(--font-sans);

  -webkit-font-smoothing: antialiased;

}



h1, h2, h3, h4, h5, h6 {

  font-family: var(--font-serif);

  color: var(--foreground);

  font-weight: 400; /* normal */

  letter-spacing: -0.025em; /* tracking-tight */

}



a {

  text-decoration: none;

  color: inherit;

}



/* Luxury Utility Classes */



.luxury-container {

  width: 100%;

  padding-right: 1.5rem; /* px-6 */

  padding-left: 1.5rem;

  margin-right: auto;

  margin-left: auto;

  max-width: var(--container-max);

}



@media (min-width: 768px) {

  .luxury-container {

    padding-right: 2rem; /* md:px-8 */

    padding-left: 2rem;

  }

}



@media (min-width: 992px) {

  .luxury-container {

    padding-right: 3rem; /* lg:px-12 */

    padding-left: 3rem;

  }

}



.luxury-section {

  padding-top: 4rem; /* py-16 */

  padding-bottom: 4rem;

  background-color: var(--background);

}



@media (min-width: 768px) {

  .luxury-section {

    padding-top: 6rem; /* md:py-24 */

    padding-bottom: 6rem;

  }

}



.luxury-section-alt {

  padding-top: 4rem;

  padding-bottom: 4rem;

  background-color: var(--secondary);

}



@media (min-width: 768px) {

  .luxury-section-alt {

    /* padding-top: 6rem; */

    padding-bottom: 6rem;

  }

}



/* Typography Helpers */

.heading-display {

  font-family: var(--font-serif);

  font-size: 1.875rem; /* text-3xl */

  line-height: 1.25;

  font-weight: 500;

  letter-spacing: -0.025em;

  color: var(--foreground);

}



@media (min-width: 768px) {

  .heading-display {

    font-size: 2.25rem; /* md:text-4xl */

  }

}



@media (min-width: 992px) {

  .heading-display {

    font-size: 3rem; /* lg:text-5xl */

  }

}



.heading-section {

  font-family: var(--font-serif);

  font-size: 32px; /* text-2xl */

  font-weight: 500;

  color: var(--foreground);

  letter-spacing: -0.025em;

}



/* @media (min-width: 768px) {

  .heading-section {

    font-size: 1.875rem; 

  }

} */



.heading-card {

  font-family: var(--font-serif);

  font-size: 1.25rem; /* text-xl */

  line-height: 1.75rem;

  font-weight: 500;

  color: var(--foreground);

}



.body-large {

  font-size: 1.125rem; /* text-lg */

  color: var(--muted-foreground);

  line-height: 1.625;

}



.body-regular {

  font-size: 1rem; /* text-base */

  color: var(--muted-foreground);

  line-height: 1.625;

}



/* Button Variants */

.btn-luxury {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  white-space: nowrap;

  font-family: var(--font-sans);

  font-weight: 500;

  transition: all 0.3s ease;

  border-radius: var(--radius);

  height: 3rem; /* h-12 default */

  padding: 0 2rem; /* px-8 */

  font-size: 16px; /* text-sm */

  letter-spacing: 0.025em; /* tracking-wide */

  text-transform: none;

}



.btn-luxury-primary {

  background-color: var(--primary);

  color: var(--primary-foreground);

  border: 1px solid transparent;

}



.btn-luxury-primary:hover {

  background-color: rgba(198, 40, 40, 0.9); /* primary/90 */

  color: #FFFFFF;

}



.btn-luxury-outline {

  background-color: transparent;

  border: 1px solid var(--foreground);

  color: var(--foreground);

}



.btn-luxury-outline:hover {

  /* background-color: var(--foreground);

  color: var(--background); */

  border: 1px solid var(--foreground);

  color: var(--foreground);

}



.btn-luxury-sm {

  height: 2.5rem; /* h-10 */

  padding: 0 1.5rem; /* px-6 */

  font-size: 0.875rem;

}



/* Card Styling */

.luxury-card {

  background-color: var(--background);

  border: 1px solid var(--border);

  overflow: hidden;

}



.luxury-card-image {

  aspect-ratio: 4 / 3;

  width: 100%;

  object-fit: cover;

}



/* Custom Utilities */

.text-accent {

  color: var(--accent);

}



/* Navbar Scrolled State (will be toggled via JS) */

.navbar-scrolled {

  background-color: var(--background) !important;

  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

}



.navbar-scrolled .nav-link, 

.navbar-scrolled .navbar-brand,

.navbar-scrolled .phone-link {

  color: var(--foreground) !important;

}



.navbar-transparent {

  background-color: transparent !important;

}



.navbar-transparent .nav-link,

.navbar-transparent .navbar-brand,

.navbar-transparent .phone-link {

  color: var(--background) !important;

}



/* Carousel/Hero */

.hero-section {

  position: relative;

  height: 100vh;

  width: 100%;

  overflow: hidden;

}



.hero-slide {

  position: absolute;

  inset: 0;

  transition: opacity 1s ease-in-out;

  opacity: 0;

  z-index: 0;

}



.hero-slide.active {

  opacity: 1;

  z-index: 1;

}



.hero-slide img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.hero-indicators {

  position: absolute;

  bottom: 2rem; /* bottom-8 */

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  gap: 0.75rem; /* gap-3 */

  z-index: 10;

}



.hero-indicator {

  width: 0.5rem; /* w-2 */

  height: 0.5rem; /* h-2 */

  border-radius: 9999px;

  background-color: rgba(255, 255, 255, 0.5); /* bg-background/50 */

  border: none;

  padding: 0;

  transition: all 0.3s;

}



.hero-indicator.active {

  background-color: #FFFFFF;

  width: 2rem; /* w-8 */

}



/* Accordion Customization */

.accordion-button:not(.collapsed) {

  background-color: transparent;

  color: var(--foreground);

  box-shadow: none;

}



.accordion-button {

  font-family: var(--font-serif);

  font-size: 1.125rem; /* text-lg */

  color: var(--foreground);

  background-color: transparent;

  padding-top: 1.5rem;

  padding-bottom: 1.5rem;

}

.accordion-button:focus {

  box-shadow: none;

  border-color: rgba(0,0,0,0.125);

}

.accordion-body {

    color: var(--muted-foreground);

}



/* Input/Select Styling */

.form-control, .form-select {

  height: 3.5rem; /* h-14 */

  /* background-color: transparent; */

  border: 1px solid var(--border);

  color: var(--foreground);

  border-radius: var(--radius);

}



.form-control:focus, .form-select:focus {

  border-color: var(--foreground);

  box-shadow: none;

  /* background-color: transparent; */

  color: var(--foreground);

}

.navbar{

  padding: 10px 0px !important;

  justify-content: center;

}

.navbar-brand{

  font-family: var(--font-serif);

  font-weight: 600;

}

.tracking-widest {

    letter-spacing: .1em;

}



/* Custom Nav Pills for Model Flats */

.nav-pills .nav-link.active, 

.nav-pills .show > .nav-link {

    background-color: var(--primary);

    color: var(--primary-foreground);

    border-color: var(--primary);

}



.nav-pills .nav-link {

    border-radius: var(--radius);

    padding: 0.75rem 2rem;

    font-family: var(--font-serif);

    font-weight: 500;

}

.owl-theme .owl-nav{

  display: none;

}

@media (max-width: 768px) {

.nav-pills .nav-link {

    border-radius: var(--radius);

    padding: 10px 20px;

    font-family: var(--font-serif);

    font-weight: 500;

}

.btn-luxury{

  width: 100%;

}

}

/* .fixed-top{

    position: fixed;

    top: 0px;

    z-index: 999;

    background: url(assets/shadow.png) repeat-x;

    height: 100vh;

} */

  /* .fixed-top {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    z-index: 999;

    background: url(assets/shadow.png) repeat-x top;

    height: auto; 

} */

.fixed-top.has-shadow {

    background: url(assets/shadow.png) repeat-x;

    height: 100vh;

}

.fixed-top.no-shadow {

    background: none;

}

.btn-close:focus{

  box-shadow: none;

}

.location-icon {

    width: 20px;

    height: 20px;

}



/* Mobile only */

@media (max-width: 575px) {

    .location-wrap {

        gap: 0 !important;

        align-items: start;

    }



    .location-icon {

        width: 47px;

        height: 25px;

    }

}

/* Mobile Bottom CTA Bar */

.mobile-bottom-bar {

    display: none;

    position: fixed;

    bottom: 0;

    left: 0;

    width: 100%;

    background: #fff;

    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);

    /* z-index: 9999; */

    padding-bottom: env(safe-area-inset-bottom);

}



.bottom-item {

    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 10px 5px;

    font-size: 12px;

    color: var(--c-text-main);

    text-decoration: none;

    border-right: 1px solid #eee;

}



.bottom-item:last-child {

    border-right: none;

}



.bottom-item svg {

    width: 20px;

    height: 20px;

    margin-bottom: 4px;

    fill: currentColor;

}



.call-item {

    background: #c62828 !important;

    color: white;

}
@media (max-width: 768px) {

    .mobile-bottom-bar {

        display: flex;

    }

    .footer-div {
    
      padding-bottom: 70px !important; 

    }

}