/* =========================
   BASE TYPOGRAPHY
========================= */

/* body {
    font-family: "Quicksand", sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #212121;
} */

/* 1. Set Montserrat as the default for EVERYTHING */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body{
      -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* 2. Override Montserrat for Headings only */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700; /* Bold headings look best in Quicksand */
    letter-spacing: -0.01em;
}

/* 3. Ensure buttons and inputs also use the body font */
button, input, select, textarea {
    font-family: 'Montserrat', sans-serif;
}

.text-xs-small {
    font-size: 8px;
    line-height: 1.2;
}

.text-small {
    font-size: 9px;
    line-height: 1.2;
}

img {
    display: block; /* Prevents tiny 3px gaps under images */
}

/* Ensure your first section starts at the very top */
#home, .hero-section {
    margin-top: 0 !important;
} 


html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

/* Ensure the main container doesn't have a fixed large width */
#home-page, main {
  width: 100%;
  max-width: 100vw;
}

/* Matching the specific font and icon spacing */
nav {
  font-family: 'Poppins', sans-serif; /* Or your preferred elegant Sans-serif */
}

/* Optional: Smooth transition for the fixed navbar if you add scroll effects later */
nav {
  transition: all 0.3s ease-in-out;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    background: url(../img/copyright-bg.gif) repeat-x left center;
    background-size: contain;
    display: inline-block;
    width: 100%;
}


/* =========================
   FOOTER COPYRIGHT WRAP
========================= */

.f-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 0;
}


/* =========================
   FOOTER NAVIGATION
========================= */

.nav-foot {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-foot li {
    display: inline-block;
    margin-right: 20px;
    font-size: 12px;
}

.nav-foot li a {
    display: block;
    font-size: 14px;
    color: #593635;
    text-decoration: none;
}


/* =========================
   COPYRIGHT TEXT
========================= */

.copyright {
    text-align: right;
    font-size: 14px;
    line-height: 1.3;
    color: #593635;
    border-left: 1px solid #593635;
    padding-left: 20px;
}
/* ======= */
/* =========================
   FOOTER BASE
========================= */

.footer {
    padding: 20px 0;
    background: url(../img/footer-bg.png) no-repeat center bottom #593635;
    background-size: 100%;
    position: relative;
}

/* =========================
   FOOTER LOGO
========================= */

.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
}

/* =========================
   SOCIAL LINKS
========================= */

.footer-social {
    text-align: center;
}

.social-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-menu li {
    display: inline-block;
    margin: 0 10px;
}

.social-menu li a {
    display: block;
    width: 30px;
    height: 30px;
}

/* =========================
   SCROLL DOWN INDICATOR
========================= */



#scrollIndicator {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-rect {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

/* The bounce animation only targets the down arrow */
.fa-arrow-down {
    animation: bounce 2s infinite;
}

/* Optional: Slight rotation for the up arrow so it doesn't look static */
.fa-arrow-up {
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}
.animate-bounce {
    animation: bounce 2s infinite;
}


/* =========================
   ANIMATIONS
========================= */

.ripple-btn {
  position: relative;
  padding: 14px 32px;
  padding-left: 56px; /* 🔥 space for the circle */
  background: #593635;
  color: #fff;
  font-size: 14px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
}

/* Circle */
.ripple-btn .ripple {
  position: absolute;
  left: 24px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}

.ripple-btn .ripple::before,
.ripple-btn .ripple::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  animation: ripple 2s infinite;
}

.ripple-btn .ripple::after {
  animation-delay: 1s;
}

/* Text */
.btn-text {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}



@keyframes circle {
    0% { height: 120px; }
    50% { height: 150px; }
    100% { height: 120px; }
} 



/* -------------------------
  MOBILE + TABLET STYLING
-------------------------- */

@media (max-width: 991px) {
  .footer-logo {
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-logo img {
    width: 200px; /* adjust if needed */
    height: auto;
    display: block;
  }

  .footer-social {
    text-align: center;
    margin-top: 20px;
  }

  .footer-social .social-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    list-style: none;
  }
}

  .footer-social .social-menu li a {
    width: 40px;
    height: 40px;
    display: inline-block;
    background: transparent;
    border: 1px solid #593635;
    border-radius: 50%;
    position: relative;
  }

  .footer-social .social-menu li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: #593635;
    border-radius: 50%;
  }




