/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;700&family=Lora:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap');

/* Root Variables */
:root {
  --primary-color: #9b7e57;
  --secondary-color: #2e2e2e;
  --font-heading: 'Cormorant Garamond', serif;
  --font-nav: 'Cormorant Garamond', serif;
  --font-body: 'Lora', serif;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--secondary-color);
  line-height: 1.6;
  background: #fff;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: #b89d7b;
}

/* Custom Header Color */
.bg-primary-tgm {
  background-color: var(--primary-color) !important;
}

.bg-primary-tgm small,
.bg-primary-tgm small a,
.bg-primary-tgm small i {
  color: #fff !important;
}

.bg-primary-tgm a:hover {
  color: #f1e6d9 !important;
}






/* Background Image Overlay */
.tgm-bg-overlay {
    background-image: url("../images/decor/section-bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #F1F0EB;
    opacity: 0.15;
    z-index: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.tgm-bg {
    position: relative;
    overflow: hidden;
    background-color: #000; /* Fallback */
}
.tgm-bg .container {
    z-index: 2;
}
.tgm-bg h2,
.tgm-bg p {
    color: #fff;
}








/* Themed Button */
.btn-tgm-primary {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}
.btn-tgm-primary:hover {
  background-color: #7c623f;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-in-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.welcome-section {
  background: #fffefc;
}



/* Custom Button: The Grand Mansion Theme */
.tgm-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 10px 24px;
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tgm-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.tgm-btn:hover::before {
  left: 0;
}

.tgm-btn:hover {
  color: var(--primary-color);
  box-shadow: 0 0 8px rgba(155, 126, 87, 0.6);
  border-color: var(--primary-color);
  background-color: #fff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(155, 126, 87, 0.4);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(155, 126, 87, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(155, 126, 87, 0);
  }
}

.pulse-anim {
  animation: pulse 0.6s ease-out;
}





.contact-button {
  /* margin-top: 31px; */
  position: relative;
}

.contact-buttonX:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  left: 0;
  right: 153px;
  bottom: -11px;
  background: #c19d68;
}

.contact-button .tgm-btn-1 {
  display: inline-block;
  background: #c19d68;
  padding: 13px 28px;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  position: relative;
  z-index: 1;
  border: 1px solid #c19d68 !important;
  transition: 0.5s;
  outline: 0;
  text-decoration: none;
}

.contact-button .tgm-btn-1:hover {
  color: #c19d68;
}

.contact-button .tgm-btn-1:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 50%;
  top: 0;
  background: #fff;
  z-index: -1;
  transition: 0.5s;
}

.contact-button .tgm-btn-1:hover:before {
  width: 100%;
  left: 0;
}




/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  padding: 14px 16px;
  font-size: 40px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-decoration:none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

.whatsapp-icon {
  display: block;
}



#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



/* Refined Navbar Layout */
.navbar {
  font-family: var(--font-nav);
  font-size: 18px;
  padding: 10px 0;
}