@media (max-width: 991px) {
  body {
    padding-bottom: 55px;
  }
}


/* Hide everywhere by default */
#mobEnquiry {
  display: none;
}

/* Show ONLY on mobile phones */
@media (max-width: 767px) {
  #mobEnquiry {
    display: block;
    width: 100%;
    background: #5b2d2b;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 10px;
   
    text-decoration: none;
    text-transform: uppercase;
  }

  #mobEnquiry strong {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  #mobEnquiry i {
    font-size: 16px;
  }
}


/* MOBILE ONLY */
@media (max-width: 576px) {

  .hero-info-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 110px; /* same as screenshot */
    z-index: 20;
    text-align: center;
    color: #fff;
    padding: 0 12px;
  }

  /* 3 GRID CENTERED */
  .hero-info-grid {
    display: flex;
    justify-content: center;
    gap: 28px; /* SPACE BETWEEN GRIDS */
    margin-bottom: 18px;
  }

  .info-box {
    max-width: 90px;
    font-size: 11px;
    line-height: 14px;
  }

  .info-box b {
    display: block;
    font-size: 12px;
    font-weight: 600;
  }

  /* RERA BELOW GRID */
  .hero-rera {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 10px;
    line-height: 13px;
    padding: 0 10px;
  }

  .hero-rera img {
    width: 18px;
    flex-shrink: 0;
  }

  .hero-rera b {
    display: block;
    font-weight: 500;
  }

  .hero-rera a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
  }
}


html {
  scroll-behavior: smooth;
}

/* This compensates for your fixed navbar height so the title isn't hidden */
section {
  scroll-margin-top: 96px; /* Adjust this to match your h-24 (96px) navbar */
}

/* Mirroring the exact font stack found in the site inspector */
.font-quicksand {
  font-family: "Quicksand", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Accordion Styling */
.connectivity-accordion-btn {
  background-color: #6b3f34;
  color: #ffffff;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
}

.connectivity-list-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: 14px;
  color: #5a3a2e;
  border-bottom: 1px dotted #ccc;
}

.connectivity-list-item u {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.connectivity-list-item b {
  font-weight: 700;
  color: #333;
}


.monarch-sub-header {
  /* This stack prioritizes the rounded look of Quicksand using system fonts */
  font-family: "Quicksand", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  /* Styling to match the screenshot exactly */
  color: #6b4b3e;         /* The specific brown text color */
  font-size: 20px;        /* Standard body/sub-header size */
        /* Normal weight for the main text */
  line-height: 1.6;       /* Clean vertical spacing */
  text-align: center;     /* Matches the center-aligned layout */
  margin: 0 auto;
  max-width: 800px;       /* Keeps the text from stretching too wide */
  -webkit-font-smoothing: antialiased; /* Makes the font look crisp */
}

.monarch-sub-header b {
  font-weight: 700;       /* Makes the project name stand out */
  color: #5a3a2e;         /* Slightly darker brown for emphasis */
}

  /* Optional: Clean scrollbar to match the high-end look */
  .custom-scrollbar::-webkit-scrollbar {
    width: 3px;
  }
  .custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
  }
  .custom-scrollbar::-webkit-scrollbar-thumb {
    background: #5a3a2e50;
    border-radius: 10px;
  }

  .font-luxury {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
  }

  .text-brown { color: #6b3d2e; }
  .bg-cream { background-color: #fbf4f3; }
  
  /* Brochure Button Styling */
  .btn-brochure {
    background-color: #5a3a2e;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 9999px; /* Pill shape */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .btn-brochure:hover {
    background-color: #4a2e25;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  }

  /* Dot icon inside button */
  .btn-dot {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
  }

  .no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.vr-img {
    position: relative;
    height: 450px; /* Adjust height based on your preference */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    cursor: pointer;
}

.vr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.vr-img:hover img {
    transform: scale(1.1);
}

/* Gradient Overlay inside the card */
.vr-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.9));
}

.vr-info {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}