.navbar-brand img {
  height: 60px;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-item {
  margin-right: 20px;
}

.navbar-nav .nav-link {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  font-family: "Lora";
  text-transform: uppercase;
  padding: 25px 0;
  transition: 0.5s;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 20%;
  width: 60%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 1px;
}

/* Enquire Now Button */
.navbar .btn-dark {
  margin-left: 15px;
  font-size: 16px;
  padding: 8px 18px;
  font-family: var(--font-body);
  transition: background 0.3s ease;
}

.navbar .btn-dark:hover {
  background-color: #333;
}

/* Responsive Fixes */
@media (max-width: 991.98px) {
  .navbar .btn-dark {
    margin-top: 10px;
    margin-left: 0;
    width: 100%;
  }

  .navbar-collapse {
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
  }

  .navbar-brand img {
    height: 50px;
  }

  .navbar .btn-dark {
    display: none;
    /* Hide Enquire Now button in topbar */
  }

  .navbar-toggler {
    margin-left: auto;
  }
}

/* Sticky Navbar */
.sticky-navbar {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.sticky-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1050;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.shrink-logo {
  height: 45px !important;
  transition: all 0.3s ease;
}








/* .hero-img {
  height: 110vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .45), rgba(0, 0, 0, .15));
}

.carousel-caption {
  bottom: 18%;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 56px);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
} */

/* Hero Slider Base */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-slide .content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.hero-slide h1 {
  font-size: 4rem;
  font-family: var(--font-heading);
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

.hero-slide p {
  font-size: 1.5rem;
  font-family: var(--font-body);
  margin-top: 1rem;
}




.shape-image-animation {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
  overflow: hidden;
}

.shape-image-animation svg {
  display: block;
  width: 100%;
  height: 80px;
}

@media (max-width: 768px) {
  .shape-image-animation {
    display: none;
  }
}







/* Decorative Separator Wrapper */
.decor-wrapper {
  text-align: center;
  margin-bottom: 0.5rem;
}

.decor-line {
  max-width: 120px;
  height: auto;
  opacity: 0.85;
}

.subheading {
  letter-spacing: 2px;
  font-size: 1.9rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 600;
  color: #7a7a7a;
  margin-bottom: 0.5rem;
}




/* Hero Button Style */
.tgm-btn-1 {
  background-color: var(--primary-color);
  color: #fff;
  /* border-radius: 30px; */
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 10px rgba(155, 126, 87, 0.25);
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.tgm-btn-1:hover {
  background-color: #fff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 15px rgba(155, 126, 87, 0.4);
  text-decoration: none;
}

.luxury-highlight-section {
  background-color: #fff7f0;
  font-family: var(--font-heading);
  animation: fadeIn 1.2s ease-in-out both;
}

.text-primary-tgm {
  color: var(--primary-color);
  font-weight: 600;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 1;
  transition: opacity 0.6s ease-in;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.tracking-wide {
  letter-spacing: 1.5px;
}





/* Why Choose Us */
#why-choose-us .decorative-line {
    width: 60px;
    height: 4px;
    background: var(--bs-primary);
    border-radius: 4px;
}
#why-choose-us .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
}

#why-choose-us .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
#why-choose-us .card i {
    color: #c9a247 !important;
}
#why-choose-us .card:hover i {
    color: #977933 !important;
}





/* Home Gallery */
.home-gallery-section {
  background-color: #fff7f0;
  font-family: var(--font-heading);
  animation: fadeIn 1.2s ease-in-out both;
}
.gallery-img-wrapper {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.4s ease;
}
.gallery-img-wrapper img {
    transition: transform 0.4s ease;
}
.gallery-img-wrapper:hover img {
    transform: scale(1.05);
}



/* Home Testimonial */
.carousel-control-prev,
.carousel-control-next {
    background: none;
    border: none;
}

.testimonial-card {
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}




/* Home Map */
.map-section {
    padding: 0;
    margin: 0;
}

.map-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.map-container iframe {
    border: 0;
    width: 100%;
    height: 100%;
    display: block;
}





.breadcrumb-section {
  background: linear-gradient(to right, #e8dccb, #f8f1e6);
  padding: 20px 0;
  margin-bottom: 30px;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.breadcrumb-section h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 0;
  font-family: var(--font-body);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: ">";
  color: #999;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}













.page-hero-img {
  height: 40vh;
  object-fit: cover;
}



.tgm-footer-v2 {
    background-color: #111;
    font-size: 0.95rem;
    color: #ccc;
}

.tgm-footer-v2 .footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1rem;
    border-bottom: 2px solid #c9a247;
    display: inline-block;
    padding-bottom: 5px;
}

.tgm-footer-v2 .footer-links,
.tgm-footer-v2 .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tgm-footer-v2 .footer-links li,
.tgm-footer-v2 .footer-contact li {
    margin-bottom: 10px;
}

.tgm-footer-v2 a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tgm-footer-v2 a:hover {
    color: #c9a247;
}

.tgm-footer-v2 .footer-social a {
    font-size: 1.2rem;
    color: #fff;
    margin-right: 12px;
    background-color: #c9a247;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.tgm-footer-v2 .footer-social a:hover {
    transform: scale(1.15);
    background-color: #fff;
    color: #c9a247;
}

.text-gold {
    color: #c9a247 !important;
}




/* Contact Page */
/* Contact Section Container */
.contact-section h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
}

.contact-section h5 i {
  margin-right: 8px;
  font-size: 1.2rem;
  color: var(--primary-color); /* Consistent color for all icons */
}

/* Paragraphs and Links */
.contact-section p,
.contact-section li {
  margin-bottom: 0.4rem;
  color: #333;
}

.contact-section a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-section a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Social Icons */
.contact-section .social-icons {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.contact-section .social-icons a {
  font-size: 1.3rem;
  color: #333;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-section .social-icons a:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Divider line between sections */
.contact-section .mb-4 {
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
/* Ensure consistent color for all icons in contact section */
.contact-section i {
  color: var(--primary-color) !important;
}

/* Optional: Set all social icons inside .social-icons to same color */
.contact-section .social-icons a i {
  color: var(--primary-color) !important;
}

/* On hover, make them slightly darker or upscale */
.contact-section .social-icons a:hover i {
  color: #7d6645 !important;
  transform: scale(1.1);
}


/* Form Adjustments */
.contact-form input,
.contact-form textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 1rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background-color: var(--primary-color);
  border: none;
  color: #fff;
  padding: 0.6rem 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.contact-form button:hover {
  background-color: #b08d61;
  transform: translateY(-2px);
}