/* The Starry Night Background */
.starry-background {
    background-color: #0b1522;
    /* This creates the cosmic star effect */
    background-image: 
        radial-gradient(circle at center, rgba(22, 42, 61, 0.5) 0%, #0b1522 100%),
        url('https://www.transparenttextures.com/patterns/stardust.png');
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* Card Styling */
.vr-img {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.vr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vr-img:hover img {
    transform: scale(1.1);
}

/* Bottom Shadow Overlay for Text Readability */
.vr-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

/* Text Inside Cards */
.vr-info {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
    padding: 0 15px;
}

.vr-info h3 {
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.vr-info h3 u {
    text-decoration: none;
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

.view-more {
    display: inline-block;
    margin-top: 15px;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.view-more:hover {
    color: #fff;
    border-bottom-color: #fff;
}


/* Apply this to your main section wrapper */
.starry-section {
    position: relative;
    background-color: #0b1522; /* The base dark navy */
    
    /* Layer 1: The Radial Gradient (Deep blue to dark navy) */
    /* Layer 2: The Stardust Pattern Texture */
    background-image: 
        radial-gradient(circle at center, rgba(22, 42, 61, 0.7) 0%, #0b1522 100%),
        url('https://www.transparenttextures.com/patterns/stardust.png');
        
    background-attachment: fixed; /* Keeps stars still while scrolling */
    background-size: auto, 300px; /* Controls star density */
    padding: 100px 0;
}

/* 1. The Starry Cosmic Background */
.starry-background {
    background-color: #0b1522; /* Base Navy */
    background-image: 
        radial-gradient(circle at center, rgba(22, 42, 61, 0.6) 0%, #0b1522 100%),
        url('https://www.transparenttextures.com/patterns/stardust.png'); /* Star Pattern */
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 2. Card Styling */
.vr-card {
    position: relative;
    height: 550px; /* Adjust based on preference */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

.vr-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.vr-card:hover img {
    transform: scale(1.1);
}

/* 3. Text Overlay Styling */
.vr-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
    z-index: 2;
}

.vr-content h3 {
    color: white;
    font-size: 14px;
    letter-spacing: 2px;
    margin: 0;
    font-weight: 300;
}

.vr-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    letter-spacing: 1px;
    margin-top: 5px;
    text-transform: uppercase;
}

#360view, .starry-background {
    /* 1. Base color */
    background-color: #0b1522 !important; 
    
    /* 2. Layering: Radial Gradient (Top) + Stardust Pattern (Bottom) */
    background-image: 
        radial-gradient(circle at center, rgba(31, 59, 86, 0.7) 0%, rgba(11, 21, 34, 1) 100%),
        url('https://www.transparenttextures.com/patterns/stardust.png') !important;
    
    /* 3. Ensure the texture repeats and stars stay fixed */
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: auto, 300px; /* Adjust 300px to make stars smaller or larger */
}

#page-content {
    /* 1. Deep navy base color */
    background-color: #0b1522 !important; 
    
    /* 2. Layering: The stardust texture over a radial glow */
    background-image: 
        radial-gradient(circle at center, rgba(31, 59, 86, 0.7) 0%, rgba(11, 21, 34, 1) 100%),
        url('https://www.transparenttextures.com/patterns/stardust.png') !important;
    
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: auto, 400px;
    padding: 100px 0;
}

/* Ensure child containers don't have their own backgrounds */
#page-content .container, 
#page-content .row, 
#page-content .col-md-12 {
    background: transparent !important;
}

/* Ensure no child elements are forcing a white background */
.container, .row, .col-md-12 {
    background: transparent !important;
}

.vr-img {
    transition: all 0.5s ease;
}
.vr-img:hover {
    box-shadow: 0 10px 40px -10px rgba(197, 164, 126, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}


    @keyframes twinkle {
        0%, 100% { opacity: 0.8; }
        50% { opacity: 1; }
    }



    /* Prevents users from highlighting text or images */
/* Change 'hidden' to 'custom-hide' to avoid conflict with Tailwind */
.custom-hide {
    display: none !important;
}



#gallery-content-area {
    transition: max-height 0.8s ease-in-out;
}

/* Custom Scrollbar for the gallery box */
#gallery-content-area::-webkit-scrollbar {
    width: 6px;
}
#gallery-content-area::-webkit-scrollbar-thumb {
    background-color: #c5a47e;
    border-radius: 10px;
}
#gallery-content-area::-webkit-scrollbar-track {
    background: #f9f9f9;
}